/* ============================================
   KATURAMA DIGITAL — Static Site Stylesheet
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --accent: #FF6B35;
  --accent-hover: #E85A28;
  --dark-bg: #0a0a0a;
  --darker-bg: #060606;
  --light-bg: #F5F5F0;
  --white: #ffffff;
  --text-dark: #1A1A1A;
  --text-light: #f5f5f5;
  --radius: 0.75rem;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-light);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(255, 107, 53, 0.3);
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 80px; }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.7s ease;
}

.navbar--transparent {
  background: transparent;
}

.navbar--scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

@media (min-width: 768px) {
  .navbar__inner { height: 96px; }
}

.navbar__logo {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}

.navbar__logo span:first-child {
  font-weight: 200;
}

.navbar__logo span:last-child {
  font-weight: 600;
  color: var(--accent);
}

.navbar__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
}

.navbar__link {
  position: relative;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.navbar__link--active {
  color: var(--accent);
}

.navbar__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.navbar__cta {
  display: none;
  margin-left: 16px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.navbar__cta:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .navbar__cta { display: inline-flex; }
}

.navbar__mobile-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .navbar__mobile-right { display: none; }
}

.navbar__toggle {
  display: block;
  padding: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .navbar__toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.mobile-menu--open {
  display: block;
}

.mobile-menu__link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu__cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  text-align: center;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(10,10,10,1) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 5rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__title .accent {
  color: var(--accent);
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 48px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.2), 0 0 120px rgba(255, 107, 53, 0.05);
}

.btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--dark {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.15);
}

.btn--dark:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator__text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator__line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section { padding: 128px 0; }
}

.section--dark { background: var(--dark-bg); }
.section--darker { background: var(--darker-bg); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

/* ---- Labels ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-label--dark { color: rgba(255, 255, 255, 0.4); }
.section-label--light { color: var(--accent); }

/* ---- Typography ---- */
.heading-xl {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(1.75rem, 3vw, 3.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-muted-dark { color: rgba(26, 26, 26, 0.55); }
.text-muted-light { color: rgba(255, 255, 255, 0.4); }
.text-white { color: var(--white); }

.accent-text { color: var(--accent); font-weight: 300; }

.body-text {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
}

/* ---- Cards ---- */
.card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 768px) {
  .card { padding: 40px; }
}

.card--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card--dark:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card--light {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.card--light:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card--beige {
  background: var(--light-bg);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.card--beige:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  margin-bottom: 28px;
  transition: all 0.5s ease;
}

.card:hover .card__icon {
  background: var(--accent);
  color: var(--white);
}

.card__title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .card__title { font-size: 1.5rem; }
}

.card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ---- Grid ---- */
.grid-2 {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Featured Card ---- */
.featured-card {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-card { padding: 64px 80px; }
}

.featured-card--light {
  background: linear-gradient(135deg, var(--light-bg), #EDE8E0);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.featured-card__glow {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.05);
  filter: blur(100px);
}

/* ---- Process Steps ---- */
.process-step {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s ease;
}

.process-step:hover {
  border-color: rgba(255, 107, 53, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.process-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.process-step__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  transition: all 0.5s ease;
}

.process-step:hover .process-step__icon {
  background: var(--accent);
  color: var(--white);
}

.process-step__number {
  font-size: 2.5rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.5s ease;
}

.process-step:hover .process-step__number {
  color: rgba(255, 107, 53, 0.3);
}

/* ---- Forms ---- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-label--dark { color: rgba(255, 255, 255, 0.3); }
.form-label--light { color: rgba(26, 26, 26, 0.4); }

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.form-input--dark::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input--dark:focus {
  border-color: rgba(255, 107, 53, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.form-input--light {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--text-dark);
}

.form-input--light::placeholder {
  color: rgba(26, 26, 26, 0.25);
}

.form-input--light:focus {
  border-color: rgba(255, 107, 53, 0.4);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(128,128,128,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

textarea.form-input {
  resize: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Error / Success ---- */
.alert {
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 16px;
}

.alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ---- Director Section ---- */
.director-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .director-section {
    grid-template-columns: 320px 1fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .director-section {
    grid-template-columns: 380px 1fr;
    gap: 80px;
  }
}

.director-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 260px;
  flex-shrink: 0;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .director-photo {
    width: 200px;
    margin: 0 auto;
  }
  .director-section {
    text-align: center;
  }
  .director-awards {
    justify-content: center;
  }
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.director-name {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.director-role {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.director-bio {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

.director-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.director-award-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---- Language Switch ---- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 500;
}

.lang-switch__link {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.lang-switch__link:hover {
  color: var(--white);
}

.lang-switch__link--active {
  color: var(--accent);
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.2);
}

.lang-switch--mobile {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  margin-right: 12px;
}

.lang-switch--mobile-menu {
  margin: 16px 0;
  padding: 12px 16px;
  border-left: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: center;
}

/* Mobile: hide desktop lang-switch, show mobile */
@media (min-width: 768px) {
  .lang-switch--mobile { display: none; }
  .lang-switch--mobile-menu { display: none; }
}

@media (max-width: 767px) {
  .navbar__links .lang-switch { display: none; }
}

/* ---- Footer ---- */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 5fr 3fr 3fr;
    gap: 48px;
    padding: 96px 0;
  }
}

.footer__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.footer__link:hover {
  color: var(--white);
}

.footer__link svg {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.footer__link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer__bottom {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent) 1;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.max-w-2xl { max-width: 640px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-xl { max-width: 576px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-4 { margin-top: 16px; }
.space-y-6 > * + * { margin-top: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { position: relative; z-index: 10; }
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-7 { grid-column: span 7 / span 7; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-5 { grid-column: span 5 / span 5; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-start-7 { grid-column-start: 7; }
  .md\:flex-row { flex-direction: row; }
  .md\:pl-8 { padding-left: 32px; }
  .md\:border-l { border-left: 1px solid rgba(26, 26, 26, 0.08); }
  .md\:border-l-light { border-left: 1px solid rgba(255, 255, 255, 0.06); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-start-7 { grid-column-start: 7; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* ---- Portfolio Cards ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.portfolio-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__overlay svg {
  transform: translateY(0);
}

.portfolio-card__title {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Service card stagger */
.service-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-card--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.divider--dark {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* ---- Hero with Background Image ---- */
.hero-img {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-img__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-img__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 60%, var(--dark-bg) 100%);
  z-index: 2;
}

.hero-img__content {
  position: relative;
  z-index: 10;
  padding: 0 24px;
  max-width: 900px;
}

.hero-img--dunes {
  background-image: url('../images/dunes.jpg');
}

.hero-img--sea {
  background-image: url('../images/sea.jpg');
}

.hero-img--kitesurf {
  background-image: url('../images/kitesurf.jpg');
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow--sm {
  width: 300px;
  height: 200px;
  background: rgba(255, 107, 53, 0.04);
}

.glow--md {
  width: 600px;
  height: 400px;
  background: rgba(255, 107, 53, 0.03);
}
