/* ===========================================================
   STREAKS SALON — JLT, Dubai
   Editorial beauty site. Rose / sage / gold brand system.
   =========================================================== */

:root {
  --bg: #FFF7F5;
  --surface: #FFFFFF;
  --surface-2: #FBEEEA;
  --surface-deep: #2F3A35;   /* deep sage panels */
  --text: #2A2426;
  --muted: #786A6D;
  --primary: #B66A7A;        /* rose — decorative / headline accent */
  --primary-deep: #9E4F60;   /* rose — accessible button bg */
  --secondary: #2F3A35;      /* deep sage */
  --accent: #D9B56F;         /* gold */
  --accent-deep: #B9914A;
  --border: #EADDE0;
  --border-2: #E2D3CF;
  --focus: #9E4F60;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 26px;

  --ff-display: "Playfair Display", Georgia, serif;
  --ff-body: "Manrope", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 10px rgba(47, 36, 38, 0.06);
  --shadow-md: 0 18px 44px -22px rgba(47, 36, 38, 0.32);
  --shadow-lg: 0 40px 90px -40px rgba(47, 36, 38, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}
.section-index {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--accent-deep);
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }

/* streak motif — fine vertical lines */
.streaks {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0, transparent 46px,
    rgba(182, 106, 122, 0.10) 46px, rgba(182, 106, 122, 0.10) 47px
  );
  opacity: 0.6;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn-gold { background: var(--accent); color: #3a2e16; box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 247, 245, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -20px rgba(47,36,38,.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; }
.brand-chip {
  width: 46px; height: 46px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-chip img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-family: var(--ff-display); font-size: 21px; font-weight: 600; line-height: 1; }
.brand-sub { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a.navlink {
  font-weight: 600; font-size: 15px; color: var(--text); white-space: nowrap;
  padding: 9px 14px; border-radius: 999px; transition: color .15s, background .15s;
}
.nav a.navlink:hover { color: var(--primary-deep); background: var(--surface-2); }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

.hamburger {
  display: none; width: 48px; height: 48px; border: 1px solid var(--border-2);
  background: var(--surface); border-radius: 12px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); }
.hamburger span::before { top: -6px; } .hamburger span::after { top: 6px; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--bg);
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.6,.05,.1,1);
  display: flex; flex-direction: column; padding: 22px var(--gutter) 40px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.mobile-close { width: 48px; height: 48px; border: 1px solid var(--border-2); background: var(--surface); border-radius: 12px; font-size: 22px; color: var(--text); }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.mobile-links a {
  font-family: var(--ff-display); font-size: 34px; padding: 14px 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 14px;
}
.mobile-links a .mi { font-family: var(--ff-display); font-style: italic; font-size: 15px; color: var(--accent-deep); }
.mobile-menu-cta { margin-top: auto; display: grid; gap: 12px; }
.mobile-menu-cta .btn { justify-content: center; }

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: 124px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero-loc { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.hero-loc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-loc span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--muted); }

.hero h1 { font-size: clamp(40px, 7vw, 76px); letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--muted); margin-top: 22px; max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.stars { display: inline-flex; gap: 2px; color: var(--accent-deep); }
.stars svg { width: 17px; height: 17px; }
.hero-rating b { font-size: 18px; }
.hero-trust .sep { width: 1px; height: 26px; background: var(--border-2); }
.hero-trust .muted { font-size: 14px; color: var(--muted); }
.hero-trust .muted b { color: var(--text); }

/* hero media collage */
.hero-media { position: relative; }
.hero-media .frame-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.5);
}
.hero-media .frame-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .frame-inset {
  position: absolute; bottom: -26px; left: -30px; width: 44%;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md);
  border: 5px solid var(--bg); aspect-ratio: 3/4; background: var(--surface-2);
}
.hero-media .frame-inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .tag {
  position: absolute; top: 20px; right: -14px; background: var(--secondary); color: #fff;
  padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700;
}
.hero-media .tag .g { color: var(--accent); font-family: var(--ff-display); font-size: 20px; line-height: 1; }
.hero-media .tag small { display: block; font-weight: 600; font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; }

/* ===========================================================
   MARQUEE / SERVICE RAIL
   =========================================================== */
.rail { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-2); overflow: hidden; }
.rail-track { display: flex; gap: 0; white-space: nowrap; will-change: transform; animation: marquee 34s linear infinite; }
.rail:hover .rail-track { animation-play-state: paused; }
.rail-track .item { display: inline-flex; align-items: center; gap: 16px; padding: 18px 28px; font-family: var(--ff-display); font-size: 22px; color: var(--secondary); }
.rail-track .item .star { color: var(--accent); font-size: 13px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rail-track { animation: none; } }

/* ===========================================================
   SECTION HEADER
   =========================================================== */
.section-pad { padding: clamp(70px, 10vw, 124px) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.sec-head .left { max-width: 60ch; }
.sec-head .label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(32px, 5vw, 54px); }
.sec-head .left p { color: var(--muted); margin-top: 16px; font-size: 18px; max-width: 48ch; }

/* ===========================================================
   SERVICES
   =========================================================== */
.svc-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 56px; }
.svc-chips .chip {
  border: 1px solid var(--border-2); background: var(--surface); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 14px; color: var(--secondary);
  display: inline-flex; align-items: center; gap: 8px;
}
.svc-chips .chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

.svc-band { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px,4vw,56px); align-items: center; padding: 38px 0; border-top: 1px solid var(--border); }
.svc-band:last-child { border-bottom: 1px solid var(--border); }
.svc-band .media { grid-column: span 5; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.svc-band .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.svc-band:hover .media img { transform: scale(1.05); }
.svc-band .body { grid-column: span 6; }
.svc-band.flip .media { order: 2; }
.svc-band .num { font-family: var(--ff-display); font-style: italic; color: var(--accent-deep); font-size: 16px; }
.svc-band h3 { font-size: clamp(26px, 3.4vw, 38px); margin: 10px 0 14px; }
.svc-band p { color: var(--muted); max-width: 46ch; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.svc-tags span { font-size: 13px; font-weight: 600; color: var(--secondary); background: var(--surface-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }
.svc-note { margin-top: 44px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 15px; }
.svc-note .line { flex: 1; height: 1px; background: var(--border); min-width: 30px; }

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid .g-item {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-md); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm); background: var(--surface-2); cursor: zoom-in;
}
.gallery-grid .g-item img { width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item .cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(to top, rgba(42,36,38,.55), transparent 55%);
  opacity: 0; transition: opacity .3s; color: #fff; font-weight: 600; font-size: 14px;
}
.gallery-grid .g-item:hover .cap, .gallery-grid .g-item:focus-visible .cap { opacity: 1; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(28,22,24,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; display: grid; place-items: center; backdrop-filter: blur(6px); }
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ===========================================================
   ABOUT
   =========================================================== */
.about { background: var(--surface-deep); color: #f3ece6; overflow: hidden; }
.about .eyebrow { color: var(--accent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }
.about h2 { font-size: clamp(30px, 4.4vw, 50px); color: #fff; }
.about p { color: rgba(243,236,230,.78); margin-top: 20px; font-size: 18px; }
.about-stats { display: flex; gap: 38px; margin-top: 36px; flex-wrap: wrap; }
.about-stats .stat b { font-family: var(--ff-display); font-size: 40px; color: var(--accent); display: block; line-height: 1; }
.about-stats .stat span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,236,230,.6); margin-top: 8px; display: block; }
.about-quote { margin-top: 38px; border-left: 2px solid var(--accent); padding-left: 22px; }
.about-quote p { font-family: var(--ff-display); font-style: italic; font-size: 20px; color: #fff; margin: 0; }
.about-quote cite { font-style: normal; font-size: 13px; color: rgba(243,236,230,.6); letter-spacing: .08em; text-transform: uppercase; display: block; margin-top: 12px; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-media .am { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media .am img { width: 100%; height: 100%; object-fit: cover; }
.about-media .am.tall { grid-row: span 2; aspect-ratio: 3/5; }
.about-media .am.short { aspect-ratio: 4/3; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: start; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--surface-2); color: var(--primary-deep); display: grid; place-items: center; }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row .lbl { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-row .val { font-size: 17px; font-weight: 600; margin-top: 3px; }
.info-row .val a:hover { color: var(--primary-deep); }
.info-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

.map-placeholder {
  margin-top: 20px; border-radius: var(--r-md); border: 1px dashed var(--border-2);
  background:
    repeating-linear-gradient(135deg, rgba(182,106,122,.05) 0 12px, transparent 12px 24px),
    var(--surface-2);
  aspect-ratio: 16/7; display: grid; place-items: center; text-align: center; color: var(--muted);
}
.map-placeholder .mp-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map-placeholder svg { width: 28px; height: 28px; color: var(--primary); }
.map-placeholder b { color: var(--text); font-size: 15px; }
.map-placeholder small { font-size: 12.5px; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 26px; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 8px; color: var(--secondary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border-2); border-radius: 12px;
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(182,106,122,.15); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-row { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-row label {
  flex: 1; min-width: 90px; text-align: center; border: 1.5px solid var(--border-2); border-radius: 12px;
  padding: 11px 8px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .15s; color: var(--secondary);
}
.radio-row input { position: absolute; width: 1px; height: 1px; left: 0; top: 0; opacity: 0; pointer-events: none; clip: rect(0 0 0 0); }
.radio-row input:checked + span { color: var(--primary-deep); }
.radio-row label:has(input:checked) { border-color: var(--primary); background: var(--surface-2); }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--surface-2); color: var(--primary-deep); display: grid; place-items: center; }
.form-success .check svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 26px; margin-bottom: 8px; }
.form-success p { color: var(--muted); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--secondary); color: rgba(243,236,230,.8); padding: 70px 0 130px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(243,236,230,.55); }
.footer-about { margin-top: 18px; max-width: 34ch; font-size: 15px; color: rgba(243,236,230,.65); }
.footer h4 { font-family: var(--ff-body); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; padding: 6px 0; font-size: 15px; color: rgba(243,236,230,.75); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(243,236,230,.14); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(243,236,230,.5); }
.footer-bottom a { color: rgba(243,236,230,.7); }
.footer-chip { width: 50px; height: 50px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(243,236,230,.2); }
.footer-chip img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================================
   STICKY MOBILE ACTION BAR
   =========================================================== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  background: rgba(255,247,245,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border); padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 8px 4px; border-radius: 12px; font-size: 12px; font-weight: 700; min-height: 56px;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.mb-call { background: var(--primary-deep); color: #fff; }
.mobile-bar a.mb-enquire { background: var(--secondary); color: #fff; }
.mobile-bar a.mb-dir { background: var(--accent); color: #3a2e16; }

/* ===========================================================
   REVEAL ANIMATION
   =========================================================== */
/* reveals only hide once JS confirms it can animate them back in */
.js-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-ready .reveal { opacity: 1; transform: none; transition: none; } }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1000px) {
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn-text-hide { display: none; }
  .hamburger { display: inline-flex; }
  .header-cta .btn-call-desktop { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .hero-media .frame-inset { width: 38%; left: -14px; bottom: -18px; }
  .svc-band { grid-template-columns: 1fr; gap: 22px; }
  .svc-band .media, .svc-band.flip .media { grid-column: 1; order: 0; aspect-ratio: 16/10; }
  .svc-band .body { grid-column: 1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 104px 0 50px; }
  .gallery-grid { columns: 2; column-gap: 12px; }
  .gallery-grid .g-item { margin-bottom: 12px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .footer { padding-bottom: 120px; }
  .about-stats { gap: 26px; }
  .hero-media .tag { right: 6px; }
}
@media (max-width: 380px) {
  .gallery-grid { columns: 1; }
}
