/* ============================================================
   Fratto Shoots Media Group — luxury dark rebuild
   Editorial, image-forward, champagne gold on near-black.
   Less "SaaS", more high-end agency / photographer.
   ============================================================ */

:root {
  --bg:        #0e0f11;   /* page canvas — near-black */
  --bg-2:      #141618;   /* alternating / tint sections */
  --surface:   #181a1d;   /* raised panels */
  --surface-2: #1f2226;   /* inputs, hovered panels */
  --ink:       #0e0f11;   /* dark text on gold */
  --gold:      #c9a86a;   /* champagne gold — the one accent */
  --gold-soft: #dcc491;
  --gold-deep: #a8884e;
  --cream:     #f2efe8;   /* headings / bright text */
  --text:      #b7b1a6;   /* body copy on dark */
  --muted:     #837d73;   /* secondary / fine print */
  --line:      rgba(242,239,232,.10);   /* hairline on dark */
  --line-2:    rgba(242,239,232,.16);
  --line-gold: rgba(201,168,106,.40);
  --radius:    3px;
  --radius-sm: 2px;
  --maxw:      1320px;
  --gutter:    clamp(22px, 5vw, 64px);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Accessibility helpers ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus { position: fixed; left: 16px; top: 12px; background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 2px; font-weight: 600; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.08; letter-spacing: -.015em; color: var(--cream); }
h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: 1.4rem; font-weight: 500; letter-spacing: -.01em; }

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }
.section-head.center .kicker { justify-content: center; }
.kicker-light { color: var(--gold); }

/* ---------- Buttons (squared, letter-spaced, restrained) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600;
  font-size: .76rem; text-transform: uppercase; letter-spacing: .18em;
  padding: 16px 32px; border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }
.btn-lg { padding: 18px 38px; font-size: .8rem; }
.btn-sm { padding: 12px 22px; font-size: .72rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,15,17,.72);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(14,15,17,.92); }
.header-inner { display: flex; align-items: center; gap: 26px; height: 84px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { height: 32px; width: auto; }

.nav { display: flex; flex-wrap: nowrap; gap: 30px; margin-left: auto; }
.nav a { font-weight: 500; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text); position: relative; padding: 4px 0; white-space: nowrap; transition: color .2s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--cream); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 22px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--cream); font-size: .82rem; letter-spacing: .08em; white-space: nowrap; }
.phone-link span { white-space: nowrap; }
.phone-link:hover { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; min-width: 44px; min-height: 44px; padding: 8px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--cream); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--cream); background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% -10%, rgba(201,168,106,.16), transparent 50%),
    radial-gradient(90% 80% at 8% 110%, rgba(201,168,106,.07), transparent 55%),
    linear-gradient(180deg, #121315 0%, #0c0d0f 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,9,10,.6) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(96px, 16vh, 168px) 0 clamp(96px, 14vh, 150px); max-width: 920px; }
.eyebrow { text-transform: uppercase; letter-spacing: .34em; font-size: .72rem; font-weight: 600; color: var(--gold); margin-bottom: 30px; }
.hero h1 { color: var(--cream); margin-bottom: 30px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--text); max-width: 620px; margin-bottom: 44px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust li { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); position: relative; padding-left: 20px; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; transform: translateY(-50%) rotate(45deg); background: var(--gold); }

/* ---------- Trust / detail strip ---------- */
.trustbar { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 38px 26px; display: flex; flex-direction: column; gap: 8px; text-align: center; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item strong { font-family: var(--font-head); font-weight: 400; font-size: 1.25rem; color: var(--gold); }
.trust-item span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(78px, 12vh, 132px) 0; }
.section-tint { background: var(--bg-2); }
.section-dark { background: var(--bg); }
.section-head { max-width: 720px; margin: 0 auto clamp(48px, 7vw, 80px); }
.section-head.center { text-align: center; }
.section-lead { color: var(--text); font-size: 1.1rem; margin-top: 20px; line-height: 1.7; }

/* ---------- Services (editorial list, hairline framed) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service {
  background: transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 46px 40px 40px; display: flex; flex-direction: column;
  transition: background .35s ease;
}
.service:hover { background: var(--surface); }
.service-icon { display: inline-flex; color: var(--gold); margin-bottom: 26px; }
.service-icon svg { width: 30px; height: 30px; stroke-width: 1.3; }
.service h3 { color: var(--cream); margin-bottom: 12px; }
.service p { color: var(--text); font-size: .98rem; margin-bottom: 24px; }
.service-link { margin-top: auto; font-weight: 600; color: var(--gold); font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; display: inline-flex; align-items: center; gap: 9px; }
.service-link:hover { color: var(--gold-soft); }
.service-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.service:hover .service-link svg { transform: translateX(5px); }

/* ---------- Featured work / portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-grid.work-feature { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 1fr; }
.shot {
  position: relative; aspect-ratio: 4/3; min-height: 240px; overflow: hidden;
  display: flex; align-items: flex-end; border: 1px solid var(--line);
}
.work-feature .shot-lg { grid-row: span 2; aspect-ratio: auto; }
.shot figcaption {
  position: relative; z-index: 1; width: 100%;
  padding: 24px 26px; color: var(--cream); font-family: var(--font-head); font-size: 1.15rem;
  background: linear-gradient(transparent, rgba(8,9,10,.86));
}
.shot figcaption small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-top: 6px; }
.shot::before { content: ""; position: absolute; inset: 0; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.shot:hover::before { transform: scale(1.05); }
.shot::after { content: ""; position: absolute; inset: 0; background: rgba(14,15,17,.18); transition: background .4s ease; }
.shot:hover::after { background: rgba(14,15,17,0); }
.shot-1::before { background: linear-gradient(150deg, #34373a, #121315); }
.shot-2::before { background: linear-gradient(150deg, #6f5c39, #241c11); }
.shot-3::before { background: linear-gradient(150deg, #44484b, #16181a); }
.shot-4::before { background: linear-gradient(150deg, #8a6f42, #2f2615); }
.shot-5::before { background: linear-gradient(150deg, #3a3e41, #131517); }
.shot-6::before { background: linear-gradient(150deg, #5c4d33, #20190f); }
.work-cta { text-align: center; margin-top: 48px; }

/* ---------- Split feature (photo/video) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.split-media { min-height: 400px; position: relative; }
.split-media.media-photo { background: linear-gradient(150deg, #44484b, #121315); }
.split-media.media-video { background: linear-gradient(150deg, #7a6440, #241c11); }
.split-media .split-label { position: absolute; left: 28px; bottom: 24px; color: var(--cream); font-family: var(--font-head); font-style: italic; font-size: 1.5rem; }
.split-copy { background: var(--surface); padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.split-copy h3 { font-size: 1.8rem; color: var(--cream); margin-bottom: 16px; }
.split-copy p { color: var(--text); margin-bottom: 30px; }
.split-copy .btn { align-self: flex-start; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 96px); align-items: center; }
.check-list { list-style: none; margin: 30px 0 38px; display: grid; gap: 0; }
.check-list li { position: relative; padding: 18px 0 18px 38px; border-top: 1px solid var(--line); color: var(--text); }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { content: "\2014"; position: absolute; left: 0; top: 18px; color: var(--gold); font-weight: 400; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg); padding: 38px 30px; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 400; font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* ---------- Process (numbered, editorial) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { padding: 0 clamp(20px, 3vw, 44px); border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; padding-left: 0; }
.step-num { display: block; font-family: var(--font-head); font-weight: 400; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 22px; }
.step h3 { color: var(--cream); margin-bottom: 12px; }
.step p { color: var(--text); font-size: .98rem; }

/* ---------- Pricing ---------- */
.price-card { max-width: 580px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line-gold); padding: clamp(40px, 5vw, 60px); text-align: center; }
.price-card .kicker { justify-content: center; }
.price-card .price { font-family: var(--font-head); font-weight: 400; font-size: 3.6rem; color: var(--cream); line-height: 1; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-card .price-then { color: var(--text); margin: 14px 0 30px; }
.price-card .price-then strong { color: var(--gold); }
.price-list { list-style: none; text-align: left; max-width: 380px; margin: 0 auto 34px; display: grid; gap: 0; }
.price-list li { position: relative; padding: 14px 0 14px 30px; border-top: 1px solid var(--line); color: var(--text); font-size: .96rem; }
.price-list li:last-child { border-bottom: 1px solid var(--line); }
.price-list li::before { content: ""; position: absolute; left: 0; top: 21px; width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); }

/* ---------- Testimonial ---------- */
.testimonial { background: var(--bg-2); text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonial-inner { max-width: 840px; margin: 0 auto; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 8px; margin-bottom: 30px; }
.testimonial blockquote { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.4; color: var(--cream); font-style: italic; margin-bottom: 28px; }
.cite { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg); text-align: center; border-top: 1px solid var(--line); }
.cta-band h2 { margin-bottom: 20px; }
.cta-band p { color: var(--text); max-width: 580px; margin: 0 auto 36px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(44px, 6vw, 84px); align-items: start; }
.contact-copy h2 { margin-bottom: 20px; }
.contact-copy p { color: var(--text); margin-bottom: 16px; max-width: 430px; }
.contact-call { font-size: 1.05rem; }
.contact-call a { color: var(--gold); font-weight: 600; }
.contact-detail { margin-top: 32px; display: grid; gap: 18px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-detail .row { display: flex; align-items: center; gap: 14px; color: var(--text); font-size: .96rem; }
.contact-detail .row svg { width: 20px; height: 20px; color: var(--gold); flex: none; stroke-width: 1.4; }

.quote-form { background: var(--surface); border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px); }
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--cream);
  padding: 13px 16px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--surface-2); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--muted); }
.field select option { color: #111; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: var(--gold); font-weight: 600; }
.form-note.err { color: #e0a3a3; font-weight: 600; }

/* ---------- Sub-page hero ---------- */
.subhero { background: var(--bg); color: var(--cream); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.subhero .hero-bg { z-index: 0; }
.subhero-inner { position: relative; z-index: 2; padding: clamp(76px, 13vh, 130px) 0 clamp(64px, 9vh, 104px); max-width: 800px; }
.subhero .crumbs { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 26px; }
.subhero .crumbs a { color: var(--gold); }
.subhero h1 { margin-bottom: 26px; font-size: clamp(2.4rem, 5.4vw, 4rem); }
.subhero p { color: var(--text); font-size: 1.18rem; max-width: 600px; margin-bottom: 38px; line-height: 1.7; }

/* ---------- Detail cards ---------- */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-card { background: transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 38px; transition: background .35s ease; }
.detail-card:hover { background: var(--surface); }
.detail-card h3 { color: var(--cream); margin-bottom: 14px; }
.detail-card p { color: var(--text); font-size: .98rem; }
.detail-card ul { list-style: none; margin-top: 18px; display: grid; gap: 11px; }
.detail-card li { position: relative; padding-left: 24px; font-size: .95rem; color: var(--text); }
.detail-card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold); }
code { background: var(--surface-2); border: 1px solid var(--line); padding: 2px 7px; border-radius: 3px; font-size: .85em; color: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); color: var(--muted); padding: clamp(56px, 8vw, 88px) 0 30px; border-top: 1px solid var(--line-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: .95rem; max-width: 300px; color: var(--text); }
.footer-col h3 { color: var(--cream); font-family: var(--font-body); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 20px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; font-size: .94rem; color: var(--text); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: .94rem; margin: 8px 0 18px; }
.footer-contact > a:first-of-type { font-size: 1.1rem; font-weight: 600; color: var(--cream); }
.footer-col .btn { display: inline-flex; width: auto; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 28px; border-top: 1px solid var(--line); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-fine { color: var(--muted); }

/* ---------- Floating call button (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.call-fab:hover { background: var(--gold-soft); }

/* ---------- Hero video background ---------- */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.hero.has-video .hero-bg::before { background:
  radial-gradient(120% 90% at 78% -10%, rgba(201,168,106,.12), transparent 55%),
  linear-gradient(180deg, rgba(10,11,12,.62) 0%, rgba(8,9,10,.82) 100%); }
.hero.has-video .hero-bg { background: rgba(10,11,12,.2); }

/* ---------- About / Meet Anthony ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about-portrait { position: relative; border: 1px solid var(--line); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { color: var(--text); margin-bottom: 18px; font-size: 1.06rem; line-height: 1.8; }
.about-copy p.lead { font-family: var(--font-head); font-style: italic; font-size: 1.4rem; color: var(--cream); line-height: 1.5; }

/* ---------- Gallery cover cards (portfolio hub) ---------- */
.gallery-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gcard { position: relative; aspect-ratio: 3/2; overflow: hidden; border: 1px solid var(--line); display: block; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gcard:hover img { transform: scale(1.05); }
.gcard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,10,.1), rgba(8,9,10,.72)); transition: background .4s ease; }
.gcard:hover::after { background: linear-gradient(180deg, rgba(8,9,10,.2), rgba(8,9,10,.8)); }
.gcard-label { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.gcard-label h3 { font-family: var(--font-head); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream); }
.gcard-label span { font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); }
.gcard-label .view { margin-top: 6px; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--cream); opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.gcard:hover .gcard-label .view { opacity: 1; transform: none; }

/* ---------- Masonry gallery ---------- */
.masonry { column-count: 3; column-gap: 14px; }
.masonry button.tile { display: block; width: 100%; padding: 0; margin: 0 0 14px; border: 1px solid var(--line); background: var(--surface); cursor: zoom-in; break-inside: avoid; line-height: 0; transition: border-color .3s ease, opacity .4s ease; }
.masonry button.tile:hover { border-color: var(--line-gold); }
.masonry img { width: 100%; height: auto; display: block; }
.gallery-count { text-align: center; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 40px; }
.gallery-nav { display: flex; flex-wrap: wrap; gap: 10px 8px; justify-content: center; margin-bottom: 54px; }
.gallery-nav a { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); border: 1px solid var(--line-2); padding: 10px 18px; border-radius: 2px; transition: all .25s ease; }
.gallery-nav a:hover { color: var(--gold); border-color: var(--gold); }
.gallery-nav a[aria-current="page"] { color: var(--ink); background: var(--gold); border-color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,9,10,.96); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border: 1px solid var(--line); }
.lb-btn { position: absolute; background: transparent; border: 1px solid var(--line-2); color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: border-color .2s ease, color .2s ease; }
.lb-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .78rem; letter-spacing: .16em; }

/* ---------- Booking calendar (dark luxury theme) ---------- */
.booking {
  --bk-surface: var(--surface); --bk-bg: var(--surface-2); --bk-line: var(--line-2);
  --bk-disabled: #4d5256; --bk-ink: var(--cream); --bk-muted: var(--muted);
  --bk-primary: var(--gold); --bk-primary-dark: var(--gold-soft); --bk-primary-darker: var(--cream);
  --bk-accent-mid: var(--gold); --bk-accent: var(--line-gold); --bk-accent-soft: rgba(201,168,106,.14);
  --bk-today: var(--gold-deep); --bk-error: #e0a3a3;
  --bk-radius: var(--radius); --bk-radius-sm: var(--radius-sm);
  --bk-font-head: var(--font-head); --bk-font-body: var(--font-body);

  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
  background: var(--bk-surface); border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius); padding: 30px; max-width: 920px; margin: 0 auto;
  font-family: var(--bk-font-body); color: var(--bk-ink);
}
.booking-calendar { border-right: 1px solid var(--bk-line); padding-right: 30px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { font-family: var(--bk-font-head); font-size: 1.2rem; color: var(--bk-primary-darker); }
.cal-nav {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--bk-line);
  background: var(--bk-bg); color: var(--bk-primary-dark); font-size: 1.3rem; line-height: 1;
  cursor: pointer; transition: background .15s ease, border-color .15s ease, opacity .15s ease, transform .1s ease;
}
.cal-nav:hover:not(:disabled) { background: var(--bk-accent-soft); border-color: var(--bk-accent); }
.cal-nav:active:not(:disabled) { transform: scale(.94); }
.cal-nav:disabled { opacity: .3; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow span { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bk-muted); padding-bottom: 6px; }
.cal-day {
  aspect-ratio: 1 / 1; border: 1px solid transparent; border-radius: var(--bk-radius-sm);
  background: var(--bk-bg); color: var(--bk-ink); font-family: var(--bk-font-body);
  font-size: .95rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.cal-day:hover:not(:disabled) { background: var(--bk-accent-soft); border-color: var(--bk-accent); }
.cal-day:active:not(:disabled) { transform: scale(.95); }
.cal-day:disabled { color: var(--bk-disabled); background: transparent; cursor: default; }
.cal-day.is-empty { background: transparent; border: 0; cursor: default; }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--bk-today); }
.cal-day.is-selected { background: var(--bk-primary); color: var(--ink); border-color: var(--bk-primary); box-shadow: none; }
.cal-day.is-selected:hover { background: var(--bk-primary-dark); }
.cal-legend { margin-top: 16px; font-size: .78rem; color: var(--bk-muted); letter-spacing: .04em; }
.cal-empty { margin-top: 14px; font-size: .9rem; color: var(--bk-muted); text-align: center; }

.booking-panel { display: flex; flex-direction: column; }
.slots-empty { color: var(--bk-muted); font-size: .98rem; margin: auto 0; text-align: center; }
.slots-empty .empty-ico { display: block; width: 38px; height: 38px; margin: 0 auto 12px; color: var(--bk-accent-mid); }
.slots-date { font-family: var(--bk-font-head); font-size: 1.1rem; color: var(--bk-primary-darker); margin-bottom: 4px; outline: none; }
.slots-hint { font-size: .82rem; color: var(--bk-muted); margin-bottom: 14px; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slots-none { grid-column: 1 / -1; color: var(--bk-muted); font-size: .9rem; text-align: center; padding: 8px 0; }
.slot {
  padding: 12px; border: 1px solid var(--bk-line); border-radius: var(--bk-radius-sm);
  background: var(--bk-bg); color: var(--bk-ink); font-family: var(--bk-font-body);
  font-size: .88rem; font-weight: 600; cursor: pointer; text-align: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.slot:hover { border-color: var(--bk-accent-mid); background: var(--bk-accent-soft); }
.slot:active { transform: scale(.96); }
.slot.is-selected { background: var(--bk-primary); color: var(--ink); border-color: var(--bk-primary); }

.booking-form .field { margin-bottom: 14px; }
.booking-form label { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--bk-muted); margin-bottom: 6px; }
.booking-form input, .booking-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--bk-line); border-radius: var(--bk-radius-sm);
  font-family: var(--bk-font-body); font-size: 1rem; background: var(--bk-bg); color: var(--bk-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.booking-form select option { color: #111; }
.booking-form input:focus, .booking-form select:focus { outline: none; border-color: var(--bk-primary); box-shadow: 0 0 0 1px var(--bk-primary); }
.booking-form .field-err { border-color: var(--bk-error); box-shadow: 0 0 0 1px var(--bk-error); }
.booking-when {
  display: flex; align-items: center; gap: 8px;
  background: var(--bk-accent-soft); border: 1px solid var(--bk-accent); color: var(--bk-primary-darker);
  border-radius: var(--bk-radius-sm); padding: 12px 14px; font-weight: 600; margin-bottom: 16px;
}
.booking-when .when-ico { flex: none; width: 18px; height: 18px; color: var(--bk-primary); }
.booking-reassure { font-size: .82rem; color: var(--bk-muted); margin: -6px 0 16px; }
.booking-back { background: none; border: 0; color: var(--bk-primary); font-family: var(--bk-font-body); font-weight: 600; font-size: .88rem; cursor: pointer; padding: 12px 0 0; text-align: center; }
.booking-back:hover { color: var(--bk-primary-dark); text-decoration: underline; }
.booking .form-note { margin-top: 12px; font-size: .9rem; color: var(--bk-muted); }
.booking .form-note.err { color: var(--bk-error); font-weight: 600; }

.booking-success { text-align: center; padding: 6px 4px; margin: auto 0; }
.success-check { width: 60px; height: 60px; border-radius: 50%; background: var(--bk-primary); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.success-check svg { width: 30px; height: 30px; }
.success-head { font-family: var(--bk-font-head); font-size: 1.35rem; color: var(--bk-primary-darker); margin-bottom: 14px; }
.booking-success .booking-when { display: inline-flex; margin-bottom: 0; }
.success-sub { color: var(--bk-muted); margin: 14px auto 20px; font-size: .94rem; max-width: 36ch; }
.success-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.booking-noscript { background: var(--bk-accent-soft); border: 1px solid var(--bk-accent); border-radius: var(--bk-radius-sm); padding: 16px; text-align: center; color: var(--bk-primary-darker); font-weight: 600; }
.cal-day:focus-visible, .slot:focus-visible, .cal-nav:focus-visible, .booking-back:focus-visible, .booking .btn:focus-visible { outline: 2px solid var(--bk-primary); outline-offset: 2px; }
@media (max-width: 940px) {
  .booking { grid-template-columns: 1fr; gap: 24px; }
  .booking-calendar { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--bk-line); padding-bottom: 24px; }
}
@media (max-width: 560px) {
  .booking { padding: 16px; }
  .cal-day { aspect-ratio: auto; min-height: 46px; }
  .slot { padding: 13px 10px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   Responsive
   ============================================================ */
/* ---- Nav collapses to hamburger before links get cramped ---- */
@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-header.nav-open .header-inner { height: auto; flex-wrap: wrap; padding-bottom: 16px; }
  .site-header.nav-open .nav {
    display: flex; flex-direction: column; gap: 0; order: 3;
    flex-basis: 100%; width: 100%; margin-top: 10px;
    border-top: 1px solid var(--line);
    max-height: calc(100dvh - 150px); overflow-y: auto;
  }
  .site-header.nav-open .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .site-header.nav-open .header-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 12px; order: 4;
    flex-basis: 100%; width: 100%; padding-top: 14px;
  }
  .call-fab { display: inline-flex; }
}

@media (max-width: 960px) {
  .services-grid, .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid.work-feature { grid-template-columns: 1fr 1fr; }
  .work-feature .shot-lg { grid-row: span 1; }
  .why-grid, .contact-inner, .split { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step { border-left: 0; padding-left: 0; padding-top: 36px; border-top: 1px solid var(--line); }
  .step:first-child { padding-top: 0; border-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 460px; }
  .masonry { column-count: 2; }
}

@media (max-width: 720px) {
  .services-grid, .detail-grid, .work-grid, .work-grid.work-feature { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; }
  .gallery-cards { grid-template-columns: 1fr; }
  .masonry { column-count: 2; column-gap: 10px; }
  .masonry button.tile { margin-bottom: 10px; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
}

@media (max-width: 440px) {
  .trustbar-inner { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .why-stats { grid-template-columns: 1fr; }
}
