/* ==========================================================================
   Ismail Visuals — custom theme layer (sits on top of Bootstrap 5.3.8)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root{
  --ivory:#F5F2ED;
  --tint:#EFEAE3;
  --paper:#FFFFFF;
  --ink:#23201D;
  --ink-soft:#4A443D;
  --stone:#8B8177;
  --line:#E3DDD4;
  --dusty:#7E9BAE;          /* pulled from the groom's suit in the gallery */
  --dusty-deep:#5C7C91;

  --f-display:"Cormorant Garamond", Georgia, serif;
  --f-body:"Jost", "Helvetica Neue", Arial, sans-serif;
  --f-script:"Sacramento", cursive;

  --track:.28em;
  --ease:cubic-bezier(.22,.61,.36,1);
  --header-h:88px;
}

/* ---------- 2. Base ---------- */
*{ -webkit-tap-highlight-color:transparent; }

html{ scroll-behavior:smooth; scroll-padding-top:var(--header-h); }

/* Bootstrap's g-5 rows use -24px side margins but .container only pads 12px,
   so wide-gutter rows poke 12px past the viewport. Clipping on BOTH html and
   body is what actually stops the sideways scroll (body alone doesn't).
   `clip` over `hidden` so position:fixed and smooth scrolling still behave. */
html, body{
  overflow-x:hidden;   /* fallback for older browsers */
  overflow-x:clip;
}

body{
  font-family:var(--f-body);
  font-weight:300;
  font-size:15px;
  line-height:1.85;
  color:var(--ink-soft);
  background:var(--ivory);
}

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

a{ color:inherit; text-decoration:none; transition:color .35s var(--ease); }

::selection{ background:var(--dusty); color:#fff; }

:focus-visible{
  outline:2px solid var(--dusty-deep);
  outline-offset:3px;
}

/* Scrollbar */
::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:var(--tint); }
::-webkit-scrollbar-thumb{ background:#C9C0B4; }
::-webkit-scrollbar-thumb:hover{ background:var(--stone); }

/* ---------- 3. Type helpers ---------- */
.display-serif{
  font-family:var(--f-display);
  font-weight:300;
  color:var(--ink);
  line-height:1.12;
  letter-spacing:.005em;
  font-size:clamp(2rem, 4vw, 3.25rem);
  margin:0 0 1.25rem;
}

.lead-serif{
  font-family:var(--f-display);
  font-style:italic;
  font-weight:300;
  font-size:1.35rem;
  line-height:1.55;
  color:var(--ink);
  margin-bottom:1.25rem;
}

.eyebrow{
  display:inline-block;
  font-size:10px;
  font-weight:400;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:var(--stone);
  margin-bottom:1.1rem;
  position:relative;
  padding-left:38px;
}
.eyebrow::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  width:26px; height:1px;
  background:var(--dusty);
}

.script-accent{
  font-family:var(--f-script);
  font-size:1.5em;
  line-height:.7;
  color:var(--dusty-deep);
  font-weight:400;
}

/* ---------- 4. Buttons ---------- */
.btn-line{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 38px;
  border:1px solid rgba(255,255,255,.55);
  background:transparent;
  color:#fff;
  font-size:10px;
  font-weight:400;
  letter-spacing:var(--track);
  text-transform:uppercase;
  position:relative;
  overflow:hidden;
  transition:color .45s var(--ease), border-color .45s var(--ease);
  z-index:0;
}
.btn-line::before{
  content:"";
  position:absolute; inset:0;
  background:#fff;
  transform:scaleX(0);
  transform-origin:right center;
  transition:transform .45s var(--ease);
  z-index:-1;
}
.btn-line:hover{ color:var(--ink); border-color:#fff; }
.btn-line:hover::before{ transform:scaleX(1); transform-origin:left center; }

.btn-line--dark{ border-color:var(--ink); color:var(--ink); }
.btn-line--dark::before{ background:var(--ink); }
.btn-line--dark:hover{ color:#fff; border-color:var(--ink); }

.btn-line--solid{ background:var(--ink); border-color:var(--ink); color:#fff; }
.btn-line--solid::before{ background:var(--dusty-deep); }
.btn-line--solid:hover{ color:#fff; border-color:var(--dusty-deep); }

.btn-ghost{
  font-size:10px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  padding:11px 26px;
  border:1px solid currentColor;
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
/* over the hero the header is white-on-photo … */
.btn-ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }
/* … once it sticks it flips to dark-on-ivory */
.site-header.is-stuck .btn-ghost:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

/* ---------- 5. Preloader ---------- */
.preloader{
  position:fixed; inset:0;
  background:var(--ivory);
  z-index:9999;
  display:grid; place-items:center;
  transition:opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done{ opacity:0; visibility:hidden; }
.preloader__inner{ text-align:center; }
.preloader__mark{
  display:block;
  font-family:var(--f-display);
  font-size:2.6rem;
  letter-spacing:.3em;
  color:var(--ink);
  padding-left:.3em;
  margin-bottom:1.4rem;
}
.preloader__bar{
  display:block;
  width:150px; height:1px;
  background:var(--line);
  overflow:hidden;
}
.preloader__bar i{
  display:block; height:100%; width:0;
  background:var(--dusty-deep);
  animation:load 1.1s var(--ease) forwards;
}
@keyframes load{ to{ width:100%; } }

/* ---------- 6. Header ---------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1030;
  padding:26px 0;
  color:#fff;
  transition:padding .45s var(--ease), background .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}
.site-header.is-stuck{
  padding:14px 0;
  background:rgba(245,242,237,.94);
  backdrop-filter:blur(14px);
  color:var(--ink);
  box-shadow:0 1px 0 var(--line);
}
.site-header.is-hidden{ transform:translateY(-100%); }

.brand{ display:flex; align-items:baseline; gap:.5rem; line-height:1; }
.brand__script{
  font-family:var(--f-script);
  font-size:2rem;
  letter-spacing:.01em;
}
.brand__sub{
  font-size:9px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  opacity:.75;
}

.main-nav ul{ display:flex; gap:2.4rem; margin:0; padding:0; list-style:none; }
.nav-link-x{
  font-size:10px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  position:relative;
  padding-bottom:6px;
  opacity:.9;
}
.nav-link-x::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:currentColor;
  transition:width .4s var(--ease);
}
.nav-link-x:hover::after,
.nav-link-x.active::after{ width:100%; }

.header-ig{ font-size:15px; opacity:.9; }
.header-ig:hover{ color:var(--dusty); }

.burger{
  width:34px; height:22px;
  background:none; border:0; padding:0;
  display:flex; flex-direction:column; justify-content:space-between;
}
.burger span{
  display:block; height:1px; width:100%;
  background:currentColor;
  transition:transform .4s var(--ease);
}
.burger span:nth-child(2){ width:70%; margin-left:auto; }

/* ---------- 7. Mobile nav ---------- */
.mobile-nav{ background:var(--ivory); width:min(88vw, 400px); color:var(--ink); }
.mobile-nav .offcanvas-header{ padding:26px 28px; border-bottom:1px solid var(--line); }
.btn-close-x{
  background:none; border:0;
  font-size:16px; color:var(--ink);
  line-height:1;
}
.mobile-nav__list{ list-style:none; margin:0; padding:32px 28px; }
.mobile-nav__list li{ border-bottom:1px solid var(--line); }
.mobile-nav__list a{
  display:block;
  padding:18px 0;
  font-family:var(--f-display);
  font-size:1.6rem;
  color:var(--ink);
}
.mobile-nav__list a:hover{ color:var(--dusty-deep); padding-left:10px; }
.mobile-nav__foot{
  padding:0 28px;
  display:flex; flex-direction:column; gap:.4rem;
  font-size:11px; letter-spacing:.12em;
  color:var(--stone);
}

/* ---------- 8. Hero ---------- */
.hero{
  position:relative;
  height:100svh;
  min-height:600px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero__slides{ position:absolute; inset:0; }
/* Ken Burns via transition, not keyframes: on the way out the zoom drifts
   back over 8s instead of snapping, so the crossfade stays clean */
.hero__slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:opacity 1.5s var(--ease), transform 8s linear;
}
.hero__slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero__veil{
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(20,17,14,.55) 0%, rgba(20,17,14,.18) 55%, rgba(20,17,14,.4) 100%),
    linear-gradient(to bottom, rgba(20,17,14,.4) 0%, transparent 35%, rgba(20,17,14,.45) 100%);
}

.hero__content{
  position:relative;
  z-index:3;
  width:100%;
  padding:0 clamp(1.5rem, 8vw, 9rem);
  color:#fff;
}
.hero__caption{
  display:none;
}
.hero__caption.is-active{
  display:block;
  animation:capIn 1.1s var(--ease) both;
}
@keyframes capIn{
  from{ opacity:0; transform:translateY(26px); }
  to{ opacity:1; transform:none; }
}
.hero__script{
  display:block;
  font-family:var(--f-script);
  font-size:clamp(2.4rem, 5vw, 4rem);
  line-height:.8;
  margin-left:.1em;
  margin-bottom:-.1em;
  color:rgba(255,255,255,.92);
}
.hero__title{
  font-family:var(--f-display);
  font-weight:300;
  font-size:clamp(2.6rem, 6.6vw, 5.6rem);
  letter-spacing:.14em;
  text-transform:uppercase;
  line-height:1.05;
  margin:0 0 1.2rem;
}
.hero__sub{
  font-family:var(--f-display);
  font-style:italic;
  font-size:clamp(1rem, 1.5vw, 1.3rem);
  max-width:46ch;
  color:rgba(255,255,255,.86);
  margin-bottom:2.4rem;
}
.hero__content .btn-line{ margin-top:.5rem; }

.hero__rail{
  position:absolute;
  left:clamp(1.5rem, 4vw, 3.4rem);
  bottom:clamp(2rem, 6vh, 4rem);
  z-index:4;
  display:flex; flex-direction:column; align-items:center; gap:1rem;
  color:#fff;
  font-size:9px; letter-spacing:.22em;
}
.hero__rail a:hover{ color:var(--dusty); }
.hero__rail-line{ width:1px; height:48px; background:rgba(255,255,255,.4); }

.hero__arrow{
  position:absolute;
  top:50%; transform:translateY(-50%);
  z-index:4;
  width:52px; height:52px;
  border:1px solid rgba(255,255,255,.4);
  border-radius:50%;
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(4px);
  color:#fff;
  display:grid; place-items:center;
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.hero__arrow:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.hero__arrow--prev{ left:clamp(1rem, 3vw, 2.4rem); }
.hero__arrow--next{ right:clamp(1rem, 3vw, 2.4rem); }

.hero__scroll{
  position:absolute;
  left:50%; bottom:26px;
  transform:translateX(-50%);
  z-index:4;
  color:rgba(255,255,255,.8);
  font-size:9px; letter-spacing:.22em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:8px;
}
.hero__scroll i{
  display:block;
  width:1px; height:44px;
  background:linear-gradient(to bottom, rgba(255,255,255,.8), transparent);
  animation:drop 2s var(--ease) infinite;
}
@keyframes drop{
  0%{ transform:scaleY(0); transform-origin:top; }
  45%{ transform:scaleY(1); transform-origin:top; }
  55%{ transform:scaleY(1); transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}

/* ---------- 9. Sections ---------- */
.section{ padding:clamp(72px, 10vw, 140px) 0; }
.section--tint{ background:var(--tint); }
.section--contact{ background:var(--tint); }

.section-head{ text-align:center; max-width:640px; margin:0 auto clamp(48px, 6vw, 76px); }
.section-head .eyebrow{ padding:0 0 14px; }
.section-head .eyebrow::before{
  left:50%;
  top:auto; bottom:0;
  transform:translateX(-50%);
  width:30px;
}
.section-head__note{ color:var(--stone); margin:0; }

/* ---------- 10. Intro ---------- */
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto;
  gap:20px;
}
.intro-grid figure{ margin:0; overflow:hidden; }
.intro-grid img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform 1.2s var(--ease);
}
.intro-grid figure:hover img{ transform:scale(1.06); }
.intro-grid__a{ grid-row:1 / span 2; aspect-ratio:3 / 4.6; }
.intro-grid__b{ aspect-ratio:4 / 3.2; }
.intro-grid__c{ aspect-ratio:4 / 3.2; }

/* ---------- 11. About ---------- */
/* z-index:0 makes this the stacking context, so the offset rule below
   sits behind the photo instead of behind the page background */
.about-frame{ position:relative; z-index:0; }
.about-frame img{ width:100%; aspect-ratio:4 / 5; object-fit:cover; position:relative; }
.about-frame::after{
  content:"";
  position:absolute;
  inset:24px -24px -24px 24px;
  border:1px solid var(--stone);
  z-index:-1;
}
.about-frame__tag{
  position:absolute;
  left:0; bottom:0;
  background:var(--ivory);
  color:var(--ink);
  padding:14px 22px;
  font-size:9px;
  letter-spacing:var(--track);
  text-transform:uppercase;
}

.stat-row{
  display:flex;
  gap:clamp(1.5rem, 4vw, 3rem);
  margin:2.4rem 0;
  padding:1.8rem 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.stat__num{
  display:block;
  font-family:var(--f-display);
  font-size:2.4rem;
  line-height:1;
  color:var(--ink);
}
.stat__label{
  display:block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--stone);
  margin-top:6px;
}

/* ---------- 12. Services ---------- */
.service{ height:100%; }
.service__img{ overflow:hidden; margin-bottom:1.6rem; }
.service__img img{
  width:100%; aspect-ratio:3 / 3.6;
  object-fit:cover;
  transition:transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter:grayscale(.25);
}
.service:hover .service__img img{ transform:scale(1.07); filter:grayscale(0); }
.service__no{
  display:block;
  font-size:9px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:var(--dusty-deep);
  margin-bottom:.6rem;
}
.service h3{
  font-family:var(--f-display);
  font-weight:400;
  font-size:1.6rem;
  color:var(--ink);
  margin-bottom:.7rem;
}
.service p{ margin-bottom:1.1rem; font-size:14px; }

.tick{ list-style:none; margin:0; padding:0; }
.tick li{
  position:relative;
  padding-left:20px;
  font-size:13px;
  letter-spacing:.02em;
  margin-bottom:.35rem;
  color:var(--stone);
}
.tick li::before{
  content:"";
  position:absolute;
  left:0; top:.75em;
  width:8px; height:1px;
  background:var(--dusty);
}

/* ---------- 13. Portfolio ---------- */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.5rem 2rem;
  margin-bottom:clamp(32px, 4vw, 52px);
}
.filter{
  background:none;
  border:0;
  padding:6px 0;
  font-size:10px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:var(--stone);
  position:relative;
  transition:color .35s var(--ease);
}
.filter::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--ink);
  transition:width .4s var(--ease);
}
.filter:hover{ color:var(--ink); }
.filter.is-active{ color:var(--ink); }
.filter.is-active::after{ width:100%; }

.masonry{
  column-count:3;
  column-gap:20px;
}
.tile{
  position:relative;
  break-inside:avoid;
  margin:0 0 20px;
  overflow:hidden;
  cursor:pointer;
  background:var(--tint);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
.tile img{
  width:100%;
  transition:transform 1.3s var(--ease), filter .8s var(--ease);
}
.tile::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(20,17,14,.72), transparent 55%);
  opacity:0;
  transition:opacity .5s var(--ease);
}
.tile:hover img{ transform:scale(1.06); }
.tile:hover::after{ opacity:1; }

.tile figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:2;
  padding:26px;
  color:#fff;
  opacity:0;
  transform:translateY(14px);
  transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.tile:hover figcaption{ opacity:1; transform:none; }
.tile__t{
  display:block;
  font-family:var(--f-display);
  font-size:1.4rem;
  line-height:1.2;
}
.tile__p{
  display:block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  opacity:.75;
  margin-top:5px;
}

.tile.is-hidden{
  display:none;
}
.tile.is-fading{ opacity:0; transform:scale(.97); }

/* ---------- 14. Quote band ---------- */
.quote-band{
  position:relative;
  padding:clamp(90px, 14vw, 190px) 0;
  overflow:hidden;
  text-align:center;
  color:#fff;
}
.quote-band__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center 30%;
  background-attachment:fixed;
}
.quote-band__veil{ position:absolute; inset:0; background:rgba(20,17,14,.6); }
.quote-band .container{ position:relative; z-index:2; }
.quote-band blockquote{ max-width:780px; margin:0 auto; }
.quote-band__script{
  display:block;
  color:rgba(255,255,255,.85);
  font-size:3rem;
  margin-bottom:.4rem;
}
.quote-band p{
  font-family:var(--f-display);
  font-weight:300;
  font-style:italic;
  font-size:clamp(1.5rem, 3.2vw, 2.6rem);
  line-height:1.4;
  margin-bottom:1.6rem;
}
.quote-band cite{
  font-style:normal;
  font-size:9px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  opacity:.8;
}

/* ---------- 15. Process ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:0;
  border-top:1px solid var(--line);
}
.step{
  padding:44px 32px 44px 0;
  border-right:1px solid var(--line);
}
.step:last-child{ border-right:0; padding-right:0; }
.step:not(:first-child){ padding-left:32px; }
.step__no{
  display:block;
  font-family:var(--f-display);
  font-size:2.6rem;
  line-height:1;
  color:var(--line);
  margin-bottom:1rem;
  transition:color .5s var(--ease);
}
.step:hover .step__no{ color:var(--dusty); }
.step h3{
  font-family:var(--f-display);
  font-weight:400;
  font-size:1.4rem;
  color:var(--ink);
  margin-bottom:.6rem;
}
.step p{ font-size:14px; margin:0; }

/* ---------- 16. Pricing ---------- */
.plan{
  background:var(--paper);
  border:1px solid var(--line);
  padding:44px 36px;
  height:100%;
  display:flex;
  flex-direction:column;
  text-align:center;
  position:relative;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plan:hover{ transform:translateY(-8px); box-shadow:0 24px 60px -30px rgba(35,32,29,.35); }
.plan--featured{ border-color:var(--ink); }
.plan__name{
  font-family:var(--f-display);
  font-weight:400;
  font-size:1.5rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:.5rem;
  line-height:1.25;
}
/* Italic serif, not tracked caps — the real "Perfect for …" lists run long
   and caps at .2em tracking turned them into a wall. */
.plan__for{
  font-family:var(--f-display);
  font-style:italic;
  font-size:.98rem;
  line-height:1.5;
  letter-spacing:0;
  text-transform:none;
  color:var(--stone);
  margin-bottom:1.6rem;
}

/* The three "Perfect for" lists are very different lengths (Solo has nine
   entries, Couple has four), so without a floor the prices land at different
   heights. Values are in em = line-count x line-height, measured per
   breakpoint because the column gets narrower as the container steps down.
   Only applies once the cards actually sit side by side. */
@media (min-width:768px){
  .plan__name{ min-height:2.5em; }   /* 2 lines */
  .plan__for{ min-height:12em; }     /* 8 lines at md — columns are narrowest here */
}
@media (min-width:992px){
  .plan__for{ min-height:9em; }      /* 6 lines */
}
@media (min-width:1200px){
  .plan__for{ min-height:6.1em; }    /* 4 lines; Solo's block measures 94.13px, so 6em (94.08px) wouldn't bind */
}
@media (min-width:1400px){
  .plan__name{ min-height:1.25em; }  /* all three names fit on one line here */
}
.plan__from{
  display:block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--stone);
  margin-bottom:.5rem;
}
.plan__price{
  font-family:var(--f-display);
  font-size:3.6rem;
  line-height:1;
  color:var(--ink);
  margin-bottom:1.8rem;
  padding-bottom:1.8rem;
  border-bottom:1px solid var(--line);
}
.plan__cur{ font-size:1.4rem; vertical-align:super; margin-right:2px; color:var(--stone); }
.plan .tick{ text-align:left; margin-bottom:2rem; flex:1; }
.plan__foot{
  text-align:center;
  font-size:13px;
  color:var(--stone);
  margin:3rem 0 0;
}

/* ---------- 17. Testimonials ---------- */
.review-carousel{ max-width:820px; margin:0 auto; padding:0 clamp(0px, 6vw, 70px); }
.review{ text-align:center; padding:0 1rem 62px; }
.review__stars{ color:var(--dusty); letter-spacing:.3em; margin-bottom:1.4rem; font-size:13px; }
.review__text{
  font-family:var(--f-display);
  font-style:italic;
  font-weight:300;
  font-size:clamp(1.2rem, 2.1vw, 1.7rem);
  line-height:1.6;
  color:var(--ink);
  margin-bottom:1.8rem;
}
.review__name{
  display:block;
  font-size:10px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:var(--ink);
}
.review__meta{
  display:block;
  font-size:9px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--stone);
  margin-top:6px;
}

.review-nav{
  position:absolute;
  top:38%; transform:translateY(-50%);
  width:44px; height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  background:transparent;
  color:var(--ink);
  display:grid; place-items:center;
  z-index:3;
  transition:background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.review-nav:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.review-nav--prev{ left:0; }
.review-nav--next{ right:0; }

.review-dots{ position:static; margin:0; justify-content:center; }
.review-dots button{
  width:7px; height:7px;
  border-radius:50%;
  border:1px solid var(--stone) !important;
  background:transparent;
  opacity:1;
  margin:0 6px;
  transition:background .35s var(--ease);
}
.review-dots button.active{ background:var(--ink); border-color:var(--ink) !important; }

/* ---------- 18. Contact ---------- */
.contact-list{ list-style:none; margin:2.2rem 0 0; padding:0; }
.contact-list li{
  display:flex;
  gap:1.2rem;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.contact-list__k{
  flex:0 0 92px;
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--stone);
  padding-top:4px;
}
.contact-list a:hover{ color:var(--dusty-deep); }

.enquiry{
  background:var(--paper);
  padding:clamp(28px, 4vw, 48px);
  border:1px solid var(--line);
}
.field-label{
  display:block;
  font-size:9px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--stone);
  margin-bottom:.6rem;
}
.field-label span{ color:var(--dusty-deep); }
.field{
  width:100%;
  background:transparent;
  border:0;
  border-bottom:1px solid var(--line);
  padding:9px 0;
  font-family:var(--f-body);
  font-size:14px;
  font-weight:300;
  color:var(--ink);
  border-radius:0;
  transition:border-color .35s var(--ease);
}
.field:focus{ outline:none; border-bottom-color:var(--ink); }
.field::placeholder{ color:#BDB4A8; }
textarea.field{ resize:vertical; min-height:110px; }
select.field{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238B8177' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 2px center;
  padding-right:22px;
  cursor:pointer;
}
.field.is-invalid{ border-bottom-color:#B4524A; }
.field-error{
  display:block;
  font-size:11px;
  letter-spacing:.04em;
  color:#B4524A;
  min-height:16px;
  margin-top:5px;
}

.enquiry-sent{
  background:var(--paper);
  border:1px solid var(--line);
  padding:clamp(40px, 6vw, 72px);
  text-align:center;
}
.enquiry-sent i{ font-size:2.4rem; color:var(--dusty-deep); display:block; margin-bottom:1rem; }
.enquiry-sent h3{ font-size:2rem; margin-bottom:.6rem; }
.enquiry-sent p{ margin-bottom:1.8rem; }

/* ---------- 19. Footer ---------- */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,.62);
  padding:clamp(60px, 8vw, 96px) 0 0;
  font-size:13px;
}
.brand--light{ color:#fff; margin-bottom:1.2rem; }
.site-footer__blurb{ max-width:34ch; margin-bottom:1.4rem; }
.site-footer__social{ display:flex; gap:.8rem; }
.site-footer__social a{
  width:38px; height:38px;
  border:1px solid rgba(255,255,255,.2);
  display:grid; place-items:center;
  color:#fff;
  transition:background .35s var(--ease), border-color .35s var(--ease);
}
.site-footer__social a:hover{ background:var(--dusty-deep); border-color:var(--dusty-deep); }

.site-footer h4{
  font-size:9px;
  letter-spacing:var(--track);
  text-transform:uppercase;
  color:#fff;
  margin-bottom:1.4rem;
}
.site-footer ul{ list-style:none; margin:0; padding:0; }
.site-footer ul li{ margin-bottom:.6rem; }
.site-footer ul a:hover{ color:#fff; }

.site-footer__bar{
  margin-top:clamp(48px, 6vw, 72px);
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  justify-content:space-between;
  font-size:11px;
  letter-spacing:.08em;
  color:rgba(255,255,255,.45);
}

/* ---------- 20. To top ---------- */
.to-top{
  position:fixed;
  right:26px; bottom:26px;
  z-index:1020;
  width:46px; height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--paper);
  color:var(--ink);
  display:grid; place-items:center;
  opacity:0; visibility:hidden;
  transform:translateY(12px);
  transition:opacity .4s var(--ease), transform .4s var(--ease), visibility .4s, background .35s var(--ease), color .35s var(--ease);
}
.to-top.is-on{ opacity:1; visibility:visible; transform:none; }
.to-top:hover{ background:var(--ink); color:#fff; }

/* ---------- 21. Lightbox ---------- */
.lightbox{
  position:fixed; inset:0;
  z-index:2000;
  background:rgba(18,16,14,.96);
  display:grid;
  place-items:center;
  padding:5vh 6vw;
  opacity:0;
  transition:opacity .4s var(--ease);
}
.lightbox.is-open{ opacity:1; }
.lightbox__stage{ margin:0; text-align:center; max-height:90vh; }
.lightbox__stage img{
  max-height:78vh;
  max-width:100%;
  width:auto;
  margin:0 auto;
  object-fit:contain;
  animation:lbIn .5s var(--ease);
}
@keyframes lbIn{ from{ opacity:0; transform:scale(.97); } to{ opacity:1; transform:none; } }
.lightbox__stage figcaption{
  margin-top:1.2rem;
  color:rgba(255,255,255,.8);
  display:flex;
  flex-direction:column;
  gap:4px;
}
.lightbox__title{ font-family:var(--f-display); font-size:1.3rem; color:#fff; }
.lightbox__place{ font-size:9px; letter-spacing:.2em; text-transform:uppercase; opacity:.65; }
.lightbox__count{ font-size:9px; letter-spacing:.2em; opacity:.45; margin-top:6px; }

.lightbox__close,
.lightbox__nav{
  position:absolute;
  width:48px; height:48px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  background:transparent;
  color:#fff;
  display:grid; place-items:center;
  transition:background .35s var(--ease), color .35s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover{ background:#fff; color:var(--ink); }
.lightbox__close{ top:24px; right:24px; }
.lightbox__nav{ top:50%; transform:translateY(-50%); }
.lightbox__nav--prev{ left:20px; }
.lightbox__nav--next{ right:20px; }

body.lb-open{ overflow:hidden; }

/* ---------- 22. Reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
  will-change:opacity, transform;
}
.reveal.is-in{ opacity:1; transform:none; }

/* ---------- 23. Responsive ---------- */
/* 2 x 2 grid: right rule on the left column, bottom rule on the top row */
@media (max-width:1199.98px){
  .masonry{ column-count:2; }
  .steps{ grid-template-columns:repeat(2, 1fr); }
  .step{ padding:40px 32px; }
  .step:nth-child(2n+1){ padding-left:0; }
  .step:nth-child(2n){ padding-right:0; border-right:0; }
  .step:nth-child(-n+2){ border-bottom:1px solid var(--line); }
}

@media (max-width:991.98px){
  :root{ --header-h:74px; }
  .about-frame::after{ display:none; }
  .quote-band__bg{ background-attachment:scroll; }
  .hero__rail{ display:none; }
}

@media (max-width:767.98px){
  .masonry{ column-count:1; }
  .steps{ grid-template-columns:1fr; }
  .steps .step{
    padding:32px 0;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .steps .step:last-child{ border-bottom:0; padding-bottom:0; }
  .hero__arrow{ width:42px; height:42px; }
  .hero__title{ letter-spacing:.08em; }
  .stat-row{ gap:1.4rem; }
  .stat__num{ font-size:1.9rem; }
  .intro-grid{ gap:12px; }
  .review-carousel{ padding:0; }
  .review-nav{ display:none; }
  .lightbox{ padding:2vh 3vw; }
  .lightbox__nav--prev{ left:6px; }
  .lightbox__nav--next{ right:6px; }
  .site-footer__bar{ justify-content:center; text-align:center; }
}

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{ opacity:1; transform:none; }
  .hero__slide.is-active{ animation:none; transform:none; }
  .quote-band__bg{ background-attachment:scroll; }
}
