/* ============ L.P. Mooradian — editorial heritage system ============ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:wght@400;600;700&display=swap');
:root {
  --primary: #1a1611;
  --accent: #b9902f;
  --accent-deep: #8d6b1d;   /* AA-compliant deep gold on light backgrounds */
  --light: #faf8f3;
  --ink: #26221c;
  --muted: #6e675c;
  --line: #e3dccc;
  --radius: 4px;
  --shadow: 0 2px 14px rgba(26, 22, 17, .07);
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { font-family: var(--font); color: var(--ink); background: var(--light); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .logo { font-family: var(--display); font-weight: 600; }

/* typographic rhythm: balanced headings, even paragraph rag */
h1, h2, h3 { text-wrap: balance; }
h2, h3 { letter-spacing: .01em; }
h3 { line-height: 1.35; }
p { text-wrap: pretty; }

/* accessibility: skip link + visible keyboard focus */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #1a1611; padding: 12px 22px; font-weight: 700; z-index: 500; }
.skip-link:focus { left: 12px; top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 2px;
}

/* small-caps eyebrow used everywhere */
.eyebrow { display: block; font-family: var(--font); font-size: .75rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; }
.eyebrow::after { content: ""; display: inline-block; width: 42px; height: 1px; background: var(--accent); margin-left: 14px; vertical-align: middle; }

/* ---------- header ---------- */
.site-header { background: var(--primary); color: #f4efe4; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(185,144,47,.35); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 26px; height: 74px; }
.logo { font-size: 1.28rem; letter-spacing: .3px; display: flex; align-items: center; gap: 12px; font-style: italic; flex: none; }
.logo .mark { width: 34px; height: 34px; flex: none; display: inline-block; }
/* logo art is black; this filter chain renders it in the brand gold (#b9902f) */
.logo-img { height: 62px; width: auto; display: block; filter: invert(45%) sepia(100%) saturate(290%) hue-rotate(4deg) brightness(105%); }

.logo .lockup { display: flex; flex-direction: column; line-height: 1.05; }
.logo .lockup small { font-family: var(--font); font-style: normal; font-size: .6rem; letter-spacing: 3.5px; color: var(--accent); font-weight: 700; }
.nav { display: flex; gap: 22px; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.7px; font-weight: 600; }
/* underline draws in from the left; the transparent border reserves its space */
.nav a { opacity: .8; padding: 12px 0; min-width: 44px; border-bottom: 2px solid transparent; white-space: nowrap;
  background: linear-gradient(var(--accent), var(--accent)) 0 100% / 0 2px no-repeat;
  transition: opacity var(--dur-1) var(--ease), background-size var(--dur-2) var(--ease); }
.nav a:hover, .nav a.active { opacity: 1; background-size: 100% 2px; }
.nav a:focus-visible { opacity: 1; }
.nav-burger { display: none; width: 44px; height: 44px; place-items: center; background: none;
  border: 1px solid rgba(185,144,47,.5); border-radius: var(--radius); color: var(--accent);
  font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0;
  transition: background-color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease); }
.nav-burger:hover { border-color: var(--accent); background: rgba(185,144,47,.14); }
.nav-burger:active { transform: scale(.94); }
@media (max-width: 940px) {
  .nav-burger { display: grid; }
  .site-header .container { height: 66px; }
  .logo-img { height: 48px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 4px;
    background: rgba(26,22,17,.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(185,144,47,.3); padding: 10px 24px 20px; box-shadow: 0 14px 30px rgba(0,0,0,.25); z-index: 60; }
  body.nav-open .nav { display: flex; }
  .site-header { position: sticky; }
  .site-header .container { position: relative; }
  .header-cta { padding: 13px 14px; font-size: .72rem; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(185,144,47,.16); }
  .nav a:last-child { border-bottom-color: transparent; }
}
@media (max-width: 640px) {
  .header-cta { display: none; }   /* estimate CTA lives in the menu + hero on small screens */
  .site-header .container { height: 62px; gap: 14px; }
  .logo-img { height: 44px; }
  .logo { font-size: 1.05rem; }
  .logo .mark { width: 26px; height: 26px; }
  .logo { padding: 3px 0; }
  .nav-burger { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ---------- buttons: rectangular, letterspaced ---------- */
.btn, .header-cta { display: inline-block; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; border: 0; cursor: pointer; font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font);
  transition: background-color var(--dur-1) var(--ease), background-size var(--dur-2) var(--ease), color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease), transform var(--dur-1) var(--ease); }
.btn:active, .header-cta:active { transform: translateY(1px); }
/* estimate CTA fills with a left-to-right gold sweep */
.header-cta { padding: 13px 20px; color: #f4efe4; border: 1px solid var(--accent);
  background: linear-gradient(var(--accent), var(--accent)) 0 50% / 0 100% no-repeat; }
.header-cta:hover { background-size: 100% 100%; color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: #d0a53c; box-shadow: 0 6px 20px rgba(185,144,47,.28); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--primary); color: #f4efe4; }
.btn-dark:hover { background: #33291c; }

/* ---------- hero: herringbone texture + editorial asymmetry ---------- */
/* brand watermark — the official logo as a gradient gold foil, laid into the
   hero photography as one architectural background piece */
.hero-mark { position: absolute; left: 53%; top: 50%; transform: translate(-50%, -50%);
  width: min(86vw, 1280px); aspect-ratio: 1480/736;
  background: url('../img/logo-foil.webp') center/contain no-repeat;
  opacity: .14; z-index: 1; pointer-events: none; }
@media (max-width: 900px) { .hero-mark { display: none; } }

.hero { background-color: #171310; color: #f4efe4; padding: 104px 0 118px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .55;
  background:
    repeating-linear-gradient(45deg, rgba(244,239,228,.045) 0 3px, transparent 3px 26px),
    repeating-linear-gradient(-45deg, rgba(244,239,228,.045) 0 3px, transparent 3px 26px),
    linear-gradient(120deg, #171310 30%, #241b11 75%, #2c2114);
}
.hero::after { content: ""; position: absolute; right: -140px; top: -100px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(185,144,47,.22), transparent 62%); }
.hero .container { position: relative; z-index: 2; }
.hero .est { font-size: .75rem; letter-spacing: 4.5px; color: var(--accent); font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.hero .est::before { content: ""; display: inline-block; width: 42px; height: 1px; background: var(--accent); margin-right: 14px; vertical-align: middle; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.12; max-width: 660px; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { margin-top: 22px; font-size: 1.12rem; opacity: .82; max-width: 520px; font-weight: 400; }
.hero .actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero.with-photo { background-size: cover; background-position: center; }
.hero.with-photo::before { background: linear-gradient(100deg, rgba(18,14,10,.92) 30%, rgba(18,14,10,.55) 70%, rgba(18,14,10,.3)); opacity: 1; }

/* ---------- sections: asymmetric headers ---------- */
.section { padding: 78px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--primary); color: #f4efe4; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section h2 { font-size: 2.15rem; color: var(--primary); font-weight: 500; line-height: 1.15; }
/* page-lead headings are h1 for document structure; rendered identically to section h2 */
h1.page-title { font-size: 2.15rem; color: var(--primary); font-weight: 500; line-height: 1.15; letter-spacing: .01em; }
.section.dark h2 { color: #f4efe4; }
.section .sub { color: var(--muted); margin-top: 8px; max-width: 560px; }
.section-head .more { display: inline-flex; align-items: flex-end; min-height: 44px; font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-deep); border-bottom: 1px solid var(--accent); padding-bottom: 3px; white-space: nowrap;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease); }
.section-head .more:hover, .section-head .more:focus-visible { color: var(--primary); border-bottom-color: var(--primary); }

/* ---------- category tabs (was chips) ---------- */
.cat-row { display: flex; gap: 0 30px; flex-wrap: wrap; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.chip { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; padding: 4px 2px; background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: var(--font); margin-bottom: -1px;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease); }
.chip:active { transform: translateY(1px); }
.chip.active, .chip:hover, .chip:focus-visible { border-bottom-color: var(--accent); color: var(--primary); }

/* ---------- product cards: editorial ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); position: relative; display: flex; flex-direction: column; }
.card:hover { box-shadow: 0 14px 34px rgba(26,22,17,.13); transform: translateY(-4px); }
.card .swatch { height: 185px; background-size: cover; background-position: center; position: relative; filter: saturate(1.05) contrast(1.02); transition: filter var(--dur-3) var(--ease), transform var(--dur-3) var(--ease); }
.card:hover .swatch { filter: saturate(1.12) contrast(1.04); transform: scale(1.04); }
.card .swatch::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(26,22,17,.08), inset 0 -34px 40px -18px rgba(26,22,17,.28); }
.card .body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card .brand { font-size: .68rem; text-transform: uppercase; letter-spacing: 2.2px; color: var(--accent-deep); font-weight: 700; }
.card h3 { font-size: 1.18rem; color: var(--primary); margin: 4px 0 10px; font-weight: 600; }
.card .rule { height: 1px; background: var(--line); margin: auto 0 12px; }
.card .price-row { display: flex; align-items: baseline; justify-content: space-between; }
.card .price { font-weight: 700; color: var(--primary); font-size: 1.02rem; font-family: var(--font); }
.was { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: .86rem; margin-right: 8px; }
.price .unit { color: var(--muted); font-weight: 400; font-size: .8rem; }
.card .view { font-size: .7rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent-deep); opacity: 0; transition: opacity var(--dur-1) var(--ease); }
.card:hover .view, .card:focus-within .view { opacity: 1; }
.flag { position: absolute; top: 14px; left: 14px; padding: 5px 12px 4px; font-size: .66rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; z-index: 1; }
.flag.sale { background: var(--accent); color: var(--primary); }
.flag.oos { background: rgba(26,22,17,.82); color: #f4efe4; left: auto; right: 14px; }

/* ---------- catalog loading state: card-shaped placeholders shown until products render ---------- */
.skel-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 318px; }
.skel-card::before { content: ""; display: block; height: 185px;
  background: linear-gradient(100deg, #efe9dc 40%, #f7f3ea 50%, #efe9dc 60%) 0 0 / 300% 100%;
  animation: skel-sheen 1.2s linear infinite; }
.skel-card::after { content: ""; display: block; margin: 20px 20px 0; height: 12px; width: 62%; background: #efe9dc; border-radius: 2px; box-shadow: 0 28px 0 #f2ede3; }
@keyframes skel-sheen { to { background-position: -150% 0; } }

/* ---------- feature strip: numbered, no boxes ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 0; }
.tile { padding: 30px 28px 6px; border-left: 1px solid var(--line); }
.tile:first-child { border-left: 0; padding-left: 0; }
.tile .num { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--accent); display: block; margin-bottom: 12px; }
.tile .num::after { content: ""; display: block; width: 30px; height: 1px; background: var(--line); margin-top: 12px; }
.tile h3 { color: var(--primary); font-size: 1.12rem; margin-bottom: 8px; }
.tile p { font-size: .93rem; color: var(--muted); }
.tile .ico { display: none; }
@media (max-width: 720px) { .tile { border-left: 0; padding-left: 0; } }

/* ---------- specials: one lead offer + quiet list ---------- */
.special-lead { background: var(--primary); color: #f4efe4; padding: 44px 46px; display: grid; grid-template-columns: 1.4fr auto; gap: 26px; align-items: center; position: relative; overflow: hidden; margin-bottom: 26px; }
.special-lead::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(185,144,47,.06) 0 2px, transparent 2px 22px); }
.special-lead > * { position: relative; }
.special-lead .eyebrow { color: var(--accent); }
.special-lead .eyebrow::after { background: rgba(185,144,47,.5); }
.special-lead h3 { font-size: 1.9rem; font-weight: 500; margin-bottom: 10px; }
.special-lead p { opacity: .85; max-width: 560px; }
.special-lead .ends { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-top: 14px; font-weight: 700; }
@media (max-width: 760px) { .special-lead { grid-template-columns: 1fr; } }
.special-row { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--accent); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.special-row h4 { font-family: var(--display); font-size: 1.2rem; color: var(--primary); font-weight: 600; }
.special-row p { color: var(--muted); font-size: .93rem; max-width: 620px; }
.special-row .ends { font-size: .72rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; margin-top: 3px; }
.special-row a { display: inline-flex; align-items: flex-end; min-height: 44px; white-space: nowrap; font-size: .74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-deep); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ---------- visualizer teaser ---------- */
.viz-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 800px) { .viz-teaser { grid-template-columns: 1fr; } }
.viz-teaser .viz-frame { border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.viz-teaser .viz-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(26,22,17,.06); }

/* ---------- product detail ---------- */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .detail { grid-template-columns: 1fr; } }
.detail .photo { min-height: 400px; background-size: cover; background-position: center; border: 1px solid var(--line); box-shadow: var(--shadow); }
.specs { margin-top: 24px; width: 100%; border-collapse: collapse; }
.specs td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.specs td:first-child { color: var(--muted); width: 45%; font-size: .8rem; text-transform: uppercase; letter-spacing: 1.4px; }

/* ---------- forms ---------- */
.form { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 34px; max-width: 640px; }
.form label { display: block; font-weight: 700; font-size: .72rem; letter-spacing: 1.8px; text-transform: uppercase; margin: 18px 0 6px; color: var(--primary); }
.form input, .form select, .form textarea { width: 100%; min-height: 44px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: inherit; font-size: .96rem; background: var(--light);
  transition: border-color var(--dur-1) var(--ease), background-color var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(185,144,47,.18); }
.form input[type="checkbox"] { min-width: 20px; min-height: 20px; accent-color: var(--accent-deep); }
/* a field the visitor has filled incorrectly gets a clear, AA-contrast border */
.form input:user-invalid, .form select:user-invalid, .form textarea:user-invalid { border-color: #a4432f; }
.form input:user-invalid:focus, .form select:user-invalid:focus, .form textarea:user-invalid:focus { box-shadow: 0 0 0 3px rgba(164,67,47,.16); }
/* inline validation message — filled when a submit attempt finds an incomplete field */
.form-error { color: #a4432f; font-weight: 600; font-size: .88rem; margin: 0; }
.form-error:not(:empty) { margin-top: 16px; }

/* ---------- footer ---------- */
.site-footer { background: var(--primary); color: #c9c2b2; margin-top: 80px; padding: 56px 0 32px; font-size: .93rem; border-top: 3px solid var(--accent); }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; }
@media (max-width: 700px) { .site-footer .cols { grid-template-columns: 1fr; } }
/* column labels are true h2 headings, rendered at label size */
.site-footer h2 { color: #f4efe4; margin-bottom: 12px; font-family: var(--display); font-size: 1.15rem; font-weight: 600; letter-spacing: normal; text-wrap: wrap; }
.site-footer a { display: block; padding: 5px 0; opacity: .8; transition: color var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease); }
@media (max-width: 940px) { .site-footer .cols a { padding: 10px 0; } }
.site-footer a:hover, .site-footer a:focus-visible { opacity: 1; color: var(--accent); }
.site-footer .fine { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(244,239,228,.14); font-size: .78rem; opacity: .65; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- badges / util ---------- */
.pill { display: inline-block; padding: 4px 12px 3px; font-size: .68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; border-radius: 2px; }
.pill.ok { background: #ece7d8; color: #6d5b1e; }
.pill.no { background: #f0e6e4; color: #8a4436; }
.muted { color: var(--muted); }
.mt { margin-top: 20px; }

/* ---------- admin ---------- */
.admin-bar { background: #12100c; color: #f4efe4; padding: 12px 0; font-size: .9rem; border-bottom: 1px solid rgba(185,144,47,.4); }
.admin-bar .container { display: flex; justify-content: space-between; align-items: center; }
.table-wrap { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); overflow-x: auto; }
table.admin { width: 100%; border-collapse: collapse; min-width: 760px; }
table.admin th { text-align: left; font-size: .7rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); padding: 14px 16px; border-bottom: 2px solid var(--line); }
table.admin td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .93rem; vertical-align: middle; transition: background-color var(--dur-1) var(--ease); }
table.admin tr:hover td { background: #faf7f0; }
.sw-mini { width: 46px; height: 34px; border-radius: 2px; background-size: cover; border: 1px solid var(--line); }
.icon-btn { min-width: 44px; min-height: 44px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 6px 12px; cursor: pointer; font-size: .8rem; margin-right: 6px; letter-spacing: .5px;
  transition: border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease); }
.icon-btn:hover, .icon-btn:focus-visible { border-color: var(--accent); color: var(--accent-deep); }
.icon-btn:active { transform: translateY(1px); }
.toggle { cursor: pointer; }

/* modal */
.modal-back { position: fixed; inset: 0; background: rgba(18,14,10,.6); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-back.open { display: flex; }
.modal { background: #fff; border-top: 3px solid var(--accent); padding: 30px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; }
.modal h3 { color: var(--primary); margin-bottom: 4px; font-size: 1.4rem; }
.modal .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.modal .actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #f4efe4; padding: 13px 26px; border-left: 3px solid var(--accent); box-shadow: var(--shadow); opacity: 0; transition: opacity .25s; z-index: 200; pointer-events: none; font-size: .9rem; max-width: calc(100vw - 32px); }
.toast.show { opacity: 1; }

/* ---------- small screens: tighter editorial rhythm ---------- */
@media (max-width: 640px) {
  .hero { padding: 76px 0 86px; }
  .hero p { font-size: 1.05rem; }
  .section { padding: 58px 0; }
  .section h2 { font-size: 1.8rem; }
  h1.page-title { font-size: 1.8rem; }
  .section-head { margin-bottom: 30px; }
  .cat-row { gap: 0 22px; margin-bottom: 30px; }
  .special-lead { padding: 32px 26px; }
  .special-lead h3 { font-size: 1.6rem; }
  .special-row { padding: 20px 22px; }
  .form { padding: 26px 20px; }
  .detail .photo { min-height: 300px; }
  .modal { padding: 24px 20px; }
  .modal .row2 { grid-template-columns: 1fr; }
  .site-footer { margin-top: 60px; padding: 46px 0 28px; }
  .site-footer .cols { gap: 30px; }
}
