/* Website Factory · template: restaurant ~ generated stylesheet
   Menu-first editorial look: dot-leader menu typography, info strip, gallery band.
   Brand tokens are applied only through the custom properties below. */

:root {
  --accent: #E0C152;
  --accent-2: #DD6B4B;
  --accent-rgb: 224, 193, 82;
  --accent-2-rgb: 221, 107, 75;
  --btn-text: #0A0A0F;

  --font-body: 'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Cormorant Garamond', 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 = warm paper. A profile with brandDna (or an explicit surfaces
   block) overrides these via surfacesCss() at the end of this stylesheet. */
:root {
  --bg: #FAF6EF;
  --bg-rgb: 250, 246, 239;
  --panel: #FFFFFF;
  --panel-rgb: 255, 255, 255;
  --panel-2: #F2ECE0;
  --line: rgba(var(--ink-rgb),0.14);
  --text: #272014;
  --text-strong: #170F06;
  --text-secondary: rgba(var(--ink-rgb),0.74);
  --text-muted: rgba(var(--ink-rgb),0.55);
  --ink-rgb: 39, 32, 20;
  --ok: #256E45;
  --ok-rgb: 37, 110, 69;
  --w-heading: 700;
  --section-pad: 96px;
  --maxw: 1120px;
  --menuw: 880px;
  --nav-h: 66px;
}

* { 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: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(var(--accent-rgb), 0.25); 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; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--w-heading); line-height: 1.12; letter-spacing: -0.01em; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 12px 0 12px; }
.section-head p { color: var(--text-secondary); font-size: 1.05rem; }
.lead { color: var(--text-secondary); font-size: 1.08rem; }

/* eyebrow with side rules ~ the menu-card signature */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow i { display: inline-block; width: 28px; height: 1px; background: rgba(var(--accent-rgb), 0.55); }

/* ---- 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.97rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s 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: var(--accent); box-shadow: 0 10px 26px -12px rgba(var(--accent-rgb), 0.75); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(var(--accent-rgb), 0.85); }
.btn-outline { color: var(--text-strong); border-color: rgba(var(--ink-rgb),0.25); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--text-strong); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---- nav ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200; padding: 10px 16px; border-radius: var(--r-field);
  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;
  background: rgba(var(--bg-rgb), 0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.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.05rem; font-family: var(--font-heading); }
.brand-dot {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 0.85rem; color: var(--btn-text);
  background: var(--accent); font-family: var(--font-body); font-weight: 800;
}
.brand-logo { width: 32px; height: 32px; flex: none; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { position: relative; color: var(--text-secondary); font-weight: 600; font-size: 0.93rem; letter-spacing: 0.02em; 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: var(--accent); transition: width .25s ease; }
.nav-link:hover::after { width: 100%; }
.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; }

.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;
  background: var(--panel); border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; color: var(--text-secondary); border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile-menu .btn { margin-top: 14px; }

/* ---- hero + info strip ---- */
.hero { padding: calc(var(--nav-h) + 84px) 0 0; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(24,17,12,0.78) 0%, rgba(24,17,12,0.62) 45%, rgba(24,17,12,0.92) 100%),
    url('assets/hero.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-bottom: 64px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); max-width: 16ch; }
.hero .lead { max-width: 52ch; font-size: 1.14rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }

.info-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-cell {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 12px; text-align: left;
}
.strip-cell + .strip-cell { border-left: 1px solid var(--line); }
.strip-cell svg { width: 20px; height: 20px; color: var(--accent); }
.strip-cell .lbl { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); }
.strip-cell .val { display: block; font-weight: 700; font-size: 0.95rem; }
a.strip-cell:hover .val { color: var(--accent); }

/* ---- menu ~ the centerpiece ---- */
.menu-wrap { max-width: var(--menuw); }
.menu-section { margin-bottom: 56px; }
.menu-section:last-of-type { margin-bottom: 0; }
.menu-section-head { text-align: center; margin-bottom: 26px; }
.menu-section-head h3 {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 1.45rem; color: var(--text-strong);
}
.menu-section-head h3::before, .menu-section-head h3::after {
  content: '✦'; font-size: 0.7em; color: var(--accent); opacity: 0.85;
}
.menu-note { color: var(--text-muted); font-size: 0.92rem; margin-top: 6px; font-style: italic; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 44px; }
.mi { break-inside: avoid; }
.mi-line { display: flex; align-items: baseline; gap: 10px; }
.mi-line h4 { font-size: 1.06rem; color: var(--text-strong); }
.mi-dots { flex: 1; border-bottom: 2px dotted rgba(var(--ink-rgb),0.28); transform: translateY(-4px); min-width: 24px; }
.mi-price { font-weight: 800; color: var(--accent); font-size: 1.02rem; font-variant-numeric: tabular-nums; }
.mi-desc { color: var(--text-secondary); font-size: 0.93rem; margin-top: 5px; max-width: 44ch; }
.mi-tag {
  display: inline-block; margin-top: 8px; padding: 3px 10px; border-radius: var(--r-button);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); background: rgba(var(--accent-rgb), 0.09); border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.menu-foot { text-align: center; color: var(--text-muted); font-size: 0.92rem; margin-top: 42px; font-style: italic; }

/* ---- gallery band ---- */
.gallery-band { padding: 0; }
.g-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.g-photo {
  aspect-ratio: 1 / 1; overflow: hidden; position: relative; border-radius: 0;
  background:
    radial-gradient(circle at 35% 30%, rgba(var(--accent-rgb), 0.28), transparent 60%),
    radial-gradient(circle at 70% 75%, rgba(var(--accent-2-rgb), 0.22), transparent 55%),
    var(--panel-2);
  display: grid; place-items: center;
}
.g-photo.has-img { background: var(--panel-2); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-photo:hover img { transform: scale(1.04); }
.photo-glyph { opacity: 0.6; display: grid; place-items: center; gap: 8px; text-align: center; color: var(--text-secondary); font-size: 0.8rem; padding: 10px; }
.photo-glyph svg { width: 32px; height: 32px; }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 12px 0 16px; }
.about-copy p + p { margin-top: 14px; }
.about-photo {
  aspect-ratio: 4 / 5; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 25%, rgba(var(--accent-rgb), 0.30), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(var(--accent-2-rgb), 0.22), transparent 55%),
    var(--panel-2);
  display: grid; place-items: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.stat { padding: 16px 20px; text-align: center; min-width: 110px; flex: 1; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); }
.stat .n { font-size: 1.55rem; font-weight: 800; color: var(--accent); font-family: var(--font-heading); }
.stat .l { color: var(--text-muted); font-size: 0.8rem; margin-top: 2px; }

/* ---- reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review { padding: 26px; display: flex; flex-direction: column; gap: 13px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); }
.review .stars { color: var(--accent); letter-spacing: 2px; }
.review p { color: var(--text-secondary); font-size: 0.98rem; }
.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: var(--accent); font-size: 0.92rem; }
.who .nm { font-weight: 700; font-size: 0.95rem; }
.who .mt { color: var(--text-muted); font-size: 0.8rem; }
.placeholder-card { max-width: 560px; margin: 0 auto; text-align: center; border-style: dashed; }
.ph-badge {
  align-self: center; display: inline-block; padding: 5px 14px; border-radius: var(--r-button);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); border: 1px dashed rgba(var(--ink-rgb),0.35);
}
.placeholder-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

/* ---- visit ---- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); }
.info-card h3 { font-size: 1.22rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-card h3 svg { width: 1.2em; height: 1.2em; color: var(--accent); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dotted rgba(var(--ink-rgb),0.18); font-size: 0.95rem; }
.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); font-weight: 700; }
.addr { color: var(--text-secondary); font-style: normal; line-height: 1.8; margin-bottom: 18px; }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-note { margin-top: 14px; color: var(--text-muted); font-size: 0.82rem; }

/* ---- reserve ---- */
.reserve-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; }
.reserve-copy h2 { font-size: clamp(1.8rem, 3.8vw, 2.5rem); margin: 12px 0 22px; }
.reserve-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.reserve-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.form-card { padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-card); }
.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: 700; }
.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.03); border: 1px solid rgba(var(--ink-rgb),0.18); transition: border-color .2s ease, background .2s ease;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(var(--ink-rgb),0.05);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(var(--ink-rgb),0.4); }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-success { display: none; padding: 22px; text-align: center; margin-top: 4px; border: 1px solid rgba(var(--accent-rgb), 0.4); border-radius: var(--r-card); background: rgba(var(--accent-rgb), 0.06); }
.form-success.show { display: block; }
.form-success strong { color: var(--accent); }

/* ---- footer ---- */
.foot { border-top: 1px solid var(--line); padding: 30px 0; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; 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); }

/* ---- chat stub (shared widget markup, restaurant skin) ---- */
.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: var(--accent);
  box-shadow: 0 14px 34px -10px rgba(var(--accent-rgb), 0.7);
  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: var(--r-card); display: none; flex-direction: column; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.45);
}
.chat-panel.open { display: flex; }
.chat-head { padding: 16px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.chat-head .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--btn-text); font-weight: 800; background: var(--accent); }
.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: var(--r-field); font-size: 0.9rem; max-width: 85%; line-height: 1.5; }
.bubble.bot { background: rgba(var(--ink-rgb),0.05); border: 1px solid var(--line); align-self: flex-start; }
.bubble.me { background: var(--accent); color: var(--btn-text); 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.09); border: 1px solid rgba(var(--accent-rgb), 0.32); transition: background .2s ease; }
.qr:hover { background: rgba(var(--accent-rgb), 0.18); }
.chat-foot { padding: 12px 14px; border-top: 1px solid var(--line); 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.04); border: 1px solid rgba(var(--ink-rgb),0.16); }
.chat-foot input:focus { outline: none; border-color: var(--accent); }
.chat-foot button { border: 0; border-radius: 50%; width: 42px; height: 42px; flex: none; cursor: pointer; color: var(--btn-text);
  background: var(--accent); 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) {
  .menu-grid { grid-template-columns: 1fr; gap: 20px; }
  .g-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .reserve-grid, .visit-grid { grid-template-columns: 1fr; gap: 26px; }
  .about-media { max-width: 440px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 52px); }
  .hero-inner { padding-bottom: 44px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-outline { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-cell { justify-content: flex-start; padding: 14px 4px; }
  .strip-cell + .strip-cell { border-left: 0; border-top: 1px solid var(--line); }
  .form-row { 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; }
}

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

/* design-dna surface overrides ~ per-client canvas (mode: dark) */
:root {
  color-scheme: dark;
  --bg: #18110C;
  --bg-rgb: 24, 17, 12;
  --panel: #231B15;
  --panel-rgb: 35, 27, 21;
  --panel-2: #1D1611;
  --line: rgba(245, 242, 240, 0.12);
  --text: #F5F2F0;
  --text-strong: #FDFCFC;
  --text-secondary: rgba(245, 242, 240, 0.74);
  --text-muted: rgba(245, 242, 240, 0.52);
  --ink-rgb: 245, 242, 240;
  --ok: #30A661;
  --ok-rgb: 48, 166, 97;
  --warn: #E19909;
  --danger: #D52C20;
  --w-heading: 600;
  --section-pad: 101px;
}

/* ===== style-pack look layer: "Candlelight" (candlelight) ===== */

/* imagery: TYPE-FORWARD ~ oversized headlines do the talking */
body[data-look-imagery="type-forward"] .hero h1 { font-size: clamp(3rem, 9vw, 6rem); letter-spacing: -0.035em; line-height: 0.98; }
body[data-look-imagery="type-forward"] .section-head h2,
body[data-look-imagery="type-forward"] .menu-section-head h3 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
body[data-look-imagery="type-forward"] .hero-photo,
body[data-look-imagery="type-forward"] .about-photo { opacity: 0.92; }

/* 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); }

/* section-order hint (candlelight) */
main { display: flex; flex-direction: column; }
#top { order: 0; }
#menu { order: 1; }
#about { order: 2; }
#gallery { order: 3; }
#reviews { order: 4; }
#visit { order: 5; }
#reserve { order: 6; }
#asv2pp { order: 7; }

