/* ===== Regal Nails Summerville ===== */
:root {
  --royal: #3d2259;
  --royal2: #4f2d71;
  --royal3: #64409a;
  --plum: #7a4fa8;
  --lilac: #b79ad4;
  --gold: #c9a227;
  --gold-light: #e3c766;
  --gold-dark: #a8871a;
  --rose: #c2547a;
  --ink: #2a1f38;
  --ink-soft: #675a78;
  --ink-faint: #9a8fa8;
  --ivory: #faf7f2;
  --ivory2: #f3eee6;
  --lav: #f4f0f9;
  --lav2: #eae2f4;
  --lav3: #ddd0ec;
  --white: #ffffff;
  --bg: #faf7f2;
  --bg-dark: #241535;
  --card: #ffffff;
  --border: #e8e0f0;
  --line: #d5c9e2;
  --shadow: 0 12px 34px rgba(61, 34, 89, 0.10);
  --shadow-lg: 0 22px 54px rgba(61, 34, 89, 0.20);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1160px;
  --sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: var(--plum); text-decoration: none; transition: color .15s; }
a:hover { color: var(--royal); }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 26px; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.16; color: var(--royal); font-weight: 700; letter-spacing: -0.01em; }
section { scroll-margin-top: 100px; }

/* Utility */
.eyebrow { font-size: 0.76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; display: inline-block; }
.eyebrow.light { color: var(--gold-light); }

/* Topbar */
.topbar { background: var(--royal); color: var(--lav3); font-size: 0.84rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); font-weight: 700; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 1.42rem; color: var(--royal); display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(140deg, var(--royal3), var(--royal)); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; border: 2px solid var(--gold); }
.brand .b-text { line-height: 1.04; }
.brand .b-text b { color: var(--gold-dark); font-style: italic; }
.brand .b-text small { display: block; font-family: var(--sans); font-size: 0.54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 2px; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); font-size: 0.92rem; padding: 9px 15px; font-weight: 600; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .18s; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-dark); }
.nav-links .cta { background: var(--royal); color: #fff; border-radius: 40px; padding: 10px 24px; margin-left: 8px; }
.nav-links .cta::after { display: none; }
.nav-links .cta:hover { background: var(--plum); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: var(--royal); font-size: 1.7rem; cursor: pointer; }

/* Buttons */
.btn { font-family: var(--sans); font-size: 0.85rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 14px 32px; border-radius: 40px; border: 2px solid transparent; cursor: pointer; display: inline-block; transition: all .16s; text-align: center; }
.btn-royal { background: var(--royal); color: #fff; }
.btn-royal:hover { background: var(--plum); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--royal); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-cream { background: #fff; color: var(--royal); }
.btn-cream:hover { background: var(--lav); color: var(--royal); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--royal); border-color: var(--line); }
.btn-line:hover { background: var(--royal); color: #fff; border-color: var(--royal); }
.btn-line-gold { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn-line-gold:hover { background: var(--gold); color: var(--royal); }
.btn-line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-line-light:hover { background: #fff; color: var(--royal); }
.btn-lg { font-size: 0.94rem; padding: 16px 40px; }
.btn-sm { font-size: 0.74rem; padding: 9px 20px; }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(140deg, var(--lav) 0%, var(--ivory) 55%, var(--lav2) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 44px; padding: 84px 0 92px; }
.hero-text .eyebrow { margin-bottom: 20px; }
.hero-text h1 { font-size: clamp(2.7rem, 6.2vw, 4.8rem); line-height: 1.05; margin-bottom: 22px; }
.hero-text h1 em { font-style: italic; color: var(--gold-dark); }
.hero-text .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 32px; }
.hero-text .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual .disc { width: min(400px, 84vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 38% 32%, #fff, var(--lav2) 70%, var(--lav3)); display: flex; align-items: center; justify-content: center; font-size: 9.5rem; box-shadow: var(--shadow-lg); border: 8px solid #fff; }
.hero-visual .chip { position: absolute; background: #fff; border-radius: 40px; padding: 10px 20px; box-shadow: var(--shadow); font-weight: 700; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; color: var(--royal); }
.hero-visual .chip.c1 { top: 8%; left: -2%; color: var(--gold-dark); }
.hero-visual .chip.c2 { bottom: 14%; right: -3%; color: var(--plum); }
.hero-visual .chip.c3 { bottom: 0; left: 12%; color: var(--rose); }

/* Marquee */
.strip { background: var(--royal); color: var(--lav3); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.strip .track { display: inline-block; animation: marquee 30s linear infinite; }
.strip .track span { margin: 0 24px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.strip .track span.dot { color: var(--gold-light); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Page head */
.page-head { background: linear-gradient(140deg, var(--lav), var(--ivory)); border-bottom: 1px solid var(--border); padding: 64px 0 54px; position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.page-head .breadcrumb { font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.page-head .breadcrumb a { color: var(--plum); }
.page-head h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); max-width: 880px; }
.page-head h1 em { font-style: italic; color: var(--gold-dark); }
.page-head .sub { margin-top: 16px; font-size: 1.14rem; color: var(--ink-soft); max-width: 640px; }

/* Sections */
section.block { padding: 82px 0; }
section.block.lav { background: var(--lav); }
section.block.ivory { background: var(--ivory2); }
section.block.royal { background: var(--royal); color: var(--lav3); }
.block.royal h1, .block.royal h2, .block.royal h3 { color: #fff; }
.block.royal .eyebrow { color: var(--gold-light); }

/* Section head */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); }
.sec-head h2 em { font-style: italic; color: var(--gold-dark); }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }
.block.royal .sec-head p { color: var(--lilac); }
.block.royal .sec-head h2 em { color: var(--gold-light); }

/* Grids */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.svc-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s; display: flex; flex-direction: column; text-align: center; border-bottom: 3px solid var(--gold); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card .s-top { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(140deg, var(--lav2), var(--lav3)); }
.svc-card .body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-size: 1.36rem; margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.svc-card .s-price { margin-top: 14px; font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--gold-dark); }
.svc-card .s-price .fill { background: var(--lav2); border-bottom: 1px dashed var(--gold); border-radius: 3px; padding: 0 6px; }

/* Price list */
.price-list { max-width: 760px; margin: 0 auto; }
.price-cat { margin-bottom: 46px; }
.price-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.price-cat-head h3 { font-size: 1.6rem; color: var(--gold-dark); font-style: italic; white-space: nowrap; }
.price-cat-head .ln { flex: 1; height: 1px; background: var(--line); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 15px 0; border-bottom: 1px dotted var(--line); align-items: baseline; }
.price-row .pr-name { font-family: var(--serif); font-size: 1.18rem; color: var(--royal); }
.price-row .pr-price { font-family: var(--serif); font-style: italic; font-size: 1.14rem; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.price-row .pr-price .fill { background: var(--lav2); border-bottom: 1px dashed var(--gold); border-radius: 3px; padding: 0 6px; }
.price-row .pr-desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.9rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; font-size: 3rem; box-shadow: var(--shadow); transition: transform .16s; cursor: pointer; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(61,34,89,.55)); opacity: 0; transition: opacity .16s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .g-cap { position: absolute; bottom: 10px; left: 12px; right: 12px; color: #fff; font-size: 0.76rem; font-weight: 600; opacity: 0; transition: opacity .16s; z-index: 1; }
.gallery-item:hover .g-cap { opacity: 1; }
.gallery-item.g1 { background: linear-gradient(140deg, #d9c3ec, #7a4fa8); }
.gallery-item.g2 { background: linear-gradient(140deg, #f0dcc0, #c9a227); }
.gallery-item.g3 { background: linear-gradient(140deg, #e8cddc, #c2547a); }
.gallery-item.g4 { background: linear-gradient(140deg, #cfc0e6, #4f2d71); }
.gallery-item.g5 { background: linear-gradient(140deg, #eee0cd, #a8871a); }
.gallery-item.g6 { background: linear-gradient(140deg, #ddc9e8, #64409a); }

/* Gallery filter */
.filter-bar { display: flex; gap: 8px; justify-content: center; margin-bottom: 34px; flex-wrap: wrap; }
.filter-btn { background: var(--card); border: 1px solid var(--border); border-radius: 40px; padding: 10px 24px; font-size: 0.84rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: all .15s; }
.filter-btn:hover { border-color: var(--gold); color: var(--royal); }
.filter-btn.active { background: var(--royal); border-color: var(--royal); color: #fff; }

/* Feature icons */
.feat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feat-ico { text-align: center; }
.feat-ico .ico { width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow); }
.block.royal .feat-ico .ico { background: var(--royal2); }
.feat-ico h3 { font-size: 1.14rem; margin-bottom: 8px; }
.feat-ico p { color: var(--ink-soft); font-size: 0.92rem; }
.block.royal .feat-ico p { color: var(--lilac); }

/* Feature split */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feat .f-visual { border-radius: var(--radius); min-height: 420px; display: flex; align-items: center; justify-content: center; font-size: 8rem; box-shadow: var(--shadow); background: linear-gradient(150deg, var(--lav2), var(--lav3)); color: var(--royal); }
.feat .f-visual.royal { background: linear-gradient(150deg, var(--royal3), var(--royal)); color: var(--gold-light); }
.feat.flip .f-visual { order: 2; }
.feat h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.feat h2 em { font-style: italic; color: var(--gold-dark); }
.feat p { color: var(--ink-soft); margin-bottom: 16px; }
.feat .lede { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--royal); line-height: 1.5; margin-bottom: 18px; }
.dot-list { list-style: none; margin: 8px 0 24px; }
.dot-list li { padding-left: 32px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.dot-list li::before { content: "\2726"; position: absolute; left: 0; top: 0; color: var(--gold); }
.block.royal .feat p { color: var(--lilac); }
.block.royal .feat .lede { color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step .num { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(140deg, var(--gold-light), var(--gold-dark)); color: var(--royal); font-family: var(--serif); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }
.block.royal .step p { color: var(--lilac); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--gold); }
.review .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.review p { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.04rem; margin-bottom: 16px; }
.review .who { font-family: var(--sans); font-weight: 700; font-size: 0.88rem; color: var(--royal); letter-spacing: .04em; }

/* Contact */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-split .c-info { background: var(--royal); color: var(--lav3); padding: 52px 46px; }
.contact-split .c-info h2 { color: #fff; font-size: 2rem; margin-bottom: 16px; }
.contact-split .c-info h2 em { font-style: italic; color: var(--gold-light); }
.contact-split .c-info p { color: var(--lilac); margin-bottom: 26px; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-row .ico { font-size: 1.1rem; width: 44px; height: 44px; flex-shrink: 0; background: rgba(227,199,102,.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.info-row .k { font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.info-row .v { color: #fff; font-size: 1rem; }
.info-row .v .fill { background: rgba(227,199,102,.16); border-bottom: 1px dashed var(--gold-light); border-radius: 3px; padding: 0 6px; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.95rem; color: var(--lilac); }
.hours-list li .fill { background: rgba(227,199,102,.16); border-bottom: 1px dashed var(--gold-light); border-radius: 3px; padding: 0 6px; }
.hours-list li.today { color: var(--gold-light); font-weight: 700; }
.contact-split .c-form { background: var(--card); padding: 52px 46px; }
.form-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--ivory); font-family: var(--sans); font-size: 1rem; color: var(--ink); outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; background: var(--lav2); color: var(--royal); border: 1px solid var(--gold); font-size: 0.94rem; }
.form-msg.ok { display: block; }

/* Map */
.map-box { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg, var(--lav2), var(--lav3)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-soft); box-shadow: var(--shadow); border: 1px dashed var(--line); }
.map-box .pin { font-size: 2.8rem; margin-bottom: 8px; }

/* Prose */
.prose { font-size: 1.05rem; line-height: 1.85; }
.prose p { color: #40354d; margin-bottom: 18px; }
.prose h2 { font-size: 1.8rem; margin: 34px 0 12px; }
.prose h2 em { font-style: italic; color: var(--gold-dark); }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; color: var(--plum); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; color: #40354d; }
.prose li { margin-bottom: 9px; }
.prose .fill { background: var(--lav2); border-bottom: 1px dashed var(--gold); padding: 0 5px; border-radius: 2px; font-weight: 600; }
.prose .note { background: var(--lav); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; font-size: 0.95rem; }

/* CTA band */
.cta-band { padding: 86px 0; text-align: center; background: linear-gradient(140deg, var(--plum), var(--royal)); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: "\1F485"; position: absolute; font-size: 14rem; opacity: .11; top: -10px; left: 5%; }
.cta-band::after { content: "\2728"; position: absolute; font-size: 11rem; opacity: .13; bottom: -20px; right: 6%; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; opacity: .96; font-size: 1.12rem; }

/* Footer */
.site-footer { background: var(--bg-dark); color: #a293b5; padding: 62px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #3d2d50; }
.footer-brand .fb-name { font-family: var(--serif); font-size: 1.44rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb-name .logo { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--royal3), var(--royal)); border: 2px solid var(--gold); }
.footer-brand p { font-size: 0.92rem; max-width: 300px; }
.footer-col h4 { font-family: var(--sans); color: #fff; font-size: 0.88rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #a293b5; font-size: 0.91rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.83rem; color: #736284; }
.footer-bottom a { color: #a293b5; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding: 56px 0 66px; }
  .hero-text .lede { margin-left: auto; margin-right: auto; }
  .hero-text .cta-row { justify-content: center; }
  .hero-visual { margin-top: 16px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feat-icons, .steps { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 740px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 34px; }
  .feat .f-visual, .feat.flip .f-visual { order: 0; min-height: 240px; font-size: 5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 82px; left: 0; right: 0; flex-direction: column; background: var(--ivory); border-bottom: 1px solid var(--border); padding: 14px 26px; gap: 2px; display: none; align-items: stretch; }
  .nav-links.show { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .price-row { grid-template-columns: 1fr; }
}
@media (max-width: 470px) {
  .grid-4, .feat-icons, .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-split .c-info, .contact-split .c-form { padding: 36px 26px; }
  .form-card { padding: 28px 22px; }
}
