/* HERO */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Fallback image shown when video not available */
    .hero-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=85') center/cover no-repeat;
      z-index: -1;
    }

    .hero-grad {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg,
          rgba(26, 24, 22, .28) 0%,
          rgba(26, 24, 22, .08) 42%,
          rgba(26, 24, 22, .55) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 32px;
      max-width: 920px;
    }

    .hero-eyebrow {
      font-size: 9.5px;
      font-weight: 400;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      opacity: 0;
      animation: fadeUp .9s ease .3s forwards;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      width: 44px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8.5vw, 100px);
      font-weight: 300;
      color: #fff;
      line-height: 1.0;
      letter-spacing: -.01em;
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeUp .9s ease .5s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
    }

    .hero-sub {
      font-size: 15.5px;
      font-weight: 300;
      letter-spacing: .09em;
      color: rgba(255, 255, 255, .72);
      margin-bottom: 46px;
      opacity: 0;
      animation: fadeUp .9s ease .7s forwards;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .9s ease .9s forwards;
    }

    .hero-scroll {
      position: absolute;
      bottom: 38px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      opacity: 0;
      animation: fadeIn 1s ease 1.3s forwards;
      cursor: none;
    }

    .hero-scroll span {
      font-size: 8.5px;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
    }

    .scroll-bar {
      width: 1px;
      height: 58px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .45), transparent);
      animation: scrollPulse 2.2s ease infinite;
    }

    .hero-stats {
      position: absolute;
      bottom: 38px;
      right: 64px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: right;
      opacity: 0;
      animation: fadeIn 1s ease 1.1s forwards;
    }

    .hstat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 600;
      color: #fff;
      line-height: 1;
    }

    .hstat-label {
      font-size: 8.5px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 1;
        transform: scaleY(1)
      }

      50% {
        opacity: .3;
        transform: scaleY(.65)
      }
    }

    /* INTRO */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 90px;
      align-items: center;
    }

    .intro-img-wrap {
      position: relative;
    }

    .intro-img-main {
      width: 100%;
      height: 560px;
      object-fit: cover;
    }

    .intro-img-inset {
      position: absolute;
      bottom: -36px;
      right: -36px;
      width: 195px;
      height: 240px;
      object-fit: cover;
      border: 5px solid var(--off-white);
    }

    .intro-badge {
      position: absolute;
      top: 36px;
      left: -26px;
      background: var(--gold);
      padding: 18px 22px;
      text-align: center;
      z-index: 2;
    }

    .intro-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1;
      display: block;
    }

    .intro-badge-text {
      font-size: 8.5px;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--charcoal);
      opacity: .68;
    }

    .intro-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 38px;
    }

    .ifeat {
      display: flex;
      gap: 13px;
      align-items: flex-start;
    }

    .ifeat-icon {
      width: 34px;
      height: 34px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
    }

    .ifeat h4 {
      font-family: 'Jost', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--text-dark);
      margin-bottom: 3px;
    }

    .ifeat p {
      font-size: 11.5px;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* GALLERY (home preview) — CLEAN GRID */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 14px;
    }

    .gallery-grid .gi {
      overflow: hidden;
      position: relative;
      cursor: none;
    }

    .gallery-grid .gi:first-child {
      grid-column: 1/3;
    }

    .gallery-grid .gi img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .gallery-grid .gi:first-child img {
      height: 340px;
    }

   

    .gallery-grid .gi:hover img {
      transform: scale(1.06);
    }

    .gi-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26, 24, 22, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s;
    }

    .gi:hover .gi-overlay {
      background: rgba(26, 24, 22, .38);
    }

    .gi-zoom {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 19px;
      opacity: 0;
      transform: scale(.8);
      transition: all .3s;
    }

    .gi:hover .gi-zoom {
      opacity: 1;
      transform: scale(1);
    }

    /* WHY (forest bg) */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .why-card {
      padding: 44px 36px;
      border: 1px solid rgba(201, 168, 76, .11);
      background: rgba(255, 255, 255, .04);
      transition: background .3s;
    }

    .why-card:hover {
      background: rgba(255, 255, 255, .08);
    }

    .why-icon {
      width: 50px;
      height: 50px;
      border: 1px solid rgba(201, 168, 76, .38);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 26px;
      font-size: 20px;
    }

    .why-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 23px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 14px;
    }

    .why-card p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, .58);
      line-height: 1.78;
    }

    /* INVEST STRIP (off-white section between testi+footer) */
    .invest-strip {
      padding: 80px;
      background: var(--off-white);
    }

    .invest-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border-grey);
    }

    .inv-stat {
      padding: 40px 28px;
      text-align: center;
      border-right: 1px solid var(--border-grey);
    }

    .inv-stat:last-child {
      border-right: none;
    }

    .inv-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 500;
      color: var(--forest);
      line-height: 1;
      display: block;
    }

    .inv-label {
      font-size: 9.5px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-top: 8px;
      display: block;
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, var(--forest-dark), var(--forest));
      padding: 80px;
      text-align: center;
    }

    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 300;
      color: #fff;
      margin-bottom: 18px;
    }

    .cta-band h2 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .cta-band p {
      font-size: 14.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 38px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ==================== LOCATION ==================== */
    .location-section {
      padding: 120px 80px;
      background: var(--warm-white);
    }

    .location-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .location-map {
      height: 500px;
      background: #e0ddd8;
      position: relative;
      overflow: hidden;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: saturate(0.7) sepia(0.15);
    }

    .distance-list {
      margin-top: 40px;
    }

    .distance-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

    .distance-item:first-child {
      border-top: 1px solid var(--border);
    }

    .distance-label {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 13px;
      font-weight: 400;
      color: var(--text-mid);
    }

    .distance-icon {
      font-size: 16px;
    }

    .distance-val {
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .distance-val span {
      font-family: "Jost", sans-serif;
      font-size: 10px;
      font-weight: 300;
      color: var(--text-light);
      letter-spacing: 0.1em;
    }

    .attractions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .attraction-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid var(--border);
      font-size: 12.5px;
      color: var(--text-mid);
    }

    .attraction-dot {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media(max-width:1100px) {
      .intro-grid {
        gap: 50px;
      }

      .intro-img-inset,
      .intro-badge {
        display: none;
      }

      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

      .invest-inner {
        grid-template-columns: 1fr 1fr;
      }

      .inv-stat:nth-child(2) {
        border-right: none;
      }

      .inv-stat:nth-child(3) {
        border-top: 1px solid var(--border-grey);
      }

      .inv-stat:nth-child(4) {
        border-right: none;
        border-top: 1px solid var(--border-grey);
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid .gi:first-child {
        grid-column: 1/3;
      }

      .invest-strip,
      .cta-band {
        padding: 60px 40px;
      }
    }

    @media(max-width:768px) {
      .hero-stats {
        display: none;
      }

      .intro-grid {
        grid-template-columns: 1fr;
      }

      .intro-img-main {
        height: 320px;
      }

      .intro-features {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .invest-inner {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-grid .gi:first-child {
        grid-column: 1/3;
      }

      .gallery-grid .gi:first-child img {
        height: 240px;
      }

     
      .invest-strip,
      .cta-band {
        padding: 50px 22px;
      }

      .location-section{
        padding: 60px 22px;
      }
      .location-grid {
      grid-template-columns: none;
    }
    .sec-charcoal .testi{
        grid-template-columns:none !important;
    }
    }



    .about-story-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center;
}
.about-img-stack { position:relative; height:620px; }
.ab-img1 { position:absolute; top:0; left:0; width:72%; height:62%; object-fit:cover; }
.ab-img2 { position:absolute; bottom:0; right:0; width:62%; height:54%; object-fit:cover; border:5px solid var(--off-white); }
.ab-quote {
  position:absolute; bottom:55px; left:-18px; z-index:3;
  background:var(--gold); padding:22px 26px; max-width:230px;
}
.ab-quote p { font-family:'Cormorant Garamond',serif; font-size:17px; font-style:italic; color:var(--charcoal); line-height:1.45; }

.about-body p { font-size:14.5px; font-weight:300; color:var(--text-mid); line-height:1.82; margin-bottom:18px; }

.inv-stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:46px; border:1px solid var(--border-grey); }
.is-stat { padding:28px 22px; text-align:center; border-right:1px solid var(--border-grey); }
.is-stat:last-child { border-right:none; }
.is-num { font-family:'Cormorant Garamond',serif; font-size:46px; font-weight:500; color:var(--forest); line-height:1; display:block; }
.is-label { font-size:9px; letter-spacing:.3em; text-transform:uppercase; color:var(--text-light); margin-top:8px; display:block; }

/* Team */
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.team-card { text-align:center; }
.team-img { width:100%; height:320px; object-fit:cover; margin-bottom:24px; }
.team-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:400; color:var(--text-dark); }
.team-role { font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-top:6px; }
.team-bio { font-size:13px; font-weight:300; color:var(--text-light); line-height:1.7; margin-top:12px; }

/* Values */
.values-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2px; }
.val-card { padding:44px 40px; background:rgba(255,255,255,.04); border:1px solid rgba(201,168,76,.11); transition:background .3s; }
.val-card:hover { background:rgba(255,255,255,.08); }
.val-num { font-family:'Cormorant Garamond',serif; font-size:48px; font-weight:300; color:rgba(201,168,76,.28); line-height:1; margin-bottom:12px; }
.val-card h3 { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:400; color:#fff; margin-bottom:12px; }
.val-card p { font-size:13px; font-weight:300; color:rgba(255,255,255,.55); line-height:1.78; }

/* Timeline */
.timeline { position:relative; padding-left:40px; }
.timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:1px; background:var(--border); }
.tl-item { position:relative; margin-bottom:44px; }
.tl-dot { position:absolute; left:-44px; top:4px; width:9px; height:9px; background:var(--gold); border-radius:50%; }
.tl-year { font-size:9px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.tl-item h4 { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:var(--text-dark); margin-bottom:8px; }
.tl-item p { font-size:13px; font-weight:300; color:var(--text-light); line-height:1.7; }

/* CTA band */
.cta-band { background:linear-gradient(135deg,var(--forest-dark),var(--forest)); padding:80px; text-align:center; }
.cta-band h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(34px,4vw,54px); font-weight:300; color:#fff; margin-bottom:16px; }
.cta-band h2 em { font-style:italic; color:var(--gold-light); }
.cta-band p { font-size:14px; font-weight:300; color:rgba(255,255,255,.62); margin-bottom:36px; max-width:460px; margin-left:auto; margin-right:auto; }
.cta-band-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

@media(max-width:1100px){
  .about-story-grid { gap:50px; }
  .about-img-stack { height:460px; }
  .ab-quote,.ab-img2 { display:none; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .cta-band,.invest-strip { padding:60px 40px; }
}
@media(max-width:768px){
  .about-story-grid { grid-template-columns:1fr; }
  .about-img-stack { height:300px; }
  .ab-img1 { width:100%; height:100%; }
  .team-grid { grid-template-columns:1fr; }
  .inv-stats-row { grid-template-columns:1fr 1fr; }
  .is-stat:nth-child(2) { border-right:none; }
  .is-stat:nth-child(3) { border-top:1px solid var(--border-grey); grid-column:1/3; border-right:none; }
  .values-grid { grid-template-columns:1fr; }
  .cta-band { padding:50px 22px; }
}

/* ── CONTACT PAGE ── */
.contact-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:90px; align-items:start; }

.contact-detail { display:flex; gap:18px; margin-bottom:30px; align-items:flex-start; }
.cd-icon { width:48px; height:48px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.cd-label { font-size:9.5px; font-weight:500; letter-spacing:.3em; text-transform:uppercase; color:var(--text-light); margin-bottom:6px; }
.cd-val { font-size:15px; font-weight:300; color:var(--text-dark); line-height:1.5; }
.cd-val a { color:var(--text-dark); cursor:none; transition:color .25s; }
.cd-val a:hover { color:var(--gold); }

.quick-btns { display:flex; gap:12px; flex-wrap:wrap; margin-top:36px; }
.btn-wa { display:inline-flex; align-items:center; gap:10px; padding:15px 28px; background:#25D366; color:#fff; font-family:'Jost',sans-serif; font-size:10.5px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; cursor:none; transition:opacity .28s; }
.btn-wa:hover { opacity:.85; }
.btn-cl { display:inline-flex; align-items:center; gap:10px; padding:15px 28px; background:var(--forest); color:#fff; font-family:'Jost',sans-serif; font-size:10.5px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; cursor:none; transition:opacity .28s; }
.btn-cl:hover { opacity:.85; }

.contact-form-wrap { background:var(--cream); padding:48px; border:1px solid var(--border-grey); }
.cf-title { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:400; color:var(--text-dark); margin-bottom:6px; }
.cf-sub { font-size:13px; font-weight:300; color:var(--text-light); margin-bottom:32px; }
.contact-form { display:flex; flex-direction:column; gap:18px; }

/* Map strip */
.map-strip { height:380px; overflow:hidden; position:relative; }
.map-strip iframe { width:100%; height:100%; border:none; filter:saturate(.75) sepia(.1); }

/* Office hours */
.hours-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:1px solid var(--border-grey); }
.hour-card { padding:32px 28px; border-right:1px solid var(--border-grey); text-align:center; }
.hour-card:last-child { border-right:none; }
.hour-day { font-size:9.5px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.hour-time { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:var(--text-dark); }
.hour-note { font-size:12px; color:var(--text-light); margin-top:8px; }

/* Success msg */
.form-success { display:none; text-align:center; padding:40px; }
.form-success .check { font-size:48px; margin-bottom:16px; }
.form-success h4 { font-family:'Cormorant Garamond',serif; font-size:28px; color:var(--forest); margin-bottom:8px; }
.form-success p { font-size:13px; color:var(--text-light); }

@media(max-width:1100px){ .contact-grid { gap:50px; } .contact-form-wrap { padding:36px; } }
@media(max-width:768px){
  .contact-grid { grid-template-columns:1fr; }
  .hours-grid { grid-template-columns:1fr; }
  .hour-card { border-right:none; border-bottom:1px solid var(--border-grey); }
  .hour-card:last-child { border-bottom:none; }
  .contact-form-wrap { padding:24px; }
}

/* ── GALLERY PAGE ── */
.filter-bar {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom:52px;
}
.filter-btn {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:400;
  letter-spacing:.28em; text-transform:uppercase; padding:10px 22px;
  border:1px solid var(--border-grey); background:transparent;
  color:var(--text-mid); cursor:none; transition:all .28s;
}
.filter-btn.active,
.filter-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--charcoal); }

/* Full masonry */
.gallery-masonry { columns:3; column-gap:16px; }
.gm-item {
  break-inside:avoid; margin-bottom:16px;
  overflow:hidden; position:relative; cursor:none;
}
.gm-item img { width:100%; display:block; transition:transform .5s ease; }
.gm-item:hover img { transform:scale(1.06); }
.gm-overlay {
  position:absolute; inset:0; background:rgba(26,24,22,0);
  display:flex; align-items:flex-end; justify-content:flex-start;
  padding:20px; transition:background .32s;
}
.gm-item:hover .gm-overlay { background:rgba(26,24,22,.42); }
.gm-label {
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,0); transition:color .32s; display:flex; align-items:center; gap:8px;
}
.gm-item:hover .gm-label { color:rgba(255,255,255,.75); }
.gm-label::before { content:''; width:22px; height:1px; background:var(--gold); }
.gm-zoom-icon {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(.7);
  width:46px; height:46px; border:1px solid rgba(255,255,255,.55);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px; opacity:0; transition:all .3s;
}
.gm-item:hover .gm-zoom-icon { opacity:1; transform:translate(-50%,-50%) scale(1); }

/* hidden for filter */
.gm-item.hidden { display:none; }

/* Drone banner */
.drone-banner {
  position:relative; height:320px; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.drone-banner-bg {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=85') center/cover;
}
.drone-banner-overlay { position:absolute; inset:0; background:rgba(26,24,22,.6); }
.drone-banner-content { position:relative; z-index:2; text-align:center; }
.drone-banner-content h3 { font-family:'Cormorant Garamond',serif; font-size:clamp(32px,4vw,52px); color:#fff; font-weight:300; margin-bottom:14px; }
.drone-banner-content h3 em { font-style:italic; color:var(--gold-light); }
.drone-banner-content p { font-size:13px; color:rgba(255,255,255,.6); letter-spacing:.1em; margin-bottom:28px; }

@media(max-width:1100px){ .gallery-masonry { columns:2; } }
@media(max-width:768px){ .gallery-masonry { columns:1; } .filter-bar { gap:8px; } }


/* ── LOCATION PAGE ── */
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }

.loc-map-wrap {
  position:relative; height:480px; overflow:hidden;
  border:1px solid var(--border-grey);
}
.loc-map-wrap iframe { width:100%; height:100%; border:none; filter:saturate(.75) sepia(.1); }

.dist-heading { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:400; color:var(--text-dark); margin-bottom:8px; }
.dist-heading em { font-style:italic; color:var(--forest); }

/* How to reach */
.reach-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.reach-card { padding:36px 28px; text-align:center; background:rgba(255,255,255,.04); border:1px solid rgba(201,168,76,.11); transition:background .28s; }
.reach-card:hover { background:rgba(255,255,255,.09); }
.reach-icon { font-size:32px; margin-bottom:18px; display:block; }
.reach-card h4 { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:400; color:#fff; margin-bottom:10px; }
.reach-card p { font-size:12.5px; font-weight:300; color:rgba(255,255,255,.55); line-height:1.7; }
.reach-dist { font-family:'Cormorant Garamond',serif; font-size:18px; color:var(--gold); margin-top:10px; }

/* Attractions */
.attr-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.attr-card {
  display:flex; align-items:flex-start; gap:16px;
  padding:22px; border:1px solid var(--border-grey);
  background:var(--cream); transition:border-color .28s, box-shadow .28s;
}
.attr-card:hover { border-color:var(--gold); box-shadow:0 8px 30px rgba(201,168,76,.1); }
.attr-icon { font-size:24px; flex-shrink:0; margin-top:2px; }
.attr-card h4 { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:400; color:var(--text-dark); margin-bottom:6px; }
.attr-card p { font-size:12.5px; font-weight:300; color:var(--text-light); line-height:1.6; }
.attr-dist { font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-top:8px; display:block; }

/* Climate strip */
.climate-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid var(--border-grey); }
.climate-card { padding:36px 24px; text-align:center; border-right:1px solid var(--border-grey); }
.climate-card:last-child { border-right:none; }
.climate-season { font-size:9.5px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.climate-temp { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:400; color:var(--text-dark); line-height:1; }
.climate-desc { font-size:12px; color:var(--text-light); margin-top:10px; line-height:1.6; }

/* Fullwidth map */
.fullmap { height:420px; position:relative; overflow:hidden; }
.fullmap iframe { width:100%; height:100%; border:none; filter:saturate(.75) sepia(.1); }
.fullmap-label {
  position:absolute; top:24px; left:24px; z-index:2;
  background:var(--cream); padding:14px 20px; border-left:3px solid var(--gold);
}
.fullmap-label h4 { font-family:'Cormorant Garamond',serif; font-size:20px; color:var(--text-dark); }
.fullmap-label p { font-size:11px; color:var(--text-light); margin-top:4px; }

@media(max-width:1100px){
  .loc-grid { gap:50px; }
  .reach-grid { grid-template-columns:1fr 1fr; }
  .climate-strip { grid-template-columns:1fr 1fr; }
  .climate-card:nth-child(2) { border-right:none; }
  .climate-card:nth-child(3) { border-top:1px solid var(--border-grey); }
  .climate-card:nth-child(4) { border-right:none; border-top:1px solid var(--border-grey); }
}
@media(max-width:768px){
  .loc-grid { grid-template-columns:1fr; }
  .loc-map-wrap { height:320px; }
  .reach-grid { grid-template-columns:1fr; }
  .attr-grid { grid-template-columns:1fr; }
  .climate-strip { grid-template-columns:1fr 1fr; }
}

/* ==================== PROPERTY DETAIL PAGE ==================== */
.page-section {
  background: var(--cream);
}
.breadcrumb-banner {
    position: relative;
    min-height: 450px;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 80px;
}

.breadcrumb {
    /* padding: 100px 80px 0; */
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    padding-top: 110px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #f4b942;
}

.breadcrumb-sep {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-current {
    color: #ffffff;
}

.breadcrumb-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumb-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .breadcrumb-content,
    .breadcrumb {
        padding-left: 30px;
        padding-right: 30px;
    }

    .breadcrumb-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-banner {
        min-height: 350px;
    }

    .breadcrumb-content h1 {
        font-size: 36px;
    }

    .breadcrumb-content p {
        font-size: 15px;
    }

    .breadcrumb {
        padding-top: 90px;
    }
    .detail-info-grid{
      display: block !important;
    }
    .detail-info-section{
      padding: 60px 22px !important;
    }
    .masterplan-section{
      padding: 60px 22px !important;
    }
    .contact-section{
      padding: 60px 22px !important;
    }
}

.video-breadcrumb-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-breadcrumb-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.video-breadcrumb-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.video-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 110px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.video-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.video-breadcrumb a:hover {
    color: #f4b942;
}

.video-breadcrumb-sep {
    color: rgba(255,255,255,0.6);
}

.video-breadcrumb-current {
    color: #fff;
}

.video-breadcrumb-content h1 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}

.video-breadcrumb-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.8;
}

/* Tablet */
@media (max-width: 991px) {
    .video-breadcrumb-content {
        padding: 0 30px;
    }

    .video-breadcrumb-content h1 {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .video-breadcrumb-banner {
      height: 0px;
        min-height: 350px !important;
    }

    .video-breadcrumb-content {
        padding: 0 20px;
    }

    .video-breadcrumb {
        padding-top: 90px;
        font-size: 10px;
    }

    .video-breadcrumb-content h1 {
        font-size: 36px;
    }

    .video-breadcrumb-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    .contact-grid{
      display: block !important;
    }
}
.detail-video-section {
  margin: 40px 80px;
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--charcoal);
}
.detail-video-section video,
.detail-video-section .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--charcoal));
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.detail-video-label {
  position: absolute;
  bottom: 24px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.video-play-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Detail Gallery */
.detail-gallery-section {
    margin-top: 55px;
}


.detail-main-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--charcoal);
  margin-bottom: 12px;
}
.detail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.detail-slide.active {
  opacity: 1;
}
.detail-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(248, 246, 242, 0.9);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  z-index: 10;
  transition: background 0.3s;
}
.slider-btn:hover {
  background: var(--gold);
}
.slider-btn-prev {
  left: 20px;
}
.slider-btn-next {
  right: 20px;
}
.slider-fullscreen {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(26, 24, 22, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  z-index: 10;
}
.detail-thumb-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.detail-thumb-row::-webkit-scrollbar {
  display: none;
}
.detail-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 68px;
  overflow: hidden;
  cursor: none;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.detail-thumb.active {
  border-color: var(--gold);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.detail-thumb:hover img {
  transform: scale(1.1);
}

/* Detail Info */
.detail-info-section {
  padding: 60px 80px;
  background: var(--warm-white);
}
.detail-info-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.detail-prop-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
}
.detail-prop-sector {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.detail-prop-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 28px;
}
.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
  border: 1px solid var(--border);
}
.detail-spec {
  padding: 24px 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.detail-spec:nth-last-child(-n + 2) {
  border-bottom: none;
}
.detail-spec-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.detail-spec-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
}
.detail-sidebar {
}
.detail-price-card {
  border: 1px solid var(--border);
  padding: 36px;
  background: var(--cream);
  position: sticky;
  top: 100px;
}
.detail-price-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.detail-price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}
.detail-price-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.detail-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-sidebar-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.detail-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none;
  cursor: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
.quick-contact-btn:hover {
  opacity: 0.8;
}
.qcb-wa {
  background: #25d366;
  color: #fff;
}
.qcb-call {
  background: var(--forest);
  color: #fff;
}

/* Master Plan */
.masterplan-section {
  padding: 80px;
  background: var(--cream);
}
.masterplan-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.masterplan-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-top: 40px;
  background: linear-gradient(135deg, #efede8, #ddd9d0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ==================== CONTACT ==================== */
.contact-section {
  padding: 120px 80px;
  background: var(--warm-white);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info-side {
}
.contact-info-side .section-subtitle {
  margin-bottom: 48px;
}
.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-text h4 {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.contact-detail-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-quick-btns {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #25d366;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: opacity 0.3s;
}
.btn-whatsapp:hover {
  opacity: 0.88;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: opacity 0.3s;
}
.btn-call:hover {
  opacity: 0.88;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-input {
  width: 100%;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.form-input:focus {
  border-color: var(--gold);
}
.form-input::placeholder {
  color: var(--text-light);
}
textarea.form-input {
  resize: none;
  height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
