*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#0a0a0a;
  --paper:#f5f2ed;
  --cream:#ede8df;
  --navy:#0d1f35;
  --navy-mid:#152840;
  --gold:#b89a5a;
  --gold-light:#d4b87a;
  --gold-pale:rgba(184,154,90,0.1);
  --white:#ffffff;
  --muted:#7a7060;
  --border:rgba(10,10,10,0.1);
  --border-light:rgba(10,10,10,0.06);
}

html{scroll-behavior:smooth;cursor:none}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Syne',sans-serif;
  font-weight:400;
  overflow-x:hidden;
  line-height:1.6;
}

/* ── CUSTOM CURSOR ── */
.cursor{
  position:fixed;width:12px;height:12px;
  background:var(--gold);border-radius:50%;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:transform 0.15s ease,width 0.3s ease,height 0.3s ease,background 0.3s ease;
  mix-blend-mode:multiply;
}
.cursor-follower{
  position:fixed;width:40px;height:40px;
  border:1px solid var(--gold);border-radius:50%;
  pointer-events:none;z-index:9998;
  transform:translate(-50%,-50%);
  transition:transform 0.4s cubic-bezier(0.23,1,0.32,1),width 0.4s,height 0.4s,opacity 0.3s;
  opacity:0.5;
}
body:hover .cursor{opacity:1}
a:hover~.cursor,.btn:hover~.cursor{width:20px;height:20px}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  padding:1.8rem 3rem;
  display:flex;align-items:center;justify-content:space-between;
  mix-blend-mode:normal;
}
nav::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(245,242,237,0.95),transparent);
  backdrop-filter:blur(0px);
  transition:backdrop-filter 0.4s,background 0.4s;
  pointer-events:none;
}
nav.scrolled::before{
  background:rgba(245,242,237,0.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.logo{
  font-family:'Cormorant',serif;
  font-size:1.5rem;font-weight:400;
  color:var(--ink);text-decoration:none;
  letter-spacing:0.02em;position:relative;z-index:1;
}
.logo em{font-style:italic;color:var(--gold);}
nav ul{list-style:none;display:flex;gap:2.5rem;align-items:center;position:relative;z-index:1;}
nav a.nav-link{
  text-decoration:none;color:var(--muted);
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;
  font-weight:600;transition:color 0.3s;position:relative;
}
nav a.nav-link::after{
  content:'';position:absolute;bottom:-2px;left:0;right:0;height:1px;
  background:var(--gold);transform:scaleX(0);transform-origin:right;
  transition:transform 0.3s ease;
}
nav a.nav-link:hover{color:var(--ink);}
nav a.nav-link:hover::after{transform:scaleX(1);transform-origin:left;}
.nav-book{
  padding:0.55rem 1.4rem;background:var(--ink);color:var(--paper);
  font-size:0.68rem;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;
  text-decoration:none;transition:background 0.3s,color 0.3s;
}
.nav-book:hover{background:var(--gold);color:var(--white);}

/* ── PAGE TABS ── */
.page-tabs{
  position:fixed;top:72px;left:0;right:0;z-index:490;
  display:flex;padding:0 3rem;
  background:rgba(245,242,237,0.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(12px);
}
.page-tab{
  padding:0.7rem 1.5rem;background:none;border:none;
  font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  color:var(--muted);cursor:pointer;transition:color 0.3s;
  border-bottom:2px solid transparent;margin-bottom:-1px;
}
.page-tab.active{color:var(--ink);border-bottom-color:var(--gold);}
.page-tab:hover{color:var(--ink);}

/* ── PANELS ── */
.page-panel{display:none;padding-top:112px;}
.page-panel.active{display:block;}

/* ── SHARED ── */
.eyebrow{
  font-size:0.65rem;letter-spacing:0.35em;text-transform:uppercase;
  color:var(--gold);font-weight:600;
  display:flex;align-items:center;gap:0.8rem;margin-bottom:1rem;
}
.eyebrow::before{content:'';width:28px;height:1px;background:var(--gold);}
.display{
  font-family:'Cormorant',serif;
  font-size:clamp(2.8rem,5vw,5.5rem);
  font-weight:300;line-height:1.05;color:var(--ink);
}
.display em{font-style:italic;color:var(--gold);}
.display-xl{
  font-family:'Cormorant',serif;
  font-size:clamp(4rem,9vw,10rem);
  font-weight:300;line-height:0.95;color:var(--ink);
  letter-spacing:-0.02em;
}
.display-xl em{font-style:italic;color:var(--gold);}
.body-text{font-size:0.92rem;color:var(--muted);line-height:1.85;}
.btn-primary{
  display:inline-block;padding:0.9rem 2.2rem;
  background:var(--ink);color:var(--paper);
  font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  text-decoration:none;border:none;cursor:pointer;
  transition:background 0.3s,transform 0.2s;
}
.btn-primary:hover{background:var(--gold);}
.btn-outline{
  display:inline-block;padding:0.9rem 2.2rem;
  border:1px solid var(--ink);color:var(--ink);
  font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  text-decoration:none;background:none;cursor:pointer;
  transition:all 0.3s;
}
.btn-outline:hover{background:var(--ink);color:var(--paper);}
.btn-gold{
  display:inline-block;padding:0.9rem 2.2rem;
  background:var(--gold);color:var(--white);
  font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  text-decoration:none;border:none;cursor:pointer;
  transition:background 0.3s;
}
.btn-gold:hover{background:var(--gold-light);}

/* ── REVEAL ANIMATIONS ── */
.reveal{opacity:0;transform:translateY(40px);transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1),transform 0.9s cubic-bezier(0.16,1,0.3,1);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1),transform 0.9s cubic-bezier(0.16,1,0.3,1);}
.reveal-left.visible{opacity:1;transform:translateX(0);}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity 0.9s cubic-bezier(0.16,1,0.3,1),transform 0.9s cubic-bezier(0.16,1,0.3,1);}
.reveal-right.visible{opacity:1;transform:translateX(0);}

/* ════════════════════════════════════
   MAIN PAGE
════════════════════════════════════ */

/* ── HERO ── */
.hero{
  min-height:calc(100vh - 112px);
  display:grid;grid-template-columns:1fr 1fr;
  position:relative;overflow:hidden;
}
.hero-left{
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:5rem 4rem 5rem 3rem;
  background:var(--navy);
  position:relative;overflow:hidden;
}
.hero-left::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 100%,rgba(184,154,90,0.12),transparent),
    radial-gradient(ellipse 40% 40% at 100% 0%,rgba(184,154,90,0.06),transparent);
}
.hero-number{
  font-family:'Cormorant',serif;
  font-size:clamp(8rem,15vw,18rem);
  font-weight:300;line-height:1;
  color:rgba(255,255,255,0.04);
  position:absolute;top:1rem;right:-1rem;
  letter-spacing:-0.05em;
  pointer-events:none;
}
.hero-eyebrow{
  font-size:0.62rem;letter-spacing:0.35em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:2rem;
  display:flex;align-items:center;gap:0.8rem;position:relative;z-index:1;
}
.hero-eyebrow::before{content:'';width:28px;height:1px;background:var(--gold);}
.hero-title{
  font-family:'Cormorant',serif;
  font-size:clamp(3.5rem,6vw,7rem);
  font-weight:300;line-height:1.0;
  color:rgba(255,255,255,0.95);
  margin-bottom:2rem;position:relative;z-index:1;
}
.hero-title em{font-style:italic;color:var(--gold-light);display:block;}
.hero-desc{
  font-size:0.88rem;color:rgba(255,255,255,0.45);
  line-height:1.85;max-width:360px;
  margin-bottom:2.5rem;position:relative;z-index:1;
}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;position:relative;z-index:1;}
.hero-stats{
  display:flex;gap:0;margin-top:4rem;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:2rem;position:relative;z-index:1;
}
.hero-stat{padding-right:2.5rem;margin-right:2.5rem;border-right:1px solid rgba(255,255,255,0.08);}
.hero-stat:last-child{border-right:none;}
.hero-stat-num{
  font-family:'Cormorant',serif;font-size:2.2rem;font-weight:300;
  color:var(--gold-light);line-height:1;
}
.hero-stat-label{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-top:0.3rem;}
.hero-right{
  display:grid;grid-template-rows:1fr 1fr;
  position:relative;overflow:hidden;
  background:var(--cream);
}
.hero-img-top,.hero-img-bottom{
  position:relative;overflow:hidden;
  background:var(--cream);
}
.hero-img-top{border-bottom:3px solid var(--paper);}
.hero-img-top img,.hero-img-bottom img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.8s cubic-bezier(0.16,1,0.3,1);
filter:brightness(1.08) contrast(1.04);}
.hero-img-top:hover img,.hero-img-bottom:hover img{transform:scale(1.04);}
.hero-placeholder{
  width:100%;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.8rem;
  background:linear-gradient(135deg,#e8e3da,#d8d1c4);
}
.hero-placeholder svg{color:var(--muted);opacity:0.2;}
.hero-placeholder span{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);opacity:0.4;}
.hero-badge{
  position:absolute;bottom:1.5rem;right:1.5rem;
  background:rgba(245,242,237,0.95);
  backdrop-filter:blur(8px);
  padding:0.7rem 1.1rem;
  display:flex;align-items:center;gap:0.5rem;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.hero-badge-dot{width:7px;height:7px;border-radius:50%;background:#4caf50;animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.5}}
.hero-badge span{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--ink);font-weight:600;}

/* ── MARQUEE ── */
.marquee-section{
  background:var(--ink);padding:1rem 0;
  overflow:hidden;border-top:1px solid rgba(255,255,255,0.05);
}
.marquee-track{
  display:flex;gap:0;white-space:nowrap;
  animation:marquee 20s linear infinite;
}
.marquee-item{
  padding:0 3rem;
  font-family:'Cormorant',serif;font-size:1.1rem;font-style:italic;
  color:rgba(255,255,255,0.3);letter-spacing:0.05em;
  display:flex;align-items:center;gap:3rem;
}
.marquee-item::after{content:'·';color:var(--gold);font-style:normal;}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── ABOUT STRIP ── */
.about-strip{
  padding:8rem 3rem;
  display:grid;grid-template-columns:1fr 1fr;gap:8rem;
  align-items:center;max-width:1300px;margin:0 auto;
}
.about-strip-text .display{margin-bottom:2rem;}
.about-strip-text .body-text{max-width:420px;margin-bottom:2.5rem;}
.about-strip-visual{
  display:grid;grid-template-columns:1fr 1fr;gap:2rem;
}
.about-stat-card{
  padding:2rem;background:var(--white);
  border:1px solid var(--border-light);
  transition:transform 0.3s,box-shadow 0.3s;
}
.about-stat-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,0.06);}
.about-stat-card:first-child{grid-column:span 2;background:var(--navy);}
.asc-num{
  font-family:'Cormorant',serif;font-size:3rem;font-weight:300;
  color:var(--gold);line-height:1;margin-bottom:0.5rem;
}
.about-stat-card:first-child .asc-num{color:var(--gold-light);}
.asc-label{font-size:0.68rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);}
.about-stat-card:first-child .asc-label{color:rgba(255,255,255,0.35);}

/* ── SERVICES ── */
.services-section{background:var(--ink);padding:8rem 3rem;}
.services-inner{max-width:1300px;margin:0 auto;}
.services-header{
  display:grid;grid-template-columns:1fr 1fr;
  gap:4rem;align-items:end;margin-bottom:5rem;
}
.services-header .display{color:rgba(255,255,255,0.9);}
.services-header .display em{color:var(--gold-light);}
.services-header .eyebrow{color:var(--gold);}
.services-header .body-text{color:rgba(255,255,255,0.35);}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.05);
}
.service-card{
  background:var(--ink);padding:2.5rem 2rem;
  transition:background 0.3s;position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;
  transition:transform 0.4s ease;
}
.service-card:hover{background:#111;}
.service-card:hover::before{transform:scaleX(1);}
.service-num{
  font-family:'Cormorant',serif;font-size:0.85rem;font-style:italic;
  color:rgba(255,255,255,0.15);margin-bottom:1.5rem;
}
.service-icon{width:32px;height:32px;color:var(--gold);margin-bottom:1.2rem;}
.service-card h3{
  font-family:'Cormorant',serif;font-size:1.4rem;font-weight:400;
  color:rgba(255,255,255,0.9);margin-bottom:0.7rem;
}
.service-card p{font-size:0.82rem;color:rgba(255,255,255,0.3);line-height:1.75;}

/* ── WORK SECTION ── */
.work-section{padding:8rem 0;background:var(--paper);}
.work-inner{max-width:1300px;margin:0 auto;padding:0 3rem;}
.work-header{
  display:grid;grid-template-columns:1fr auto;
  align-items:end;margin-bottom:3rem;gap:2rem;
}
.work-tabs{
  display:flex;border-bottom:1px solid var(--border);
  margin-bottom:4rem;
}
.work-tab{
  padding:0.75rem 1.8rem;background:none;border:none;
  font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  color:var(--muted);cursor:pointer;transition:color 0.3s;
  border-bottom:2px solid transparent;margin-bottom:-1px;
}
.work-tab.active{color:var(--ink);border-bottom-color:var(--gold);}
.work-tab:hover{color:var(--ink);}
.work-panel{display:none;}
.work-panel.active{display:block;}

/* ── VIDEO GRID ── */
.video-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.video-card{background:var(--white);overflow:hidden;transition:transform 0.3s,box-shadow 0.3s;}
.video-card:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,0.08);}
.video-thumb{aspect-ratio:16/9;position:relative;overflow:hidden;cursor:pointer;background:var(--cream);}
.video-thumb img{width:100%;height:100%;object-fit:cover;transition:transform 0.6s ease;}
.video-thumb:hover img{transform:scale(1.04);}
.play-overlay{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:rgba(10,10,10,0.25);transition:background 0.3s;
}
.video-thumb:hover .play-overlay{background:rgba(10,10,10,0.1);}
.play-btn{
  width:56px;height:56px;border-radius:50%;
  background:rgba(184,154,90,0.9);
  display:flex;align-items:center;justify-content:center;
  transition:transform 0.3s,background 0.3s;
}
.video-thumb:hover .play-btn{transform:scale(1.1);background:var(--gold);}
.play-btn svg{margin-left:3px;}
.video-info{padding:1.2rem 1.5rem;}
.video-title{font-size:0.9rem;color:var(--ink);font-weight:500;margin-bottom:0.3rem;}
.video-meta{font-size:0.7rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);}
.video-placeholder{
  aspect-ratio:16/9;
  background:linear-gradient(135deg,var(--cream),#ddd8ce);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.8rem;
}
.video-placeholder svg{color:var(--muted);opacity:0.2;}
.video-placeholder span{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);opacity:0.4;}

/* ── PHOTO GRID ── */
.photo-grid{columns:3;gap:8px;}
.photo-item{break-inside:avoid;margin-bottom:8px;position:relative;overflow:hidden;cursor:pointer;}
.photo-item img{width:100%;display:block;transition:transform 0.6s ease;}
.photo-item:hover img{transform:scale(1.04);}
.photo-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(10,10,10,0.6),transparent 50%);
  opacity:0;transition:opacity 0.3s;
  display:flex;align-items:flex-end;padding:1rem;
}
.photo-item:hover .photo-overlay{opacity:1;}
.photo-label{font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.9);font-weight:600;}
.photo-placeholder{
  aspect-ratio:4/3;
  background:linear-gradient(135deg,var(--cream),#ddd8ce);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.6rem;
}
.photo-placeholder svg{color:var(--muted);opacity:0.2;}
.photo-placeholder span{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);opacity:0.4;}

/* ── CATEGORY SECTION ── */
.category-section{margin-bottom:5rem;}
.category-header{
  display:flex;align-items:baseline;gap:1rem;
  padding-bottom:1rem;margin-bottom:2rem;
  border-bottom:1px solid var(--border);
  position:relative;
}
.category-header::after{
  content:'';position:absolute;bottom:-1px;left:0;width:40px;height:1px;background:var(--gold);
}
.category-title{font-family:'Cormorant',serif;font-size:1.6rem;font-weight:400;color:var(--ink);}
.category-count{font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);font-weight:600;}

/* ── ENQUIRE STRIP ── */
.enquire-strip{
  margin-top:2.5rem;padding:2rem 2.5rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;
  background:var(--white);border-left:3px solid var(--gold);
}
.enquire-strip-text h4{font-family:'Cormorant',serif;font-size:1.3rem;font-weight:400;color:var(--ink);margin-bottom:0.2rem;}
.enquire-strip-text p{font-size:0.8rem;color:var(--muted);}
.btn-enquire{
  padding:0.7rem 1.6rem;border:1px solid var(--ink);color:var(--ink);
  background:none;font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.2em;text-transform:uppercase;font-weight:600;
  cursor:pointer;transition:all 0.3s;white-space:nowrap;
}
.btn-enquire:hover{background:var(--ink);color:var(--paper);}

/* ── CLIENT GALLERY ── */
.gallery-section{background:var(--navy);padding:8rem 3rem;}
.gallery-inner{max-width:700px;margin:0 auto;text-align:center;}
.gallery-inner .eyebrow{justify-content:center;color:var(--gold);}
.gallery-inner .eyebrow::before{background:var(--gold);}
.gallery-inner .display{color:rgba(255,255,255,0.9);margin-bottom:1rem;}
.gallery-inner .display em{color:var(--gold-light);}
.gallery-inner .body-text{color:rgba(255,255,255,0.35);margin-bottom:2.5rem;}
.gallery-input-row{display:flex;gap:0;margin-bottom:0.8rem;}
.gallery-input-row input{
  flex:1;background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);border-right:none;
  color:rgba(255,255,255,0.9);padding:0.85rem 1.2rem;
  font-family:'Syne',sans-serif;font-size:0.85rem;outline:none;
  transition:border-color 0.3s;
}
.gallery-input-row input::placeholder{color:rgba(255,255,255,0.25);}
.gallery-input-row input:focus{border-color:var(--gold);}
.gallery-input-row button{
  padding:0.85rem 1.8rem;background:var(--gold);border:none;
  color:var(--white);font-family:'Syne',sans-serif;
  font-size:0.68rem;letter-spacing:0.18em;text-transform:uppercase;font-weight:600;
  cursor:pointer;transition:background 0.3s;
}
.gallery-input-row button:hover{background:var(--gold-light);}
.gallery-hint{font-size:0.72rem;color:rgba(255,255,255,0.2);letter-spacing:0.05em;}
.gallery-frame{display:none;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);padding:1.5rem;margin-top:1.5rem;text-align:left;}
.gallery-frame.open{display:block;}
.gallery-frame iframe{width:100%;height:560px;border:none;margin-top:1rem;}
.gallery-frame-title{font-family:'Cormorant',serif;font-size:1.2rem;color:rgba(255,255,255,0.7);}

/* ── ABOUT PAGE ── */
.about-section{padding:8rem 3rem;max-width:1300px;margin:0 auto;}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:8rem;align-items:center;}
.about-text .body-text{margin-bottom:1.2rem;}
.about-text .body-text strong{color:var(--ink);font-weight:600;}
.about-stats{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.stat{padding-left:1.5rem;border-left:2px solid var(--gold);}
.stat-num{font-family:'Cormorant',serif;font-size:2.8rem;font-weight:300;color:var(--gold);line-height:1;}
.stat-label{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-top:0.3rem;}

/* ── BOOKING ── */
.booking-section{background:var(--cream);padding:8rem 3rem;}
.booking-inner{max-width:1200px;margin:0 auto;}
.booking-inner .display{margin-bottom:1rem;}
.booking-frame{
  background:var(--white);border:1px solid var(--border);
  overflow:hidden;margin-top:3rem;
  box-shadow:0 20px 60px rgba(0,0,0,0.05);
}
.booking-frame iframe{width:100%;height:820px;border:none;display:block;}

/* ── CONTACT ── */
.contact-section{background:var(--ink);padding:8rem 3rem;}
.contact-inner{max-width:1300px;margin:0 auto;text-align:center;}
.contact-inner .display{color:rgba(255,255,255,0.9);margin-bottom:1rem;}
.contact-inner .display em{color:var(--gold-light);}
.contact-inner .body-text{color:rgba(255,255,255,0.35);margin-bottom:3rem;max-width:480px;margin-left:auto;margin-right:auto;}
.contact-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.contact-section .btn-primary{background:var(--gold);color:var(--white);}
.contact-section .btn-primary:hover{background:var(--gold-light);}
.contact-section .btn-outline{border-color:rgba(255,255,255,0.2);color:rgba(255,255,255,0.5);}
.contact-section .btn-outline:hover{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.8);border-color:rgba(255,255,255,0.3);}

/* ════════════════════════════════════
   PROPERTY PAGE
════════════════════════════════════ */

/* ── PROP HERO ── */
.prop-hero{
  display:grid;grid-template-columns:55% 45%;
  min-height:calc(100vh - 112px);
}
.prop-hero-left{
  background:var(--navy);
  display:flex;flex-direction:column;justify-content:center;
  padding:5rem 4rem 5rem 3rem;position:relative;overflow:hidden;
}
.prop-hero-left::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 0% 100%,rgba(184,154,90,0.1),transparent);
}
.prop-hero-number{
  font-family:'Cormorant',serif;
  font-size:clamp(10rem,18vw,22rem);
  font-weight:300;line-height:1;
  color:rgba(255,255,255,0.03);
  position:absolute;top:-1rem;right:-2rem;
  letter-spacing:-0.05em;pointer-events:none;
}
.prop-hero-tag{
  font-size:0.62rem;letter-spacing:0.35em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:2rem;
  display:flex;align-items:center;gap:0.8rem;position:relative;z-index:1;
}
.prop-hero-tag::before{content:'';width:28px;height:1px;background:var(--gold);}
.prop-hero-left h1{
  font-family:'Cormorant',serif;
  font-size:clamp(3rem,5.5vw,6rem);
  font-weight:300;line-height:1.05;
  color:rgba(255,255,255,0.95);
  margin-bottom:1.5rem;position:relative;z-index:1;
}
.prop-hero-left h1 em{font-style:italic;color:var(--gold-light);display:block;}
.prop-hero-desc{
  font-size:0.88rem;color:rgba(255,255,255,0.4);
  line-height:1.85;max-width:360px;
  margin-bottom:2.5rem;position:relative;z-index:1;
}
.prop-hero-actions{display:flex;gap:1rem;flex-wrap:wrap;position:relative;z-index:1;}
.prop-hero-actions .btn-primary{background:var(--gold);color:var(--white);}
.prop-hero-actions .btn-primary:hover{background:var(--gold-light);}
.prop-hero-actions .btn-outline{border-color:rgba(255,255,255,0.25);color:rgba(255,255,255,0.55);}
.prop-hero-actions .btn-outline:hover{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.8);}
.prop-hero-stats{
  display:flex;gap:0;margin-top:4rem;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:2rem;position:relative;z-index:1;
}
.prop-stat{padding-right:2rem;margin-right:2rem;border-right:1px solid rgba(255,255,255,0.08);}
.prop-stat:last-child{border-right:none;}
.prop-stat-num{font-family:'Cormorant',serif;font-size:2rem;font-weight:300;color:var(--gold-light);line-height:1;}
.prop-stat-label{font-size:0.6rem;letter-spacing:0.18em;text-transform:uppercase;color:rgba(255,255,255,0.25);font-weight:600;margin-top:0.3rem;}
.prop-hero-right{position:relative;overflow:hidden;background:var(--cream);}
.prop-img-grid{display:grid;grid-template-rows:1fr 1fr;height:100%;}
.prop-img-cell{position:relative;overflow:hidden;background:var(--cream);}
.prop-img-cell img{width:100%;height:100%;object-fit:cover;transition:transform 0.8s ease;}
.prop-img-cell:hover img{transform:scale(1.04);}
.prop-img-placeholder{
  width:100%;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.6rem;
  background:linear-gradient(135deg,#e8e3da,#d8d1c4);
}
.prop-img-placeholder svg{color:var(--muted);opacity:0.2;}
.prop-img-placeholder span{font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--muted);opacity:0.35;}
.prop-badge{
  position:absolute;bottom:1.5rem;right:1.5rem;
  background:rgba(245,242,237,0.95);backdrop-filter:blur(8px);
  padding:0.7rem 1.1rem;display:flex;align-items:center;gap:0.5rem;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.prop-badge-dot{width:7px;height:7px;border-radius:50%;background:#4caf50;animation:pulse 2s infinite;}
.prop-badge span{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--ink);font-weight:600;}

/* ── WHY ── */
.why-section{padding:8rem 3rem;background:var(--white);}
.why-inner{max-width:1300px;margin:0 auto;}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
.why-left .display{margin-bottom:1.5rem;}
.why-left .body-text{max-width:360px;}
.why-points{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;}
.why-point{
  padding:2rem;background:var(--paper);
  border-top:2px solid transparent;transition:border-color 0.3s,transform 0.3s;
}
.why-point:hover{border-top-color:var(--gold);transform:translateY(-3px);}
.why-num{
  font-family:'Cormorant',serif;font-size:2.5rem;font-weight:300;
  color:rgba(184,154,90,0.15);line-height:1;margin-bottom:1rem;
}
.why-point h4{font-size:0.85rem;font-weight:600;color:var(--ink);margin-bottom:0.5rem;letter-spacing:0.03em;}
.why-point p{font-size:0.8rem;color:var(--muted);line-height:1.75;}

/* ── PROP PORTFOLIO ── */
.prop-portfolio-section{padding:8rem 0;background:var(--paper);}
.prop-portfolio-inner{max-width:1300px;margin:0 auto;padding:0 3rem;}
.prop-masonry{columns:3;gap:10px;}
.masonry-item{break-inside:avoid;margin-bottom:10px;position:relative;overflow:hidden;cursor:pointer;}
.masonry-item img{width:100%;display:block;transition:transform 0.6s ease;filter:brightness(1.08) contrast(1.04);}
.masonry-item:hover img{transform:scale(1.04);}
.masonry-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(10,10,10,0.7),transparent 50%);
  opacity:0;transition:opacity 0.3s;
  display:flex;align-items:flex-end;padding:1.2rem;
}
.masonry-item:hover .masonry-overlay{opacity:1;}
.masonry-label{font-size:0.68rem;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.9);font-weight:600;}
.masonry-placeholder{
  aspect-ratio:4/3;
  background:linear-gradient(135deg,var(--cream),#ddd8ce);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:0.6rem;
}
.masonry-placeholder svg{color:var(--muted);opacity:0.2;}
.masonry-placeholder span{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);opacity:0.4;}
.prop-portfolio-cta{
  margin-top:3rem;padding:2.5rem;background:var(--navy);
  display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;
}
.prop-portfolio-cta h3{font-family:'Cormorant',serif;font-size:1.6rem;font-weight:300;color:rgba(255,255,255,0.9);margin-bottom:0.4rem;}
.prop-portfolio-cta p{font-size:0.82rem;color:rgba(255,255,255,0.35);}
.prop-portfolio-cta .btn-primary{background:var(--gold);color:var(--white);}
.prop-portfolio-cta .btn-primary:hover{background:var(--gold-light);}

/* ── PACKAGES ── */
.packages-section{background:var(--white);padding:8rem 3rem;}
.packages-inner{max-width:1300px;margin:0 auto;}
.packages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:4rem;}
@media(min-width:900px){.packages-grid{grid-template-columns:repeat(5,1fr);}}

.package-card{
  padding:2.5rem 2rem;border:1px solid var(--border-light);
  background:var(--paper);position:relative;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
}
.package-card:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,0.06);border-color:var(--gold);}
.package-card.featured{background:var(--navy);border-color:transparent;}
.featured-tag{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:var(--gold);padding:0.3rem 1rem;
  font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--white);font-weight:600;white-space:nowrap;
}
.pkg-name{font-family:'Cormorant',serif;font-size:1.5rem;font-weight:400;color:var(--ink);margin-bottom:0.3rem;}
.package-card.featured .pkg-name{color:rgba(255,255,255,0.9);}
.pkg-price{font-size:0.75rem;letter-spacing:0.1em;color:var(--gold);margin-bottom:1.8rem;font-weight:600;}
.pkg-features{list-style:none;margin-bottom:2rem;}
.pkg-features li{
  font-size:0.82rem;color:var(--muted);padding:0.5rem 0;
  border-bottom:1px solid var(--border-light);
  display:flex;align-items:center;gap:0.6rem;line-height:1.4;
}
.package-card.featured .pkg-features li{color:rgba(255,255,255,0.4);border-color:rgba(255,255,255,0.06);}
.pkg-features li::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0;}
.btn-pkg{
  width:100%;padding:0.85rem;background:none;
  border:1px solid var(--ink);color:var(--ink);
  font-family:'Syne',sans-serif;font-size:0.68rem;letter-spacing:0.18em;
  text-transform:uppercase;font-weight:600;cursor:pointer;transition:all 0.3s;
}
.btn-pkg:hover{background:var(--ink);color:var(--paper);}
.package-card.featured .btn-pkg{border-color:var(--gold);background:var(--gold);color:var(--white);}
.package-card.featured .btn-pkg:hover{background:var(--gold-light);border-color:var(--gold-light);}
.packages-note{margin-top:1.5rem;text-align:center;font-size:0.75rem;color:var(--muted);}

/* ── PROCESS ── */
.process-section{padding:8rem 3rem;background:var(--paper);}
.process-inner{max-width:1300px;margin:0 auto;}
.process-steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;margin-top:4rem;position:relative;
}
.process-steps::before{
  content:'';position:absolute;top:28px;left:12.5%;right:12.5%;
  height:1px;background:var(--border);z-index:0;
}
.process-step{text-align:center;padding:0 1.5rem;position:relative;z-index:1;}
.step-circle{
  width:56px;height:56px;border-radius:50%;
  background:var(--white);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.5rem;
  font-family:'Cormorant',serif;font-size:1.3rem;font-weight:300;color:var(--gold);
  transition:all 0.3s;
}
.process-step:hover .step-circle{background:var(--gold);border-color:var(--gold);color:var(--white);}
.step-title{font-size:0.78rem;font-weight:600;color:var(--ink);margin-bottom:0.5rem;letter-spacing:0.05em;}
.step-desc{font-size:0.76rem;color:var(--muted);line-height:1.6;}

/* ── COVERAGE ── */
.coverage-section{background:var(--navy);padding:6rem 3rem;}
.coverage-inner{max-width:1300px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;}
.coverage-text .eyebrow{color:var(--gold);}
.coverage-text .eyebrow::before{background:var(--gold);}
.coverage-text h2{font-family:'Cormorant',serif;font-size:clamp(2rem,3vw,3rem);font-weight:300;color:rgba(255,255,255,0.9);margin-bottom:1.2rem;}
.coverage-text h2 em{font-style:italic;color:var(--gold-light);}
.coverage-text p{font-size:0.86rem;color:rgba(255,255,255,0.35);line-height:1.85;margin-bottom:1.5rem;}
.coverage-areas{display:flex;flex-wrap:wrap;gap:0.5rem;}
.area-tag{
  padding:0.35rem 0.85rem;
  border:1px solid rgba(255,255,255,0.1);
  font-size:0.65rem;letter-spacing:0.12em;text-transform:uppercase;
  color:rgba(255,255,255,0.3);font-weight:600;transition:all 0.3s;cursor:default;
}
.area-tag:hover{border-color:var(--gold);color:var(--gold);}
.coverage-note{
  margin-top:2rem;padding:1.5rem;
  background:rgba(184,154,90,0.08);border-left:2px solid var(--gold);
}
.coverage-note p{font-size:0.82rem;color:rgba(255,255,255,0.35);line-height:1.75;}
.coverage-note strong{color:var(--gold-light);font-weight:400;}
.drone-panel{
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);
  aspect-ratio:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:1rem;padding:3rem;text-align:center;
}
.drone-title{font-family:'Cormorant',serif;font-size:1.3rem;font-style:italic;color:var(--gold);}
.drone-desc{font-size:0.76rem;color:rgba(255,255,255,0.3);line-height:1.75;max-width:220px;}

/* ── PROP CONTACT ── */
.prop-contact-section{background:var(--white);padding:8rem 3rem;}
.prop-contact-inner{max-width:1300px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:8rem;}
.prop-contact-left .display{margin-bottom:1rem;}
.prop-contact-left .body-text{margin-bottom:2rem;}
.contact-detail{display:flex;align-items:center;gap:1rem;margin-bottom:1rem;}
.contact-icon{
  width:40px;height:40px;background:var(--paper);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-icon svg{color:var(--gold);}
.contact-detail-text p{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:0.2rem;}
.contact-detail-text a,.contact-detail-text span{font-size:0.88rem;color:var(--ink);text-decoration:none;}
.contact-detail-text a:hover{color:var(--gold);}

/* ── CONTACT FORM ── */
.contact-form{display:flex;flex-direction:column;gap:1rem;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.form-field label{display:block;font-size:0.62rem;letter-spacing:0.18em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:0.4rem;}
.form-field input,.form-field select,.form-field textarea{
  width:100%;background:var(--paper);border:1px solid var(--border);
  color:var(--ink);padding:0.8rem 1rem;
  font-family:'Syne',sans-serif;font-size:0.85rem;outline:none;
  transition:border-color 0.3s;
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--gold);}
.form-field textarea{resize:vertical;min-height:90px;}
.form-field select option{background:var(--white);color:var(--ink);}
.form-submit-row{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;}
.form-submit{
  padding:0.9rem 2.5rem;background:var(--gold);color:var(--white);
  border:none;font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.18em;text-transform:uppercase;font-weight:600;
  cursor:pointer;transition:background 0.3s;
}
.form-submit:hover{background:var(--gold-light);}
.form-note{font-size:0.72rem;color:var(--muted);font-style:italic;}
.phone-reveal{
  display:none;margin-top:1rem;padding:1rem 1.2rem;
  background:rgba(184,154,90,0.08);border-left:2px solid var(--gold);
}
.phone-reveal p{font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--muted);font-weight:600;margin-bottom:0.3rem;}
.phone-reveal a{font-family:'Cormorant',serif;font-size:1.5rem;font-weight:300;color:var(--gold);text-decoration:none;}
.consent-row{
  display:flex;align-items:flex-start;gap:0.6rem;
  font-size:0.76rem;color:var(--muted);cursor:pointer;
}
.consent-row input{margin-top:3px;accent-color:var(--gold);flex-shrink:0;}
.consent-row a{color:var(--gold);text-decoration:none;}

/* ── FOOTER ── */
footer{
  background:var(--ink);padding:2.5rem 3rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  border-top:1px solid rgba(255,255,255,0.05);
}
.footer-logo{font-family:'Cormorant',serif;font-size:1.2rem;font-weight:300;color:rgba(255,255,255,0.7);}
.footer-logo em{font-style:italic;color:var(--gold);}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap;}
.footer-links a{font-size:0.62rem;letter-spacing:0.15em;text-transform:uppercase;color:rgba(255,255,255,0.25);text-decoration:none;font-weight:600;transition:color 0.2s;}
.footer-links a:hover{color:var(--gold);}
footer p{font-size:0.65rem;color:rgba(255,255,255,0.2);letter-spacing:0.05em;}

/* ── LIGHTBOX ── */
.lightbox{display:none;position:fixed;inset:0;z-index:1000;background:rgba(10,10,10,0.88);align-items:center;justify-content:center;padding:2rem;}
.lightbox.open{display:flex;}
.lightbox img{max-width:75vw;max-height:80vh;object-fit:contain;box-shadow:0 25px 80px rgba(0,0,0,0.9);border-radius:4px;}
.lb-close{position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;color:rgba(255,255,255,0.5);font-size:2rem;cursor:pointer;transition:color 0.2s;line-height:1;}
.lb-close:hover{color:var(--gold);}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);background:none;border:none;color:rgba(255,255,255,0.3);font-size:2.5rem;cursor:pointer;transition:color 0.2s;padding:1rem;}
.lb-nav:hover{color:var(--gold);}
.lb-prev{left:0.5rem;}
.lb-next{right:0.5rem;}

/* ── MODAL ── */
.modal-overlay{display:none;position:fixed;inset:0;z-index:800;background:rgba(10,10,10,0.7);align-items:center;justify-content:center;padding:2rem;backdrop-filter:blur(4px);}
.modal-overlay.open{display:flex;}
.modal-box{
  background:var(--white);padding:3rem;max-width:480px;width:100%;position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,0.2);
}
.modal-close{position:absolute;top:1.2rem;right:1.2rem;background:none;border:none;font-size:1.4rem;cursor:pointer;color:var(--muted);line-height:1;transition:color 0.2s;}
.modal-close:hover{color:var(--ink);}
.modal-type{font-size:0.62rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:0.5rem;}
.modal-box h3{font-family:'Cormorant',serif;font-size:2rem;font-weight:300;color:var(--ink);margin-bottom:1.5rem;}
.modal-submit{
  width:100%;padding:0.9rem;background:var(--gold);color:var(--white);
  border:none;font-family:'Syne',sans-serif;font-size:0.68rem;
  letter-spacing:0.18em;text-transform:uppercase;font-weight:600;
  cursor:pointer;transition:background 0.3s;
}
.modal-submit:hover{background:var(--gold-light);}

/* ── HAMBURGER ── */
.hamburger{
  display:none;flex-direction:column;justify-content:space-between;
  width:28px;height:18px;background:none;border:none;cursor:pointer;
  padding:0;position:relative;z-index:1;
}
.hamburger span{
  display:block;width:100%;height:1.5px;background:var(--ink);
  transition:transform 0.3s,opacity 0.3s;transform-origin:center;
}
.hamburger.open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav{padding:1.2rem 1.5rem;}
  .hamburger{display:flex;}
  #nav-links{
    display:none;position:fixed;top:0;left:0;right:0;bottom:0;
    background:rgba(245,242,237,0.98);backdrop-filter:blur(12px);
    flex-direction:column;align-items:center;justify-content:center;gap:2rem;
    z-index:450;
  }
  #nav-links.open{display:flex;}
  #nav-links li{list-style:none;}
  #nav-links .nav-link{font-size:1.2rem;letter-spacing:0.15em;color:var(--ink);}
  #nav-links .nav-book{font-size:0.9rem;padding:0.8rem 2rem;}
  html{cursor:auto;}
  .cursor,.cursor-follower{display:none;}
  .page-tabs{padding:0 1rem;overflow-x:auto;}
  .page-panel{padding-top:108px;}
  /* Hero */
  .hero,.prop-hero{grid-template-columns:1fr;min-height:auto;}
  .hero-right,.prop-hero-right{display:none;}
  .hero-left{padding:4rem 1.5rem 3rem;min-height:90vh;}
  .prop-hero-left{padding:4rem 1.5rem 3rem;min-height:80vh;}
  .hero-stats{flex-wrap:wrap;gap:1.5rem;}
  .hero-stat{border-right:none;padding-right:0;margin-right:0;border-bottom:1px solid rgba(255,255,255,0.08);padding-bottom:1rem;}
  .hero-stat:last-child{border-bottom:none;}
  /* Marquee */
  .marquee-section{padding:0.8rem 0;}
  /* About */
  .about-strip{grid-template-columns:1fr;gap:3rem;padding:5rem 1.5rem;}
  .about-strip-visual{grid-template-columns:1fr 1fr;}
  .about-stat-card:first-child{grid-column:span 2;}
  /* Services */
  .services-section{padding:5rem 1.5rem;}
  .services-header{grid-template-columns:1fr;gap:2rem;margin-bottom:3rem;}
  .services-grid{grid-template-columns:1fr;}
  /* Work */
  .work-section{padding:5rem 0;}
  .work-inner{padding:0 1.5rem;}
  .work-header{grid-template-columns:1fr;}
  .photo-grid{columns:2;}
  .video-grid{grid-template-columns:1fr;}
  .enquire-strip{flex-direction:column;padding:1.5rem;}
  /* Gallery */
  .gallery-section{padding:5rem 1.5rem;}
  /* Booking */
  .booking-section{padding:5rem 1.5rem;}
  .booking-frame iframe{height:680px;}
  /* Contact */
  .contact-section{padding:5rem 1.5rem;}
  /* Property */
  .why-section{padding:5rem 1.5rem;}
  .why-grid{grid-template-columns:1fr;gap:3rem;}
  .why-points{grid-template-columns:1fr;}
  .prop-portfolio-section{padding:5rem 0;}
  .prop-portfolio-inner{padding:0 1.5rem;}
  .prop-masonry{columns:2;}
  .packages-section{padding:5rem 1.5rem;}
  .packages-grid{grid-template-columns:1fr;}
  .process-section{padding:5rem 1.5rem;}
  .process-steps{grid-template-columns:1fr 1fr;}
  .process-steps::before{display:none;}
  .coverage-section{padding:5rem 1.5rem;}
  .coverage-inner{grid-template-columns:1fr;gap:3rem;}
  .drone-panel{aspect-ratio:auto;padding:2.5rem;}
  .prop-contact-section{padding:5rem 1.5rem;}
  .prop-contact-inner{grid-template-columns:1fr;gap:3rem;}
  .form-row{grid-template-columns:1fr;}
  /* Modal */
  .modal-box{padding:2rem 1.5rem;}
  /* Footer */
  
  .footer-links{justify-content:center;}
}
@media(max-width:480px){
  .hero-title,.prop-hero-left h1{font-size:clamp(2.8rem,10vw,4rem);}
  .display{font-size:clamp(2rem,8vw,3rem);}
  .photo-grid{columns:1;}
  .prop-masonry{columns:1;}
  .about-strip-visual{grid-template-columns:1fr;}
  .about-stat-card:first-child{grid-column:span 1;}
  .process-steps{grid-template-columns:1fr;}
}

/* ── DARK MODE ── */
/* ── HDR SECTION ── */
.hdr-section{background:var(--navy);padding:8rem 3rem;}
.hdr-inner{max-width:1200px;margin:0 auto;}
.hdr-header{margin-bottom:4rem;}
.hdr-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-bottom:4rem;padding:2.5rem 0;border-top:1px solid rgba(255,255,255,0.08);border-bottom:1px solid rgba(255,255,255,0.08);}
.hdr-stat-num{font-family:'Cormorant',serif;font-size:2.8rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:0.4rem;}
.hdr-stat-label{font-size:0.68rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.35);}
.hdr-benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-bottom:3rem;}
.hdr-benefit{padding:1.5rem;border:1px solid rgba(255,255,255,0.07);background:rgba(255,255,255,0.02);}
.hdr-benefit-title{font-size:0.8rem;font-weight:600;color:rgba(255,255,255,0.8);letter-spacing:0.05em;margin-bottom:0.6rem;}
.hdr-benefit-text{font-size:0.78rem;color:rgba(255,255,255,0.35);line-height:1.75;}
.hdr-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:4rem;}
.hdr-step{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);padding:2rem;}
.hdr-step-num{font-family:'Cormorant',serif;font-size:2rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:0.8rem;}
.hdr-step-title{font-size:0.85rem;font-weight:600;color:rgba(255,255,255,0.85);letter-spacing:0.05em;margin-bottom:0.6rem;}
.hdr-step-text{font-size:0.8rem;color:rgba(255,255,255,0.4);line-height:1.75;}
.hdr-ba{display:grid;grid-template-columns:1fr auto 1fr;gap:1.5rem;align-items:center;margin:3rem 0 1rem;}
.hdr-ba-img{position:relative;overflow:hidden;}
.hdr-ba-img img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;}
.hdr-ba-label{position:absolute;bottom:0;left:0;right:0;padding:0.6rem 1rem;font-size:0.68rem;letter-spacing:0.15em;text-transform:uppercase;font-weight:600;}
.hdr-ba-before{background:rgba(0,0,0,0.6);color:rgba(255,255,255,0.7);}
.hdr-ba-after{background:rgba(184,154,90,0.85);color:#0d1f35;}
.hdr-ba-vs{font-family:'Cormorant',serif;font-size:1.4rem;color:var(--gold);font-style:italic;text-align:center;}
.hdr-ba-caption{font-size:0.8rem;color:rgba(255,255,255,0.35);font-style:italic;text-align:center;margin-bottom:2.5rem;line-height:1.7;}
.hdr-note{font-size:0.82rem;color:var(--gold);padding:1rem 1.5rem;border:1px solid rgba(201,168,76,0.3);display:inline-block;line-height:1.7;}
@media(max-width:900px){.hdr-stats{grid-template-columns:repeat(2,1fr);}.hdr-steps{grid-template-columns:1fr;}.hdr-ba{grid-template-columns:1fr;}.hdr-ba-vs{display:none;}.hdr-section{padding:5rem 1.5rem;}}
@media(max-width:600px){.hdr-stats{grid-template-columns:1fr 1fr;}}

[data-theme="dark"]{
  --ink:#e8e4dc;
  --paper:#0e0e0e;
  --cream:#1a1a1a;
  --navy:#0d1f35;
  --gold:#c9a84c;
  --gold-light:#d4b87a;
  --gold-pale:rgba(201,168,76,0.1);
  --white:#1a1a1a;
  --muted:#888880;
  --border:rgba(255,255,255,0.1);
  --border-light:rgba(255,255,255,0.06);
}
[data-theme="dark"] body{background:#0e0e0e;color:#e8e4dc;}
[data-theme="dark"] nav{background:rgba(14,14,14,0.95);border-bottom:1px solid rgba(255,255,255,0.06);}
[data-theme="dark"] .package-card{background:#1a1a1a;border-color:rgba(255,255,255,0.1);}
[data-theme="dark"] .package-card.featured{background:var(--navy);}
[data-theme="dark"] .packages-section{background:#111;}
[data-theme="dark"] .prop-portfolio-section{background:#0e0e0e;}
[data-theme="dark"] .coverage-section{background:#0a1520;}
[data-theme="dark"] .prop-contact-section{background:#111;}
[data-theme="dark"] .contact-form input,[data-theme="dark"] .contact-form select,[data-theme="dark"] .contact-form textarea{background:#1a1a1a;border-color:rgba(255,255,255,0.12);color:#e8e4dc;}
[data-theme="dark"] 
[data-theme="dark"] .masonry-item img{filter:brightness(1.12) contrast(1.04);}
[data-theme="dark"] .hero-img-top img,[data-theme="dark"] .hero-img-bottom img{filter:brightness(1.12) contrast(1.04);}
[data-theme="dark"] .marquee-section{background:#111;}
[data-theme="dark"] .services-section{background:#111;}
[data-theme="dark"] .service-card{background:#1a1a1a;}
[data-theme="dark"] .contact-section{background:#111;}
[data-theme="dark"] .nav-book{background:var(--gold);color:#0e0e0e;}
[data-theme="dark"] .nav-book:hover{background:var(--gold-light);color:#0e0e0e;}
[data-theme="dark"] .btn-primary{background:var(--gold);color:#0e0e0e;}
[data-theme="dark"] .btn-primary:hover{background:var(--gold-light);}
[data-theme="dark"] .btn-outline:hover{background:rgba(255,255,255,0.08);color:var(--ink);}
[data-theme="dark"] .btn-enquire:hover{background:rgba(255,255,255,0.08);color:var(--ink);}
[data-theme="dark"] .btn-pkg:hover{background:rgba(255,255,255,0.1);color:var(--ink);}

/* ── DARK MODE TOGGLE ── */
.dark-toggle{
  background:none;border:1px solid var(--border);
  width:36px;height:36px;border-radius:50%;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  color:var(--gold);transition:border-color 0.3s,background 0.3s;
  flex-shrink:0;margin-left:0.75rem;
}
.dark-toggle:hover{background:var(--gold-pale);border-color:var(--gold);}
.dark-toggle svg{width:16px;height:16px;transition:opacity 0.3s;}
.dark-toggle .icon-moon{display:block;}
.dark-toggle .icon-sun{display:none;}
[data-theme="dark"] .dark-toggle .icon-moon{display:none;}
[data-theme="dark"] .dark-toggle .icon-sun{display:block;}

/* ── ABOUT SECTION ── */
.about-section{background:var(--navy);padding:7rem 3rem;}
.about-inner{max-width:1300px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;}
.about-text .eyebrow{color:var(--gold);}
.about-text .display{color:rgba(255,255,255,0.9);margin-bottom:1.2rem;}
.about-text .display em{color:var(--gold-light);}
.about-text .body-text{color:rgba(255,255,255,0.4);margin-bottom:1rem;}
.about-creds{display:flex;flex-direction:column;gap:0.6rem;margin-top:1.8rem;}
.about-cred{display:flex;align-items:center;gap:0.8rem;font-size:0.8rem;color:rgba(255,255,255,0.35);letter-spacing:0.03em;}
.about-cred::before{content:'';width:4px;height:4px;border-radius:50%;background:var(--gold);flex-shrink:0;}
.about-right{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.07);padding:2.5rem;}
.about-stat{margin-bottom:1.8rem;}
.about-stat-num{font-family:'Cormorant',serif;font-size:3rem;font-weight:300;color:var(--gold);line-height:1;}
.about-stat-label{font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-top:0.3rem;}
.about-stat-divider{width:100%;height:1px;background:rgba(255,255,255,0.06);margin-bottom:1.8rem;}
@media(max-width:768px){.about-inner{grid-template-columns:1fr;gap:3rem;}.about-section{padding:5rem 1.5rem;}}
[data-theme="dark"] .about-section{background:#0a0a0a;}

/* ── FOOTER SOCIALS ── */
.footer-socials{display:flex;gap:1rem;align-items:center;}
.footer-social{width:28px;height:28px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,0.12);border-radius:50%;color:rgba(255,255,255,0.3);transition:border-color 0.2s,color 0.2s;text-decoration:none;}
.footer-social:hover{border-color:var(--gold);color:var(--gold);}
.footer-social svg{width:13px;height:13px;}

/* ══════════ AUTOMOTIVE ══════════ */
.auto-gallery{background:var(--ink);padding:5rem 3rem;}
.auto-grid{column-count:3;column-gap:18px;max-width:1400px;margin:0 auto;}
.auto-item{break-inside:avoid;margin-bottom:18px;position:relative;overflow:hidden;cursor:zoom-in;border:1px solid rgba(255,255,255,0.06);}
.auto-item img{width:100%;height:auto;display:block;transition:transform 0.9s ease;}
.auto-item:hover img{transform:scale(1.04);}
.auto-item figcaption{position:absolute;left:0;bottom:0;width:100%;padding:2rem 1rem 0.9rem;
  background:linear-gradient(to top,rgba(10,10,10,0.85),transparent);opacity:0;transform:translateY(8px);transition:0.35s;}
.auto-item:hover figcaption{opacity:1;transform:none;}
.auto-cap-t{display:block;font-family:'Cormorant',serif;font-style:italic;font-size:1.1rem;color:#fff;}
.auto-cap-l{display:block;font-size:0.6rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--gold-light);margin-top:2px;}
.auto-idx{position:absolute;top:10px;left:12px;z-index:2;font-size:0.6rem;letter-spacing:0.15em;color:rgba(255,255,255,0.5);}
@media(max-width:900px){.auto-grid{column-count:2;} .auto-gallery{padding:3rem 1.25rem;}}
@media(max-width:560px){.auto-grid{column-count:1;}}

/* lightbox caption — extends the existing .lightbox, no override */
.lb-cap{position:absolute;bottom:2.5vh;width:100%;text-align:center;color:var(--gold-light);font-size:0.66rem;letter-spacing:0.2em;text-transform:uppercase;padding:0 1rem;}

/* ══════════ FOOTER ══════════ */
footer{background:#0a0a0a;border-top:1px solid rgba(255,255,255,0.06);display:block;padding:4rem 3rem 2rem;text-align:left;}
.footer-main{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:3rem;max-width:1400px;margin:0 auto 3rem;}
.footer-col{display:flex;flex-direction:column;gap:0.7rem;align-items:flex-start;}
.footer-col h4{font-size:0.66rem;letter-spacing:0.22em;text-transform:uppercase;color:var(--gold);font-weight:500;margin-bottom:0.4rem;}
.footer-col a{color:rgba(255,255,255,0.55);text-decoration:none;font-size:0.86rem;transition:color 0.2s;}
.footer-col a:hover{color:var(--gold-light);}
.footer-tag{color:rgba(255,255,255,0.4);font-size:0.86rem;line-height:1.7;max-width:34ch;margin:0.6rem 0 0.4rem;}
.footer-note{color:rgba(255,255,255,0.35);font-size:0.78rem;line-height:1.6;max-width:30ch;}
.footer-caa{color:var(--gold);opacity:0.75;letter-spacing:0.06em;}
.footer-brand .footer-socials{margin-top:0.8rem;}
.footer-bar{max-width:1400px;margin:0 auto;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,0.06);
  display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;}
.footer-bar p{color:rgba(255,255,255,0.3);font-size:0.76rem;margin:0;}
.footer-links a{color:rgba(255,255,255,0.3);font-size:0.76rem;text-decoration:none;}
.footer-links a:hover{color:var(--gold-light);}
@media(max-width:900px){
  footer{padding:3rem 1.5rem 1.5rem;}
  .footer-main{grid-template-columns:1fr 1fr;gap:2rem;}
  .footer-bar{flex-direction:column;text-align:center;justify-content:center;}
}
@media(max-width:560px){.footer-main{grid-template-columns:1fr;}}
