/* ============================================
   CASABLANCA BARBIER — Black + Warm Gold + Royal Blue (matches actual shop)
   Palette: Matte Black · Warm Gold · Royal Blue accent · Warm Ivory
   ============================================ */

:root {
  --cedar:      #1a1a1a;
  --cedar-dk:   #0a0a0a;
  --gold:       #f5b342;
  --gold-lt:    #ffd175;
  --cream:      #f7f4ed;
  --cream-dk:   #e8e2d2;
  --onyx:       #000000;
  --onyx-2:     #141414;
  --brick:      #1e4d8b;
  --line:       rgba(245,179,66,.3);
  --shadow-lg:  0 30px 80px -20px rgba(0,0,0,.55);
  --ease:       cubic-bezier(.77,0,.175,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--onyx);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.serif { font-family: 'Playfair Display', Georgia, serif; }
.gold { color: var(--gold); }
.uppercase { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ========== LOADER ========== */
.loader {
  position: fixed; inset: 0;
  background: var(--cedar-dk);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hide { opacity: 0; visibility: hidden; }
.pole {
  width: 44px; height: 120px;
  border-radius: 22px;
  background:
    repeating-linear-gradient(45deg,
      #fff 0 10px, #d62828 10px 20px, #1c4fff 20px 30px);
  animation: poleSpin 1.1s linear infinite;
  box-shadow: 0 0 40px rgba(212,165,116,.35);
}
@keyframes poleSpin {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(6,35,56,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,165,116,.12);
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.nav.scrolled { padding: .6rem 0; background: rgba(11,11,11,.95); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  color: var(--cream);
}
.brand-mark {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--gold);
  position: relative;
  transition: transform .6s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(360deg); }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; letter-spacing: .06em; }
.brand-sub  { font-size: .65rem; letter-spacing: .32em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: flex; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  position: relative;
  padding: .4rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex; align-items: center; gap: 1rem;
}
.lang-toggle {
  display: flex; border: 1px solid var(--gold);
  border-radius: 999px; overflow: hidden;
  font-size: .72rem; letter-spacing: .15em;
}
.lang-toggle button {
  padding: .45rem .85rem;
  color: var(--cream);
  transition: background .3s, color .3s;
}
.lang-toggle button.active {
  background: var(--gold); color: var(--cedar-dk);
  font-weight: 600;
}

.burger {
  display: none;
  width: 28px; height: 20px;
  position: relative;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.8rem;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold); color: var(--cedar-dk);
  box-shadow: 0 10px 30px -8px rgba(212,165,116,.5);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--cedar-dk); }
.btn-dark { background: var(--cedar); color: var(--cream); }
.btn-dark:hover { background: var(--onyx); }
.btn svg { width: 16px; height: 16px; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: var(--cedar-dk);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,35,56,.85) 0%, rgba(11,11,11,.78) 100%),
    url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2000&auto=format&fit=crop') center/cover;
  transform: scale(1.06);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.22'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 9rem 0 5rem;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .8rem;
  margin-bottom: 1.6rem;
  opacity: 0; transform: translateY(20px);
  animation: up .9s .2s var(--ease) forwards;
}
.hero-tag::before, .hero-tag::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .95;
  margin-bottom: 1.8rem;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(100%);
  animation: up 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .3s; }
.hero h1 .line:nth-child(2) span { animation-delay: .5s; color: var(--gold); font-style: italic; }
.hero h1 .line:nth-child(3) span { animation-delay: .7s; }

.hero-desc {
  max-width: 540px;
  font-size: 1.05rem;
  color: rgba(245,236,217,.82);
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: up .9s .9s var(--ease) forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: up .9s 1.1s var(--ease) forwards;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  opacity: 0; animation: up 1s 1.5s var(--ease) forwards;
}
.hero-scroll .line-drop {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drop 1.8s ease-in-out infinite;
}
@keyframes drop {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50%     { transform: scaleY(.4); transform-origin: bottom; }
}

@keyframes up {
  to { transform: translateY(0); opacity: 1; }
}

/* ========== SECTIONS ========== */
section { padding: clamp(4rem, 10vh, 8rem) 0; }
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-kicker {
  display: inline-flex; align-items: center; gap: .8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-kicker::before, .section-kicker::after {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: .8rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

/* ========== ABOUT strip ========== */
.about {
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--cedar);
  color: var(--cream);
  padding: 1.5rem 1.8rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
}
.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; color: var(--gold);
  line-height: 1;
}
.about-badge .lbl {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  margin-top: .25rem;
}
.about p {
  color: #444;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--cedar);
  line-height: 1;
}
.stat .l { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: #666; margin-top: .4rem; }

/* ========== SERVICES ========== */
.services { background: var(--cedar-dk); color: var(--cream); position: relative; }
.services .section-title { color: var(--cream); }
.services .section-sub { color: rgba(245,236,217,.72); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.svc {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,165,116,.18);
  padding: 2.2rem 1.8rem;
  border-radius: 6px;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .5s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(255,255,255,.05); }
.svc:hover::before { width: 100%; }
.svc-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: transform .5s var(--ease), background .4s;
}
.svc:hover .svc-icon { background: var(--gold); color: var(--cedar-dk); transform: rotate(360deg); }
.svc-icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.svc p { color: rgba(245,236,217,.72); font-size: .95rem; margin-bottom: 1.2rem; }
.svc-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1.25rem;
}

/* ========== GALLERY ========== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  grid-auto-rows: 180px;
}
.tile {
  position: relative; overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter .5s;
}
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,35,56,.7), transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.tile:hover img { transform: scale(1.08); }
.tile:hover::after { opacity: 1; }
.tile .tile-tag {
  position: absolute; bottom: 1rem; left: 1rem;
  color: var(--cream);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  transform: translateY(10px); opacity: 0;
  transition: all .4s var(--ease);
  z-index: 2;
}
.tile:hover .tile-tag { transform: translateY(0); opacity: 1; }

.tile-a { grid-column: span 6; grid-row: span 2; }
.tile-b { grid-column: span 3; grid-row: span 1; }
.tile-c { grid-column: span 3; grid-row: span 1; }
.tile-d { grid-column: span 3; grid-row: span 1; }
.tile-e { grid-column: span 3; grid-row: span 1; }
.tile-f { grid-column: span 4; grid-row: span 1; }
.tile-g { grid-column: span 4; grid-row: span 1; }
.tile-h { grid-column: span 4; grid-row: span 1; }

/* ========== REVIEWS ========== */
.reviews {
  background: var(--cedar);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.reviews::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(212,165,116,.05);
  top: -6rem; left: -2rem;
  line-height: 1; pointer-events: none;
}
.reviews .section-title { color: var(--cream); }
.reviews .section-sub { color: rgba(245,236,217,.72); }
.rating-big {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; margin-bottom: 2rem;
}
.rating-big .stars { color: var(--gold); font-size: 1.5rem; letter-spacing: .2em; }
.rating-big .score { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold); line-height: 1; }
.rating-big .meta { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,236,217,.72); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.rev-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,165,116,.2);
  padding: 2rem 1.8rem;
  border-radius: 6px;
  transition: transform .4s var(--ease), border-color .4s;
}
.rev-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.rev-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: .15em; }
.rev-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(245,236,217,.92);
  margin-bottom: 1.5rem;
}
.rev-person { display: flex; align-items: center; gap: .9rem; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--cedar-dk);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.rev-name { font-weight: 600; font-size: .95rem; }
.rev-when { font-size: .75rem; color: rgba(245,236,217,.55); letter-spacing: .1em; }

.reviews-cta { text-align: center; margin-top: 3rem; }

/* ========== CONTACT ========== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: white;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.info-card:hover { transform: translateX(6px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--cedar);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
}
.info-icon svg { width: 20px; height: 20px; }
.info-card h4 { font-size: 1rem; margin-bottom: .3rem; color: var(--cedar-dk); }
.info-card p { color: #555; font-size: .95rem; }
.info-card a:hover { color: var(--cedar); }

.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: .55rem 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hours-list li:last-child { border: none; }
.hours-list .day { color: #444; }
.hours-list .time { color: var(--cedar); font-weight: 600; }
.hours-list li.closed .time { color: var(--brick); }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 450px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 450px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--onyx);
  color: rgba(245,236,217,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h5 {
  color: var(--cream);
  font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 1rem; font-size: .9rem; max-width: 320px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .55rem; font-size: .9rem; }
.footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: .8rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,165,116,.3);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--onyx); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
  color: rgba(245,236,217,.5);
}
.footer-bottom .heart { color: var(--brick); }
.cedar-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem 0;
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-hero {
  padding: 10rem 0 5rem;
  background:
    linear-gradient(rgba(6,35,56,.85), rgba(11,11,11,.9)),
    url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?q=80&w=2000&auto=format&fit=crop') center/cover;
  color: var(--cream);
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero .crumb {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ========== SERVICES PAGE ========== */
.svc-list {
  display: flex; flex-direction: column; gap: 0;
}
.svc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: padding .4s var(--ease);
}
.svc-row:hover { padding-left: 1rem; }
.svc-row-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-style: italic;
  min-width: 70px;
}
.svc-row-info h3 {
  font-size: 1.4rem;
  margin-bottom: .3rem;
}
.svc-row-info p { color: #555; font-size: .95rem; max-width: 520px; }
.svc-row-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cedar);
}

/* ========== FORM ========== */
.form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: #666; margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 4px;
  font: inherit; font-size: .95rem;
  background: var(--cream);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,165,116,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: 80%; max-width: 340px;
    background: var(--cedar-dk);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    border-left: 1px solid rgba(212,165,116,.15);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .burger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { left: auto; right: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .tile-a { grid-column: span 6; grid-row: span 2; }
  .tile-b, .tile-c, .tile-d, .tile-e { grid-column: span 3; }
  .tile-f, .tile-g, .tile-h { grid-column: span 6; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: .5rem; text-align: left; padding: 1.5rem 0; }
  .svc-row-num { font-size: 1.8rem; min-width: auto; }
}
