/* Website Factory · template: counter-serve ~ generated stylesheet */
:root {
  --accent: #3E673C;
  --accent-2: #973537;
  --accent-rgb: 62, 103, 60;
  --accent-2-rgb: 151, 53, 55;
  --btn-text: #FFFFFF;

  --font-body: 'Nunito', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Fraunces', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --r-card: 9px;
  --r-button: 7px;
  --r-field: 6px;
}

/* Canvas defaults = the house glass look. A profile with brandDna (or an explicit
   surfaces block) overrides every one of these via surfacesCss() at the end. */
:root {
  --bg: #000000;
  --bg-rgb: 0, 0, 0;
  --panel: #07070C;
  --panel-rgb: 7, 7, 12;
  --panel-2: #0b0b12;
  --line: rgba(var(--ink-rgb),0.10);
  --text: #ffffff;
  --text-strong: #ffffff;
  --text-secondary: rgba(var(--ink-rgb),0.72);
  --text-muted: rgba(var(--ink-rgb),0.5);
  --ink-rgb: 255, 255, 255;
  --ok: #10B981;
  --ok-rgb: 16, 185, 129;
  --w-heading: 800;
  --section-pad: 88px;
  --maxw: 1160px;
  --nav-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(var(--accent-2-rgb), 0.13), transparent 30%),
    radial-gradient(circle at bottom center, rgba(var(--accent-rgb), 0.08), transparent 28%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(var(--accent-rgb), 0.3); color: var(--text-strong); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---- layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-2);
  padding: 6px 14px; border-radius: var(--r-button);
  border: 1px solid rgba(var(--accent-2-rgb), 0.32);
  background: rgba(var(--accent-2-rgb), 0.06); margin-bottom: 18px;
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: var(--w-heading); line-height: 1.1; letter-spacing: -0.02em; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); font-size: 1.06rem; }
.lead { color: var(--text-secondary); font-size: 1.08rem; }

/* ---- gradient mesh ---- */
.gradient-mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.gradient-mesh::before {
  content: ''; position: absolute; top: -40%; left: -20%; width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16) 0%, transparent 70%);
  filter: blur(80px);
}
.gradient-mesh::after {
  content: ''; position: absolute; bottom: -30%; right: -20%; width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-2-rgb), 0.13) 0%, transparent 70%);
  filter: blur(80px);
}

/* ---- glass surfaces ---- */
.glass-card {
  background: rgba(var(--ink-rgb),0.02);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--ink-rgb),0.10); border-radius: var(--r-card);
}
.glass-card:hover { background: rgba(var(--ink-rgb),0.04); border-color: rgba(var(--ink-rgb),0.16); }
.glass-card-colored {
  background: rgba(var(--ink-rgb),0.03);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--accent-rgb), 0.25); border-radius: var(--r-card);
  box-shadow: 0 0 20px -5px rgba(var(--accent-rgb), 0.10);
}
.glass-card-colored:hover {
  background: rgba(var(--ink-rgb),0.06);
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 30px -5px rgba(var(--accent-rgb), 0.2);
}
.glass-surface {
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb),0.08), rgba(var(--ink-rgb),0.02)),
    rgba(var(--panel-rgb), 0.6);
  backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(var(--ink-rgb),0.1);
  box-shadow: inset 0 1px 0 rgba(var(--ink-rgb),0.08), 0 28px 90px -48px rgba(0, 0, 0, 0.85);
}
.glass-surface-strong {
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb),0.12), rgba(var(--ink-rgb),0.03)),
    rgba(var(--panel-rgb), 0.72);
  backdrop-filter: blur(24px) saturate(150%); -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(var(--ink-rgb),0.12);
  box-shadow: inset 0 1px 0 rgba(var(--ink-rgb),0.1), 0 32px 100px -40px rgba(0, 0, 0, 0.92);
}
.hover-lift {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background-color .35s ease, opacity .35s ease;
}
.hover-lift:hover { transform: translateY(-6px); }

.accent-text {
  background-image: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glass-button {
  background: linear-gradient(180deg, rgba(var(--ink-rgb),0.14), rgba(var(--ink-rgb),0.05));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--ink-rgb),0.14);
  box-shadow: inset 0 1px 0 rgba(var(--ink-rgb),0.08);
}
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-slow { animation: float-y 7s ease-in-out infinite; }

.nav-link { position: relative; color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: color .2s ease; }
.nav-link:hover { color: var(--text-strong); }
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 1px; transition: width .3s ease;
}
.nav-link:hover::after { width: 100%; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(var(--ink-rgb),0.12); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--ink-rgb),0.22); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--r-button); font-weight: 700; font-size: 0.98rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(var(--accent-2-rgb), 0.65); outline-offset: 2px; }
.btn-primary {
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px -10px rgba(var(--accent-rgb), 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(var(--accent-rgb), 0.85); }
.btn-ghost { color: var(--text-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(var(--ink-rgb),0.28); }
.btn-block { width: 100%; }

/* ---- top nav ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200; padding: 10px 16px; border-radius: 10px;
  background: var(--accent); color: var(--btn-text); font-weight: 700; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.topnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; }
.topnav .glass-surface { position: absolute; inset: 0; z-index: -1; }
.topnav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand-mark { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.06rem; letter-spacing: -0.02em; }
.brand-dot {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center; font-size: 0.9rem; color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px -4px rgba(var(--accent-rgb), 0.8);
}
.brand-logo { width: 30px; height: 30px; flex: none; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text-strong); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---- hero ---- */
.hero { position: relative; padding: calc(var(--nav-h) + 72px) 0 96px; overflow: hidden; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 16px 0 18px; }
.hero .lead { max-width: 34ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.trust-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.92rem; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1rem; }
.hero-visual { position: relative; }
.hero-panel { padding: 26px; border-radius: 22px; }
.hero-photo {
  border-radius: 16px; aspect-ratio: 4 / 5; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.5), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(var(--accent-2-rgb), 0.42), transparent 55%),
    linear-gradient(160deg, rgba(var(--ink-rgb),0.10), rgba(var(--ink-rgb),0.02));
  display: grid; place-items: center;
}
.hero-photo.has-img { background: var(--panel-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-glyph { opacity: 0.55; display: grid; place-items: center; gap: 10px; text-align: center; color: rgba(var(--ink-rgb),0.8); font-size: 0.82rem; }
.photo-glyph svg { width: 40px; height: 40px; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; padding: 14px 18px; border-radius: 16px;
  display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.9rem;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 12px 2px rgba(var(--accent-2-rgb), 0.9); }

/* ---- grid + services ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.svc { padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.svc-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem;
  background: rgba(var(--accent-rgb), 0.14); border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.svc h3 { font-size: 1.16rem; }
.svc p { color: var(--text-secondary); font-size: 0.96rem; flex: 1; }
.svc .price { font-weight: 800; color: var(--text-strong); font-size: 1.05rem; }
.svc .price span { color: var(--text-muted); font-weight: 500; font-size: 0.82rem; }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-copy p + p { margin-top: 16px; }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.stat { padding: 16px 20px; border-radius: 14px; text-align: center; min-width: 120px; flex: 1; }
.stat .n { font-size: 1.7rem; font-weight: 800; }
.stat .l { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }
.about-photo { aspect-ratio: 5 / 4; }

/* ---- hours + location ---- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { padding: 30px; }
.info-card h3 { font-size: 1.25rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { width: 1.25em; height: 1.25em; color: var(--accent-2); }
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(var(--ink-rgb),0.07); font-size: 0.96rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--text-secondary); }
.hours-list .time { font-weight: 600; }
.hours-list li.today .day, .hours-list li.today .time { color: var(--accent-2); }
.addr { color: var(--text-secondary); font-style: normal; line-height: 1.8; margin-bottom: 18px; }
.map-embed {
  border-radius: 14px; aspect-ratio: 16 / 9; margin-bottom: 18px; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 40% 40%, rgba(var(--accent-rgb), 0.30), transparent 60%),
    repeating-linear-gradient(0deg, rgba(var(--ink-rgb),0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(var(--ink-rgb),0.05) 0 1px, transparent 1px 34px),
    var(--panel-2);
  display: grid; place-items: center;
}
.map-pin { width: 34px; height: 34px; color: var(--accent-2); filter: drop-shadow(0 0 10px rgba(var(--accent-2-rgb),0.8)); }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- reviews ---- */
.review { padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review .stars { font-size: 1.05rem; }
.review p { color: var(--text-secondary); font-size: 0.99rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: 0.95rem; }
.who .nm { font-weight: 700; font-size: 0.95rem; }
.who .mt { color: var(--text-muted); font-size: 0.8rem; }
.placeholder-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 22px; }

/* ---- contact / booking ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.contact-copy .lead { margin-bottom: 26px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.cmethod { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; }
.cmethod .ci { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; flex: none;
  background: rgba(var(--accent-rgb), 0.14); border: 1px solid rgba(var(--accent-rgb), 0.3); }
.cmethod .ci svg { width: 20px; height: 20px; color: var(--accent-2); }
.cmethod .lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.cmethod .val { font-weight: 700; }
.form-card { padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 7px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-field); font: inherit; color: var(--text);
  background: rgba(var(--ink-rgb),0.04); border: 1px solid rgba(var(--ink-rgb),0.12); transition: border-color .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: rgba(var(--accent-2-rgb), 0.7); background: rgba(var(--ink-rgb),0.06);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(var(--ink-rgb),0.35); }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none; padding: 22px; border-radius: 14px; text-align: center; margin-top: 4px;
  border: 1px solid rgba(var(--accent-2-rgb), 0.4); background: rgba(var(--accent-2-rgb), 0.07);
}
.form-success.show { display: block; }
.form-success strong { color: var(--accent-2); }

/* ---- footer ---- */
.foot { border-top: 1px solid rgba(var(--ink-rgb),0.08); padding: 56px 0 40px; position: relative; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.foot h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 14px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot a, .foot li { color: var(--text-secondary); font-size: 0.93rem; }
.foot a:hover { color: var(--text-strong); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(var(--ink-rgb),0.06); padding-top: 24px; color: var(--text-muted); font-size: 0.85rem; }
.by-anchor { display: inline-flex; align-items: center; gap: 7px; }
.by-anchor b { color: var(--text-secondary); }

/* ---- AI assistant chat stub ---- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 120; display: flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 15px; border-radius: var(--r-button); cursor: pointer; border: 0; color: var(--btn-text); font-weight: 700; font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 40px -10px rgba(var(--accent-rgb), 0.8);
  transition: transform .2s ease, box-shadow .2s ease;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab svg { width: 22px; height: 22px; }
.chat-fab .ping { position: absolute; top: 10px; right: 14px; width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(var(--ok-rgb),0.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(var(--ok-rgb),0.6);} 70% { box-shadow: 0 0 0 10px rgba(var(--ok-rgb),0);} 100% { box-shadow: 0 0 0 0 rgba(var(--ok-rgb),0);} }
.chat-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 121; width: min(370px, calc(100vw - 32px)); max-height: min(560px, calc(100vh - 40px));
  border-radius: 20px; display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.open { display: flex; }
.chat-head { padding: 16px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(var(--ink-rgb),0.1); }
.chat-head .av { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: var(--btn-text); font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.chat-head .nm { font-weight: 800; font-size: 0.98rem; }
.chat-head .st { font-size: 0.76rem; color: var(--ok); display: flex; align-items: center; gap: 6px; }
.chat-head .st::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.chat-head .x { margin-left: auto; background: none; border: 0; color: var(--text-muted); cursor: pointer; font-size: 1.4rem; line-height: 1; padding: 4px; }
.chat-body { padding: 18px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bubble { padding: 11px 14px; border-radius: 14px; font-size: 0.9rem; max-width: 85%; line-height: 1.5; }
.bubble.bot { background: rgba(var(--ink-rgb),0.06); border: 1px solid rgba(var(--ink-rgb),0.09); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.me { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--btn-text); border-bottom-right-radius: 4px; align-self: flex-end; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; }
.qr { padding: 8px 13px; border-radius: var(--r-button); font-size: 0.82rem; cursor: pointer; color: var(--text);
  background: rgba(var(--accent-rgb), 0.12); border: 1px solid rgba(var(--accent-rgb), 0.32); transition: background .2s ease; }
.qr:hover { background: rgba(var(--accent-rgb), 0.22); }
.chat-foot { padding: 12px 14px; border-top: 1px solid rgba(var(--ink-rgb),0.1); display: flex; gap: 8px; }
.chat-foot input { flex: 1; padding: 11px 14px; border-radius: var(--r-button); font: inherit; color: var(--text);
  background: rgba(var(--ink-rgb),0.05); border: 1px solid rgba(var(--ink-rgb),0.12); }
.chat-foot input:focus { outline: none; border-color: rgba(var(--accent-2-rgb), 0.6); }
.chat-foot button { border: 0; border-radius: 50%; width: 42px; height: 42px; flex: none; cursor: pointer; color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; }
.chat-foot button svg { width: 18px; height: 18px; }
.stub-tag { font-size: 0.72rem; color: var(--text-muted); text-align: center; padding: 6px 0 2px; }

/* ---- responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .lead { max-width: none; }
  .hero-visual { max-width: 420px; }
  .about-grid, .info-grid, .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-ghost { display: none; }
  .mobile-menu { display: none; }
  .mobile-menu.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .chat-fab .label { display: none; }
  .chat-fab { padding: 15px; }
  .topnav .container { gap: 10px; }
  .brand-mark { min-width: 0; }
  .brand-mark span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 0.98rem; }
  .nav-cta .btn-primary { padding: 11px 15px; font-size: 0.9rem; }
}
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99; flex-direction: column; gap: 4px; padding: 16px 24px 22px; }
.mobile-menu a { padding: 12px 0; color: var(--text-secondary); border-bottom: 1px solid rgba(var(--ink-rgb),0.07); font-weight: 600; }
.mobile-menu .btn { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .hover-lift:hover { transform: none; }
}

/* design-dna surface overrides ~ per-client canvas (mode: light) */
:root {
  color-scheme: light;
  --bg: #FBFAF9;
  --bg-rgb: 251, 250, 249;
  --panel: #FFFFFF;
  --panel-rgb: 255, 255, 255;
  --panel-2: #F5F3F0;
  --line: rgba(48, 38, 24, 0.14);
  --text: #302618;
  --text-strong: #1D160C;
  --text-secondary: rgba(48, 38, 24, 0.76);
  --text-muted: rgba(48, 38, 24, 0.56);
  --ink-rgb: 48, 38, 24;
  --ok: #2FA25F;
  --ok-rgb: 47, 162, 95;
  --warn: #C48508;
  --danger: #D52C20;
  --w-heading: 700;
  --section-pad: 86px;
}

/* ---- big hours ---- */
.big-hours { padding-top: 40px; }
.hours-hero { border-radius: var(--r-card); padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.hh-today .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.hh-time { font-family: var(--font-heading); font-weight: var(--w-heading); font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.05; margin: 8px 0 10px;
  background-image: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hh-today p { color: var(--text-secondary); }
.hh-week .hours-list li { font-size: 0.98rem; }
.hours-list .time.muted { color: var(--text-muted); font-weight: 500; }
@media (max-width: 720px) { .hours-hero { grid-template-columns: 1fr; gap: 20px; padding: 26px; } }

/* ---- menu board ---- */
.menu-board { border-radius: var(--r-card); padding: 34px 38px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px 46px; }
.menu-sec h3 { font-size: 1.25rem; margin-bottom: 16px; color: var(--accent-2); border-bottom: 1px solid rgba(var(--ink-rgb),0.12); padding-bottom: 10px; }
.menu-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.menu-list li { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; column-gap: 8px; }
.mi-name { font-weight: 700; }
.mi-tag { font-style: normal; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); padding: 2px 8px; border-radius: 100px; margin-left: 6px; }
.mi-dots { border-bottom: 1px dotted rgba(var(--ink-rgb),0.3); transform: translateY(-4px); }
.mi-price { font-weight: 800; color: var(--text-strong); }
.mi-desc { grid-column: 1 / -1; color: var(--text-secondary); font-size: 0.9rem; margin-top: -2px; }
.empty-panel { padding: 34px; border-radius: var(--r-card); text-align: center; }
.empty-panel p { color: var(--text-secondary); max-width: 52ch; margin: 0 auto; }
.order-band { margin-top: 28px; padding: 26px 32px; border-radius: var(--r-card); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.order-band h3 { font-size: 1.35rem; margin-bottom: 6px; }
@media (max-width: 720px) { .menu-board { padding: 26px; } .order-band { flex-direction: column; align-items: flex-start; } }

/* ---- gallery strip ---- */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.strip-cell { aspect-ratio: 1 / 1; overflow: hidden; padding: 0; }
.strip-img { width: 100%; height: 100%; }
.strip-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== style-pack look layer: "Farmhouse" (farmhouse) ===== */

/* imagery: PHOTO-FORWARD ~ let the pictures carry the page */
body[data-look-imagery="photo-forward"] .hero-photo { aspect-ratio: 3 / 4; }
body[data-look-imagery="photo-forward"] .about-photo { aspect-ratio: 4 / 5; }
body[data-look-imagery="photo-forward"] .g-grid { grid-template-columns: repeat(3, 1fr); }
body[data-look-imagery="photo-forward"] .hero-photo img,
body[data-look-imagery="photo-forward"] .about-photo img,
body[data-look-imagery="photo-forward"] .g-photo img { filter: saturate(1.06) contrast(1.02); }
body[data-look-imagery="photo-forward"] .hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

/* placeholder hardening (fix 3): designed, captioned photo-coming tiles, light + dark */
body[data-look] .hero-photo:not(.has-img),
body[data-look] .about-photo:not(.has-img),
body[data-look] .g-photo:not(.has-img),
body[data-look] .gallery-img:not(.has-img),
body[data-look] .room-img:not(.has-img),
body[data-look] .strip-img:not(.has-img) {
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.13), rgba(var(--accent-2-rgb), 0.09)),
    var(--panel-2);
  border: 1px solid rgba(var(--accent-rgb), 0.20);
}
body[data-look] .photo-glyph { opacity: 1; color: var(--accent); font-weight: 600; }
body[data-look] .photo-glyph svg { opacity: 0.9; color: var(--accent); }

