/* ═══════════════════════════════════════════════════════════
   PORTO T&T — Premium Design System
   Palette: Porto Gold & Noir
   Fonts: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:          #0D0D0D;
  --color-bg-dark:     #080808;
  --color-bg-mid:      #141414;
  --color-surface:     #1A1A1A;
  --color-surface-2:   #222222;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-gold: rgba(196,160,90,0.3);

  --color-gold:        #C4A05A;
  --color-gold-light:  #E2C47A;
  --color-gold-dark:   #8B6E35;
  --color-gold-muted:  rgba(196,160,90,0.15);

  --color-cream:       #F5EFE0;
  --color-cream-dim:   #C8BEA8;
  --color-white:       #FFFFFF;
  --color-text:        #E8E2D6;
  --color-text-muted:  #8A8070;
  --color-text-dim:    #5A5448;

  --color-maroon:      #6B1E2E;
  --color-maroon-light:#8B2E42;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Layout */
  --container:  1280px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --duration:   0.6s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.6);
  --shadow-gold:0 8px 32px rgba(196,160,90,0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Typography Scale ──────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.section-header--light .section-eyebrow { color: var(--color-gold-light); }
.section-header--light .section-title   { color: var(--color-white); }
.section-header--light .section-subtitle{ color: rgba(255,255,255,0.65); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,160,90,0.35);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-cream);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold-muted);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ── Scroll Reveal Animations ──────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--color-border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 52px;
  height: 26px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-porto {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-cream);
}

.nav__logo-tt {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.nav__logo-tt em {
  font-style: italic;
  font-size: 0.9em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream-dim);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: var(--color-gold);
  transition: transform 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--color-gold-light); }
.nav__link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav__link--cta {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg-dark) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.15) 40%,
    rgba(8,8,8,0.5) 75%,
    rgba(8,8,8,0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem clamp(1.25rem, 5vw, 3rem) 12rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero__title-line { display: block; }

.hero__title-line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232,226,214,0.8);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: fadeInUp 1.5s 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.6); opacity: 0.3; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 0.7; transform: translateX(-50%) translateY(0); }
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border-gold);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-gold-light);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--color-gold);
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border-gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__images {
  position: relative;
  height: 580px;
}

.about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about__img-main:hover img { transform: scale(1.04); }

.about__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-bg);
}

.about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about__img-accent:hover img { transform: scale(1.04); }

.about__img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  line-height: 1.4;
}

.about__content { padding: 1rem 0; }

.about__text {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about__pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__pillar-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-gold);
  padding: 6px;
  background: var(--color-gold-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold);
}

.about__pillar-icon svg { width: 100%; height: 100%; }

.about__pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.2rem;
}

.about__pillar p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BRIDGE DIVIDER
══════════════════════════════════════════════════════════ */
.bridge-divider {
  line-height: 0;
  overflow: hidden;
  background: var(--color-bg);
}

.bridge-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════ */
.services {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-gold);
}

.service-card--featured {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 1px var(--color-gold-dark), var(--shadow-md);
  transform: translateY(-4px);
}

.service-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px var(--color-gold), var(--shadow-lg), var(--shadow-gold);
}

.service-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card__image img { transform: scale(1.06); }

.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(8px);
  color: var(--color-cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

.service-card__badge--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg-dark);
  border-color: transparent;
}

.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  padding: 8px;
  background: var(--color-gold-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold);
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  line-height: 1.2;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.25rem 0;
}

.service-card__features li {
  font-size: 0.82rem;
  color: var(--color-text-dim);
  padding-left: 1.1rem;
  position: relative;
}

.service-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.7rem;
}

.service-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ══════════════════════════════════════════════════════════
   EXPERIENCES / GALLERY
══════════════════════════════════════════════════════════ */
.experiences {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.experiences__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experiences__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.experiences__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(8,8,8,0.9) 100%
  );
}

.experiences__inner {
  position: relative;
  z-index: 2;
}

.experiences__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.mosaic-item--tall { grid-row: span 2; }
.mosaic-item--wide { grid-column: span 2; }

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.mosaic-item:hover img { transform: scale(1.07); }

.mosaic-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.mosaic-item:hover .mosaic-item__caption { transform: translateY(0); }

.mosaic-item__caption span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.mosaic-item__caption p {
  font-size: 0.88rem;
  color: var(--color-cream);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════ */
.why-us {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.4s;
}

.why-card:hover .why-card__number { color: var(--color-gold-muted); }

.why-card__icon {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.why-card__icon svg { width: 100%; height: 100%; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--color-surface);
  position: relative;
  overflow: hidden;
}

.testimonials__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,160,90,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,160,90,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.testimonials__track-wrapper {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-style: normal;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-cream);
  font-style: normal;
}

.testimonial-card__origin {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonials__btn svg { width: 18px; height: 18px; }

.testimonials__btn:hover {
  background: var(--color-gold-muted);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonials__dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.trust-badge strong {
  display: block;
  color: var(--color-cream);
  font-size: 0.82rem;
}

/* ══════════════════════════════════════════════════════════
   CONTACT / BOOKING
══════════════════════════════════════════════════════════ */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact__intro {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, background 0.3s;
}

.contact__detail:hover {
  border-color: var(--color-border-gold);
  background: var(--color-surface-2);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  padding: 8px;
  background: var(--color-gold-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold);
  flex-shrink: 0;
}

.contact__detail-icon svg { width: 100%; height: 100%; }

.contact__detail span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.contact__detail strong {
  font-size: 0.95rem;
  color: var(--color-cream);
  font-weight: 500;
}

.contact__social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s;
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-muted);
  transform: translateY(-2px);
}

/* Form */
.contact__form-wrapper {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-size: 0.92rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4A05A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-surface);
  color: var(--color-cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,160,90,0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: #e05555;
}

.form-error {
  font-size: 0.75rem;
  color: #e05555;
  min-height: 1em;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

/* Submit button states */
.btn__loading { display: none; }
.btn.loading .btn__text { display: none; }
.btn.loading .btn__loading { display: inline; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.form-success__icon svg { width: 100%; height: 100%; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-cream);
}

.form-success p {
  color: var(--color-text-muted);
  max-width: 360px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
}

.footer__top {
  padding: var(--space-xl) 0;
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.footer__brand { max-width: 280px; }

.footer__logo { margin-bottom: 1.25rem; }

.footer__tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__nav-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-col li,
.footer__nav-col a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color 0.25s;
}

.footer__nav-col a:hover { color: var(--color-gold-light); }

.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--color-text-dim);
}

/* ══════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  pointer-events: none;
}

.back-to-top svg { width: 20px; height: 20px; }

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__images { height: 420px; order: -1; }
  .about__img-main { width: 75%; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { transform: none; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }

  .experiences__mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .mosaic-item--tall { grid-row: span 1; }
  .mosaic-item--wide { grid-column: span 2; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { order: 2; }
  .contact__form-wrapper { order: 1; }

  .footer__top-inner { grid-template-columns: 1fr; }
  .footer__brand { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid var(--color-border);
    z-index: 999;
  }

  .nav__links.open { transform: translateX(0); }

  .nav__link {
    font-size: 1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link--cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none;
  }

  /* Hero */
  .hero__stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero__stat {
    flex: 1 1 50%;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .hero__stat:nth-child(1),
  .hero__stat:nth-child(3) {
    border-right: 1px solid var(--color-border);
  }

  .hero__stat-divider { display: none; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us__grid { grid-template-columns: 1fr; }

  /* Experiences */
  .experiences__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .mosaic-item--wide { grid-column: span 1; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(100% - 1rem); }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* About images */
  .about__images { height: 340px; }
  .about__img-main { width: 85%; height: 80%; }
  .about__img-accent { width: 60%; height: 45%; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }
  .footer__nav { grid-template-columns: 1fr; }
  .trust-badges { gap: 1.25rem; }
}

/* ══════════════════════════════════════════════════════════
   UTILITY / ACCESSIBILITY
══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--color-gold-muted);
  color: var(--color-cream);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }