    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --ivory: #FAFAF7;
      --cream: #F5F0EB;
      --sand: #E8E0D8;
      --warm-gray: #B8ADA3;
      --taupe: #8C7E72;
      --deep-taupe: #6B5D52;
      --charcoal: #2C2724;
      --navy: #1A2744;
      --gold: #C4A265;
      --gold-light: #D4B87A;
      --sage: #8FA388;
      --ocean: #7CA5B8;
      --white: #FFFFFF;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Outfit', sans-serif;
    }

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

    body {
      background: var(--ivory);
      color: var(--charcoal);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    ::selection {
      background: var(--gold-light);
      color: var(--charcoal)
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1.5rem 4%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all .5s cubic-bezier(.22, 1, .36, 1);
    }

    .nav.scrolled {
      background: rgba(250, 250, 247, .92);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
      padding: 1rem 4%;
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.65rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      transition: opacity .3s;
    }

    .nav.hero-active .nav-logo {
      color: var(--white)
    }

    .nav.scrolled .nav-logo {
      color: var(--charcoal)
    }

    .nav-links {
      display: flex;
      gap: 2.4rem;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      font-family: var(--font-body);
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      position: relative;
      transition: color .3s;
    }

    .nav.hero-active .nav-links a {
      color: rgba(255, 255, 255, .85)
    }

    .nav.scrolled .nav-links a {
      color: var(--charcoal)
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .4s cubic-bezier(.22, 1, .36, 1);
    }

    .nav-links a:hover::after {
      width: 100%
    }

    .nav-cta {
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      padding: .7rem 1.8rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      background: transparent;
      cursor: pointer;
      transition: all .4s;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--white)
    }

    .nav.hero-active .nav-cta {
      border-color: rgba(255, 255, 255, .5);
      color: rgba(255, 255, 255, .85)
    }

    .nav.hero-active .nav-cta:hover {
      background: rgba(255, 255, 255, .15);
      border-color: rgba(255, 255, 255, .8);
      color: var(--white)
    }

    .nav.scrolled .nav-cta {
      border-color: var(--gold);
      color: var(--gold)
    }

    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 101;
      background: none;
      border: none;
      padding: 4px;
    }
    .mobile-toggle span {
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all .3s;
      display: block;
    }
    .nav.scrolled .mobile-toggle span {
      background: var(--charcoal)
    }
    /* Mobile overlay — nav dışında ayrı element */
    .nav-links-mobile {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--charcoal);
      justify-content: center;
      align-items: center;
      gap: 2.4rem;
      z-index: 99;
    }
    .nav-links-mobile a {
      font-family: var(--font-body);
      font-size: 1rem; font-weight: 400;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.75);
      text-decoration: none;
      transition: color .3s;
    }
    .nav-links-mobile a:hover { color: var(--white) }
    .nav-links-mobile .mobile-cta {
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: .8rem 2.4rem;
    }
    /* Open state */
    body.mobile-open .nav-links-mobile { display: flex }
    body.mobile-open .nav.scrolled {
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
    }
    body.mobile-open .mobile-toggle { z-index: 101 }
    body.mobile-open .mobile-toggle span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      background: var(--white);
    }
    body.mobile-open .mobile-toggle span:nth-child(2) { opacity: 0 }
    body.mobile-open .mobile-toggle span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      background: var(--white);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: url('files/hero.jpeg') center/cover no-repeat;
    }

    .hero-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(20, 18, 16, .3) 0%, rgba(20, 18, 16, .15) 40%, rgba(20, 18, 16, .5) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 860px;
      padding: 0 2rem;
      animation: heroFade 1.6s cubic-bezier(.22, 1, .36, 1) forwards;
      opacity: 0;
      transform: translateY(30px);
    }

    @keyframes heroFade {
      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-eyebrow {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1.6rem;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 1.6rem;
    }

    .hero-sub {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 200;
      color: rgba(255, 255, 255, .75);
      max-width: 540px;
      margin: 0 auto 2.8rem;
      line-height: 1.8;
      letter-spacing: .02em;
    }

    .hero-btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 1rem 3rem;
      border: 1px solid rgba(255, 255, 255, .4);
      color: var(--white);
      text-decoration: none;
      transition: all .5s cubic-bezier(.22, 1, .36, 1);
    }

    .hero-btn:hover {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .7);
      letter-spacing: .26em;
    }

    .hero-scroll {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .6rem;
    }

    .hero-scroll span {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, .25);
      position: relative;
      overflow: hidden;
    }

    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 1px;
      height: 100%;
      background: var(--gold-light);
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% {
        top: -100%
      }

      100% {
        top: 100%
      }
    }

    /* ── ABOUT ── */
    .about {
      padding: 8rem 4%;
      background: var(--white);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      max-width: 1300px;
      margin: 0 auto;
      align-items: center;
    }

    .about-text .section-eyebrow {
      justify-content: flex-start
    }

    .about-text .section-eyebrow::before {
      display: none
    }

    .about-quote {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2vw, 1.7rem);
      font-weight: 300;
      font-style: italic;
      color: var(--charcoal);
      line-height: 1.6;
      margin: 2rem 0;
      padding-left: 1.8rem;
      border-left: 2px solid var(--gold);
    }

    .about-body {
      font-size: .9rem;
      font-weight: 300;
      color: var(--taupe);
      line-height: 2;
      margin-bottom: 1.2rem;
    }

    .about-stats {
      display: flex;
      gap: 3rem;
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--sand);
    }

    .stat-item {
      text-align: center
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2.6rem;
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: .3rem;
    }

    .stat-label {
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--taupe);
    }

    .about-image {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 4/5;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.22, 1, .36, 1);
    }

    .about-image:hover img {
      transform: scale(1.04)
    }

    /* ── PHILOSOPHY / INTRO ── */
    .philosophy {
      padding: 8rem 4%;
      text-align: center;
      background: var(--ivory);
    }

    .philosophy-inner {
      max-width: 780px;
      margin: 0 auto
    }

    .section-eyebrow {
      font-family: var(--font-body);
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--sand);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.25;
      color: var(--charcoal);
      margin-bottom: 2rem;
    }

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

    .philosophy-text {
      font-size: .95rem;
      font-weight: 300;
      color: var(--taupe);
      line-height: 2;
      max-width: 600px;
      margin: 0 auto;
    }

    .gold-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 3rem auto 0;
    }

    /* ── DESTINATIONS ── */
    .destinations {
      padding: 6rem 4%;
      background: var(--cream)
    }

    .destinations .section-eyebrow,
    .destinations .section-title {
      text-align: center
    }

    .destinations .section-title {
      margin-bottom: 4rem
    }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .dest-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .dest-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .6s;
      filter: brightness(.92);
    }

    .dest-card:hover img {
      transform: scale(1.06);
      filter: brightness(.8)
    }

    .dest-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(20, 18, 16, .6) 0%, transparent 50%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2rem 1.6rem;
      transition: background .5s;
    }

    .dest-card:hover .dest-overlay {
      background: linear-gradient(0deg, rgba(20, 18, 16, .7) 0%, rgba(20, 18, 16, .1) 60%);
    }

    .dest-label {
      font-family: var(--font-body);
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: .4rem;
    }

    .dest-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .5rem;
    }

    .dest-desc {
      font-size: .78rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .65);
      max-height: 0;
      overflow: hidden;
      transition: max-height .6s cubic-bezier(.22, 1, .36, 1), opacity .4s;
      opacity: 0;
    }

    .dest-card:hover .dest-desc {
      max-height: 80px;
      opacity: 1
    }

    /* ── EXPERIENCE SHOWCASE ── */
    .experience {
      padding: 8rem 4%;
      background: var(--white);
    }

    .exp-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1400px;
      margin: 0 auto;
      align-items: center;
      margin-bottom: 1px;
    }

    .exp-row.reverse {
      direction: rtl
    }

    .exp-row.reverse>* {
      direction: ltr
    }

    .exp-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .exp-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.22, 1, .36, 1);
    }

    .exp-image:hover img {
      transform: scale(1.04)
    }

    .exp-content {
      padding: 4rem 5rem;
    }

    .exp-number {
      font-family: var(--font-display);
      font-size: 4.5rem;
      font-weight: 300;
      color: var(--sand);
      line-height: 1;
      margin-bottom: .8rem;
    }

    .exp-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 400;
      line-height: 1.3;
      color: var(--charcoal);
      margin-bottom: 1.2rem;
    }

    .exp-text {
      font-size: .88rem;
      font-weight: 300;
      color: var(--taupe);
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }

    .exp-list {
      list-style: none;
      margin-bottom: 2rem;
    }

    .exp-list li {
      font-size: .82rem;
      font-weight: 300;
      color: var(--taupe);
      line-height: 1.8;
      padding-left: 1.2rem;
      position: relative;
    }

    .exp-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: .7rem;
    }

    .exp-link {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      transition: gap .4s cubic-bezier(.22, 1, .36, 1);
    }

    .exp-link:hover {
      gap: 1.2rem
    }

    .exp-link svg {
      transition: transform .4s
    }

    .exp-link:hover svg {
      transform: translateX(4px)
    }

    /* ── SERVICE CARDS (Concierge + Wedding) ── */
    .service-cards {
      padding: 6rem 4%;
      background: var(--ivory);
    }

    .service-cards .section-eyebrow,
    .service-cards .section-title {
      text-align: center
    }

    .service-cards .section-title {
      margin-bottom: 3rem
    }

    .sc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .sc-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      aspect-ratio: 16/9;
      cursor: pointer;
    }

    .sc-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .5s;
      filter: brightness(.85);
    }

    .sc-card:hover img {
      transform: scale(1.05);
      filter: brightness(.7)
    }

    .sc-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(20, 18, 16, .8) 0%, rgba(20, 18, 16, .1) 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem;
    }

    .sc-sub {
      font-family: var(--font-body);
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: .6rem;
    }

    .sc-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .8rem;
    }

    .sc-list {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s cubic-bezier(.22, 1, .36, 1), opacity .4s;
      opacity: 0;
    }

    .sc-card:hover .sc-list {
      max-height: 160px;
      opacity: 1
    }

    .sc-list li {
      font-size: .78rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .75);
      line-height: 1.9;
      padding-left: 1rem;
      position: relative;
    }

    .sc-list li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--gold-light);
    }

    /* ── PROMISES / SERVICES GRID ── */
    .promises {
      padding: 8rem 4%;
      background: var(--cream);
    }

    .promises .section-eyebrow,
    .promises .section-title {
      text-align: center
    }

    .promises .section-title {
      margin-bottom: 4.5rem
    }

    .promise-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .promise-card {
      text-align: center;
      padding: 2.8rem 1.8rem;
      background: var(--white);
      border-radius: 2px;
      transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .5s;
    }

    .promise-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    }

    .promise-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 1.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }

    .promise-icon svg {
      width: 36px;
      height: 36px
    }

    .promise-name {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: .8rem;
    }

    .promise-desc {
      font-size: .82rem;
      font-weight: 300;
      color: var(--taupe);
      line-height: 1.8;
    }

    /* ── PARALLAX QUOTE ── */
    .parallax-quote {
      position: relative;
      padding: 8rem 4%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .parallax-bg {
      position: absolute;
      inset: -20%;
      background:
        linear-gradient(180deg, rgba(26, 39, 68, .5), rgba(26, 39, 68, .65)),
        url('files/hero.jpeg') center/cover no-repeat fixed;
    }

    .parallax-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 700px;
    }

    .parallax-content blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.2vw, 2.6rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--white);
      margin-bottom: 1.8rem;
    }

    .parallax-content cite {
      font-family: var(--font-body);
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-style: normal;
    }

    /* ── GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }

    .gallery-strip img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      filter: brightness(.9);
      transition: filter .5s;
    }

    .gallery-strip img:hover {
      filter: brightness(1.05)
    }

    /* ── CONTACT SECTION ── */
    .contact-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 680px;
    }

    .contact-visual {
      position: relative;
      overflow: hidden;
    }

    .contact-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.82);
      transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
    }

    .contact-section:hover .contact-visual img {
      transform: scale(1.03)
    }

    .contact-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 39, 68, .4) 0%, transparent 60%);
    }

    .contact-content {
      background: var(--charcoal);
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-eyebrow {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      display: flex;
      align-items: center;
      gap: .8rem;
    }

    .contact-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: rgba(196, 162, 101, .4)
    }

    .contact-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: .8rem;
    }

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

    .contact-subtitle {
      font-size: .85rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .45);
      line-height: 1.9;
      margin-bottom: 3rem;
      max-width: 380px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 3rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
      padding: 1.4rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      transition: padding-left .3s;
    }

    .contact-item:first-child {
      padding-top: 0
    }

    .contact-item:hover {
      padding-left: .4rem
    }

    .contact-item-icon {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(196, 162, 101, .3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      transition: border-color .3s, background .3s;
    }

    .contact-item:hover .contact-item-icon {
      border-color: var(--gold);
      background: rgba(196, 162, 101, .08);
    }

    .contact-item-icon svg {
      width: 16px;
      height: 16px
    }

    .contact-item-label {
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: .2rem;
    }

    .contact-item-value {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .7);
      line-height: 1.6;
    }

    .contact-item-value a {
      color: rgba(255, 255, 255, .7);
      text-decoration: none;
      transition: color .3s;
    }

    .contact-item-value a:hover {
      color: var(--gold-light)
    }

    .contact-enquire-btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 1rem 2.8rem;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      border: 1px solid var(--gold);
      transition: all .4s cubic-bezier(.22, 1, .36, 1);
      align-self: flex-start;
    }

    .contact-enquire-btn:hover {
      background: transparent;
      color: var(--gold)
    }

    @media(max-width:960px) {
      .contact-section {
        grid-template-columns: 1fr
      }

      .contact-visual {
        min-height: 320px
      }

      .contact-content {
        padding: 4rem 2.5rem
      }
    }

    /* ── CTA SECTION ── */
    .cta-section {
      padding: 8rem 4%;
      text-align: center;
      background: var(--white);
    }

    .cta-section .section-title {
      margin-bottom: 1.6rem
    }

    .cta-text {
      font-size: .92rem;
      font-weight: 300;
      color: var(--taupe);
      max-width: 520px;
      margin: 0 auto 3rem;
      line-height: 1.9;
    }

    .cta-btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 1.1rem 3.6rem;
      background: var(--charcoal);
      color: var(--white);
      text-decoration: none;
      transition: all .5s cubic-bezier(.22, 1, .36, 1);
      border: 1px solid var(--charcoal);
    }

    .cta-btn:hover {
      background: transparent;
      color: var(--charcoal);
    }

    .cta-contact-info {
      margin-top: 3rem;
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .cta-contact-item {
      display: flex;
      flex-direction: column;
      gap: .3rem;
    }

    .cta-contact-label {
      font-size: .65rem;
      font-weight: 400;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .cta-contact-value {
      font-size: .88rem;
      font-weight: 300;
      color: var(--taupe);
    }

    .cta-contact-value a {
      color: var(--taupe);
      text-decoration: none;
      transition: color .3s
    }

    .cta-contact-value a:hover {
      color: var(--charcoal)
    }

    /* ── FOOTER ── */
    footer {
      padding: 4rem 4% 2rem;
      background: var(--charcoal);
      color: rgba(255, 255, 255, .5);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-brand .nav-logo {
      color: var(--white);
      font-size: 1.3rem;
      display: block;
      margin-bottom: 1.2rem
    }

    .footer-brand p {
      font-size: .82rem;
      line-height: 1.8;
      max-width: 280px
    }

    .footer-col h4 {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }

    .footer-col a {
      display: block;
      font-size: .82rem;
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      margin-bottom: .7rem;
      transition: color .3s;
    }

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

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 1.6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .72rem;
    }

    .footer-social {
      display: flex;
      gap: 1.2rem
    }

    .footer-social a {
      color: rgba(255, 255, 255, .35);
      text-decoration: none;
      transition: color .3s;
    }

    .footer-social a:hover {
      color: var(--gold-light)
    }

    /* ── WEDDING FEATURE ── */
    .wedding-feature {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 640px;
    }

    .wedding-feature-visual {
      position: relative;
      overflow: hidden;
    }

    .wedding-feature-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(.22, 1, .36, 1);
      filter: brightness(.88);
    }

    .wedding-feature:hover .wedding-feature-visual img {
      transform: scale(1.04)
    }

    .wedding-feature-badge {
      position: absolute;
      top: 2.5rem;
      left: 2.5rem;
      background: var(--gold);
      color: var(--white);
      font-family: var(--font-body);
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .6rem 1.2rem;
      z-index: 2;
    }

    .wedding-feature-content {
      background: var(--charcoal);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6rem 5rem;
    }

    .wedding-feature-eyebrow {
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 400;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.6rem;
      display: flex;
      align-items: center;
      gap: .8rem;
    }

    .wedding-feature-eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: rgba(196, 162, 101, .4)
    }

    .wedding-feature-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

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

    .wedding-feature-text {
      font-size: .88rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .55);
      line-height: 2;
      margin-bottom: 2.5rem;
      max-width: 400px;
    }

    .wedding-feature-list {
      list-style: none;
      margin-bottom: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .4rem .8rem;
    }

    .wedding-feature-list li {
      font-size: .78rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .5);
      padding-left: 1rem;
      position: relative;
      line-height: 1.8;
    }

    .wedding-feature-list li::before {
      content: '·';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 1rem;
      line-height: 1.5;
    }

    .wedding-feature-btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 1rem 2.8rem;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      border: 1px solid var(--gold);
      transition: all .4s cubic-bezier(.22, 1, .36, 1);
      align-self: flex-start;
    }

    .wedding-feature-btn:hover {
      background: transparent;
      color: var(--gold)
    }

    @media(max-width:900px) {
      .wedding-feature {
        grid-template-columns: 1fr
      }

      .wedding-feature-visual {
        min-height: 380px
      }

      .wedding-feature-content {
        padding: 4rem 2.5rem
      }

      .wedding-feature-list {
        grid-template-columns: 1fr
      }
    }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all .9s cubic-bezier(.22, 1, .36, 1)
    }

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

    .reveal-delay-1 {
      transition-delay: .15s
    }

    .reveal-delay-2 {
      transition-delay: .3s
    }

    .reveal-delay-3 {
      transition-delay: .45s
    }

    .reveal-delay-4 {
      transition-delay: .6s
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1200px) {
      .dest-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .dest-grid .dest-card:nth-child(4) {
        display: none
      }

      .promise-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:1024px) {
      .dest-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .dest-grid .dest-card:nth-child(n) {
        display: block
      }

      .exp-row {
        grid-template-columns: 1fr
      }

      .exp-row.reverse {
        direction: ltr
      }

      .exp-content {
        padding: 3rem 2rem
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .about-image {
        aspect-ratio: 16/9
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr
      }

      .gallery-strip {
        grid-template-columns: repeat(3, 1fr)
      }

      .gallery-strip img:nth-child(4),
      .gallery-strip img:nth-child(5) {
        display: none
      }
    }

    @media(max-width:768px) {
      .nav-links { display: none }
      .mobile-toggle { display: flex }

      .dest-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 600px
      }

      .dest-card {
        aspect-ratio: 3/3.5
      }

      .promise-grid {
        grid-template-columns: 1fr
      }

      .exp-content {
        padding: 2.5rem 1.5rem
      }

      .exp-number {
        font-size: 3rem
      }

      .sc-grid {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .footer-bottom {
        flex-direction: column;
        gap: .8rem;
        text-align: center
      }

      .gallery-strip {
        grid-template-columns: repeat(2, 1fr)
      }

      .gallery-strip img:nth-child(3) {
        display: none
      }

      .parallax-bg {
        background-attachment: scroll
      }

      .team-grid {
        grid-template-columns: 1fr 1fr
      }

      .cta-contact-info {
        gap: 2rem
      }

      .about-stats {
        gap: 1.5rem;
        justify-content: center
      }
    }
