/* ============================================================
   Collab Hair & Makeup Studio — "Backlit Studio"
   Design system + layout
   ============================================================ */

:root {
  /* Brand palette */
  --bg:        #FBF3F0;   /* soft blush surface */
  --plaster:   #ECE2D4;   /* warm plaster (interiors) */
  --plaster-d: #E2D4C2;
  --surface:   #FFFFFF;
  --text:      #2A2426;
  --muted:     #786A6D;
  --primary:   #B66A7A;   /* rosewood */
  --primary-d: #9E5366;
  --secondary: #2F3A35;   /* deep forest green */
  --green-deep:#1E2620;
  --green-mid: #38463E;
  --accent:    #D9B56F;   /* gold */
  --accent-d:  #C29A4C;
  --accent-l:  #E7CD96;
  --border:    #EADDE0;
  --border-w:  #E4D9CB;   /* warm border */
  --focus:     #C29A4C;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 8px rgba(42,36,38,.06);
  --shadow:    0 18px 50px -22px rgba(42,36,38,.32);
  --shadow-gold: 0 24px 70px -28px rgba(194,154,76,.55);

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

* { box-sizing: border-box; }
* { -webkit-tap-highlight-color: transparent; }

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

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

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

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* Typographic helpers */
.eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow.on-dark { color: var(--accent-l); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
.serif-i { font-style: italic; }

.section-title {
  font-size: clamp(30px, 5vw, 52px);
}
.section-lead {
  color: var(--muted);
  max-width: 52ch;
  font-size: clamp(16px, 2.2vw, 19px);
  margin: 16px 0 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 26px;
  border-radius: 100px;
  font-weight: 700; font-size: 15.5px; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--accent); color: #3a2c10; box-shadow: 0 10px 26px -12px rgba(194,154,76,.7); }
.btn-gold:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn-green { background: var(--secondary); color: #F2EDDF; }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-rose { background: var(--primary); color: #fff; }
.btn-rose:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-w); }
.btn-ghost:hover { border-color: var(--secondary); background: #fff; transform: translateY(-2px); }
.btn-ghost.on-dark { color: #F2EDDF; border-color: rgba(242,237,223,.32); }
.btn-ghost.on-dark:hover { border-color: var(--accent-l); background: rgba(255,255,255,.06); }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: 14.5px; }

/* Rating chip */
.rating-chip {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--border-w);
  padding: 9px 16px 9px 13px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.rating-chip .stars { color: var(--accent-d); letter-spacing: 1px; font-size: 15px; }
.rating-chip b { font-family: var(--ff-body); font-weight: 800; }
.rating-chip .gr { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,243,240,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--border-w); box-shadow: 0 6px 22px -18px rgba(42,36,38,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo-chip {
  width: 46px; height: 46px; border-radius: 13px;
  background: #fff; padding: 4px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid; place-items: center; flex: none;
}
.brand .logo-chip img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.brand .bnames { display: flex; flex-direction: column; line-height: 1; }
.brand .bname { font-family: var(--ff-display); font-weight: 700; font-size: 21px; letter-spacing: .01em; }
.brand .btag { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 4px; }

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  padding: 10px 15px; border-radius: 100px; font-weight: 600; font-size: 15px; color: #4a4044;
  transition: background .18s, color .18s;
}
.nav-desktop a:hover { background: #fff; color: var(--text); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-w); background: #fff; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; transition: .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--bg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.5,0,.2,1);
  display: flex; flex-direction: column; padding: 24px var(--gut) 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link {
  font-family: var(--ff-display); font-size: 30px; font-weight: 600;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a.m-link span.idx { font-family: var(--ff-body); font-size: 13px; color: var(--accent-d); font-weight: 700; }
.mobile-menu .m-actions { margin-top: 28px; display: grid; gap: 12px; }
.mobile-menu .m-contact { margin-top: 28px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.mobile-menu .m-contact a { color: var(--primary); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero::before {
  /* warm backlit glow */
  content: ""; position: absolute; z-index: 0;
  width: 70vw; height: 70vw; max-width: 820px; max-height: 820px;
  right: -14vw; top: -10vw;
  background: radial-gradient(circle, rgba(217,181,111,.42), rgba(217,181,111,0) 62%);
  filter: blur(6px); pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 84px) 0 clamp(48px, 6vw, 92px);
}
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(42px, 7.4vw, 80px); margin: 22px 0 0; }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero-sub { color: var(--muted); font-size: clamp(16px, 2.4vw, 19.5px); margin: 22px 0 0; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 30px; }
.hero-addr { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted); font-weight: 600; max-width: 30ch; }
.hero-addr svg { width: 17px; height: 17px; color: var(--primary); flex: none; }

/* Hero media collage */
.hero-media { position: relative; }
.hero-media .frame-main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-gold); 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-sub {
  position: absolute; bottom: -26px; left: -30px; width: 44%;
  border-radius: 18px; overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow); border: 5px solid var(--bg);
}
.hero-media .frame-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-rating {
  position: absolute; top: 18px; right: -10px; z-index: 3;
  background: var(--secondary); color: #F2EDDF;
  border-radius: 16px; padding: 13px 17px; box-shadow: var(--shadow);
  text-align: center; border: 1px solid rgba(255,255,255,.08);
}
.hero-media .float-rating .num { font-family: var(--ff-display); font-size: 28px; line-height: 1; color: #fff; }
.hero-media .float-rating .stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; margin-top: 5px; }
.hero-media .float-rating .lbl { font-size: 11px; color: rgba(242,237,223,.7); margin-top: 5px; letter-spacing: .04em; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--secondary); color: #ECE6D7;
  position: relative; z-index: 2;
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(236,230,215,.14);
  border-radius: 0;
}
.trust-cell { background: var(--secondary); padding: 30px clamp(16px, 2.5vw, 34px); }
.trust-cell .tnum { font-family: var(--ff-display); font-size: clamp(26px,3.6vw,38px); color: #fff; line-height: 1; }
.trust-cell .tnum .star { color: var(--accent); }
.trust-cell .tlbl { font-size: 13.5px; color: rgba(236,230,215,.72); margin-top: 9px; line-height: 1.4; font-weight: 500; }
.trust-cell .tlbl b { color: var(--accent-l); font-weight: 700; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { max-width: var(--maxw); margin: 0 auto; }
.section-head .row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}

/* ============================================================
   STUDIO RAIL (services)
   ============================================================ */
.rail-controls { display: flex; gap: 10px; }
.rail-controls button {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--border-w); background: #fff; color: var(--text);
  display: grid; place-items: center; transition: .2s;
}
.rail-controls button:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.rail-controls button:disabled { opacity: .3; cursor: default; background: #fff; color: var(--text); border-color: var(--border-w); }
.rail-controls button svg { width: 20px; height: 20px; }

.rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 320px);
  gap: 20px; margin-top: 40px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 0 26px; scroll-padding-left: var(--gut);
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::after { content: ""; flex: 0 0 1px; }

.svc-card {
  scroll-snap-align: start;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card .pic { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .pic img { transform: scale(1.05); }
.svc-card .pic .num {
  position: absolute; top: 13px; left: 13px;
  font-family: var(--ff-display); font-size: 13px; font-weight: 700;
  background: rgba(30,38,32,.78); color: var(--accent-l);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  backdrop-filter: blur(4px);
}
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 23px; }
.svc-card p { color: var(--muted); font-size: 15px; margin: 10px 0 18px; flex: 1; }
.svc-card .ask {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px;
  color: var(--primary); transition: gap .2s;
}
.svc-card:hover .ask { gap: 13px; }
.svc-note { margin-top: 6px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.svc-note svg { width: 15px; height: 15px; color: var(--accent-d); flex: none; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: linear-gradient(180deg, var(--plaster) 0%, #E6DAC9 100%); }
.gfilters { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.gfilters button {
  padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: 14.5px;
  background: rgba(255,255,255,.55); color: #5a4f48; border: 1px solid rgba(120,106,109,.18);
  transition: .18s;
}
.gfilters button:hover { background: #fff; }
.gfilters button.active { background: var(--secondary); color: #F2EDDF; border-color: var(--secondary); }

.masonry { columns: 4 240px; column-gap: 16px; margin-top: 34px; }
.gitem {
  break-inside: avoid; margin-bottom: 16px; border-radius: 16px; overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm); cursor: pointer; background: #d9cdbd;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gitem img { width: 100%; height: auto; transition: transform .5s ease; }
.gitem:hover { box-shadow: var(--shadow); }
.gitem:hover img { transform: scale(1.04); }
.gitem .cap {
  position: absolute; inset: auto 0 0 0; padding: 22px 16px 14px;
  background: linear-gradient(0deg, rgba(30,38,32,.82), transparent);
  color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  opacity: 0; transform: translateY(8px); transition: .25s;
}
.gitem:hover .cap { opacity: 1; transform: none; }
.gitem.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,16,18,.92);
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: #e9e2d6; font-size: 14px; }
.lb-btn {
  position: absolute; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); transition: .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 16px; right: 16px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,72px); align-items: center; }
.about-copy p { color: #4d4347; font-size: clamp(16px,2.2vw,18.5px); margin: 18px 0 0; }
.about-copy p.lead { font-family: var(--ff-display); font-size: clamp(22px,3vw,28px); color: var(--text); line-height: 1.35; font-weight: 500; margin-top: 22px; }
.about-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: #4d4347; }
.about-points li svg { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 1px; }
.about-media { position: relative; }
.about-media .a1 { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.about-media .a1 img { width: 100%; height: 100%; object-fit: cover; }
.about-media .a2 {
  position: absolute; right: -22px; bottom: -28px; width: 46%; aspect-ratio: 1;
  border-radius: 18px; overflow: hidden; border: 6px solid var(--bg); box-shadow: var(--shadow);
}
.about-media .a2 img { width: 100%; height: 100%; object-fit: cover; }
.about-media .glow-badge {
  position: absolute; left: -20px; top: 26px;
  background: var(--bg); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.about-media .glow-badge .t { font-family: var(--ff-display); font-size: 16px; }
.about-media .glow-badge .s { font-size: 12.5px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--green-deep); color: #ECE6D7; position: relative; overflow: hidden; }
.contact-section::before {
  content: ""; position: absolute; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  left: -16vw; bottom: -22vw;
  background: radial-gradient(circle, rgba(217,181,111,.22), transparent 62%); pointer-events: none;
}
.contact-section .eyebrow { color: var(--accent-l); }
.contact-section .section-title { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); margin-top: 46px; align-items: start; position: relative; z-index: 1; }

.contact-console { display: grid; gap: 16px; }
.ci-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.045); border: 1px solid rgba(236,230,215,.12);
  border-radius: 16px; padding: 18px 20px;
}
.ci-row .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(217,181,111,.16); display: grid; place-items: center; flex: none; }
.ci-row .ic svg { width: 20px; height: 20px; color: var(--accent-l); }
.ci-row .k { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(236,230,215,.6); font-weight: 700; }
.ci-row .v { font-size: 17px; margin-top: 4px; color: #fff; font-weight: 600; line-height: 1.45; }
.ci-row .v.phone { font-size: 22px; font-family: var(--ff-display); letter-spacing: .02em; }
.ci-row a.v:hover { color: var(--accent-l); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }

.map-wrap { margin-top: 20px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(236,230,215,.14); position: relative; }
.map-wrap iframe { width: 100%; height: 230px; border: 0; display: block; filter: saturate(.92); }
.map-note { position: absolute; top: 10px; left: 10px; background: rgba(30,38,32,.82); color: #ECE6D7; font-size: 11.5px; padding: 5px 10px; border-radius: 8px; backdrop-filter: blur(4px); letter-spacing: .04em; }

/* Form */
.enquiry {
  background: var(--bg); color: var(--text);
  border-radius: var(--radius-lg); padding: clamp(24px,3.4vw,38px);
  box-shadow: var(--shadow);
}
.enquiry h3 { font-size: 26px; }
.enquiry p.fl { color: var(--muted); font-size: 14.5px; margin: 8px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #5a4f48; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  background: #fff; border: 1.5px solid var(--border-w); border-radius: 12px;
  padding: 13px 15px; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 96px; }
.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,.16); }
.field.err input, .field.err select, .field.err textarea { border-color: #c2536a; }
.field .msg { color: #c2536a; font-size: 12.5px; margin-top: 6px; display: none; font-weight: 600; }
.field.err .msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-row { display: flex; gap: 10px; }
.radio-row label {
  flex: 1; text-align: center; padding: 12px; border: 1.5px solid var(--border-w); border-radius: 12px;
  cursor: pointer; font-weight: 600; font-size: 14.5px; text-transform: none; letter-spacing: 0; color: var(--muted);
  transition: .15s; margin: 0;
}
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row label:has(input:checked) { border-color: var(--primary); background: rgba(182,106,122,.08); color: var(--primary); }
.enquiry .btn { width: 100%; margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(47,58,53,.1); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; color: var(--secondary); }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin-top: 10px; }
.form-disclaim { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary); color: #CFC9BB; padding: clamp(48px,6vw,72px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand .bname { color: #fff; }
.footer-brand .brand .btag { color: rgba(236,230,215,.6); }
.footer-brand p { margin: 20px 0 0; font-size: 14.5px; color: rgba(236,230,215,.62); max-width: 36ch; line-height: 1.65; }
.footer-col h4 { font-family: var(--ff-body); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-l); margin: 0 0 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(236,230,215,.78); font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(236,230,215,.14); padding: 22px 0 30px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: rgba(236,230,215,.5);
}
.footer-bottom a { color: rgba(236,230,215,.66); }

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(251,243,240,.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-w);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 8px;
}
.bottom-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px; border-radius: 13px; font-size: 11.5px; font-weight: 700; color: var(--text);
}
.bottom-bar a svg { width: 21px; height: 21px; }
.bottom-bar a.primary { background: var(--accent); color: #3a2c10; }
.bottom-bar a.secondary { background: var(--secondary); color: #F2EDDF; }
.bottom-bar a.tertiary { background: #fff; border: 1px solid var(--border-w); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .masonry { columns: 3 220px; }
}
@media (max-width: 920px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-media .frame-sub { width: 38%; left: -14px; bottom: -18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .bottom-bar { display: grid; }
  .site-header { /* keep */ }
  .masonry { columns: 2 150px; column-gap: 12px; }
  .gitem { margin-bottom: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}
@media (max-width: 440px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .brand .btag { display: none; }
  .radio-row { flex-direction: column; }
}

/* BytesGlue mobile QA patch */
@media (max-width: 760px){body{overflow-x:hidden!important}.wrap,.container{padding-left:16px!important;padding-right:16px!important;max-width:100%!important}.hero-grid,.split,.visit-grid,.contact-grid{grid-template-columns:1fr!important}.hero h1,h1{font-size:clamp(34px,11vw,48px)!important;line-height:1.02!important}.hero-media,.hero-art,.hero-img,img{max-width:100%!important}.btn{max-width:100%;white-space:normal}}
