


html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
main { display: block; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
abbr[title] { border-bottom: none; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, input { overflow: visible; }
button, select { text-transform: none; }
button, [type="submit"] { -webkit-appearance: button; }
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }
[hidden] { display: none; }
*, *::before, *::after { box-sizing: border-box; }


:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f0fdfa;
  --bg-tertiary: #ccfbf1;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-deep: #115e56;
  --text-primary: #042f2e;
  --text-secondary: #334e4c;
  --text-muted: #4f6d6a;
  --warm: #b8501d;
  --warm-soft: #fde3d1;
  --surface: #ffffff;
  --line: rgba(4, 47, 46, 0.12);
  --shade: rgba(4, 47, 46, 0.09);
  --dot-idle: rgba(4, 47, 46, 0.28);
  --footer-bg: #042f2e;
  --footer-panel: #0b423e;
  --footer-text: #bfe6e0;
  --footer-accent: #5eead4;
  --on-accent: #ffffff;
  --radius: 0.875em;
  --radius-sm: 0.625em;
}

[data-theme="dark"] {
  --bg-primary: #04211f;
  --bg-secondary: #07302d;
  --bg-tertiary: #0b423e;
  --accent: #2dd4bf;
  --accent-hover: #2dd4bf;
  --accent-deep: #5eead4;
  --text-primary: #e6fffb;
  --text-secondary: #a7d5d0;
  --text-muted: #7fb0ab;
  --warm: #f4a06a;
  --warm-soft: #3a2317;
  --surface: #07302d;
  --line: rgba(230, 255, 251, 0.14);
  --shade: rgba(0, 0, 0, 0.45);
  --dot-idle: rgba(230, 255, 251, 0.45);
  --footer-bg: #021a19;
  --footer-panel: #07302d;
  --footer-text: #a7d5d0;
  --footer-accent: #5eead4;
  --on-accent: #04211f;
}


[data-mm-header]{--mm-bg:#ffffff;--mm-text:#333333;--mm-primary:#2563eb;--mm-overlay-bg:rgba(0,0,0,0.3);--mm-transition:0.3s ease;--mm-drawer-width:280px}
[data-mm-header]{position:relative}
[data-mm-toggle]{display:flex;flex-direction:column;justify-content:center;gap:5px;background:none;border:none;cursor:pointer;padding:8px;z-index:1001}
[data-mm-toggle] span{display:block;width:24px;height:2px;background:var(--mm-text);transition:var(--mm-transition)}
[data-mm-menu]{position:fixed;top:0;left:0;width:var(--mm-drawer-width);max-width:85vw;height:100vh;height:100dvh;background:var(--mm-bg);transform:translateX(-100%);transition:transform var(--mm-transition);z-index:1100;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column;padding:60px 24px 24px}
[data-mm-menu].mm-open{transform:translateX(0)}
body.mm-pushed{transform:translateX(var(--mm-drawer-width));transition:transform var(--mm-transition);overflow-x:hidden}
[data-mm-menu] ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0}
[data-mm-menu] ul li a{display:block;padding:14px 0;color:var(--mm-text);text-decoration:none;font-size:16px;border-bottom:1px solid rgba(0,0,0,0.08);transition:color var(--mm-transition)}
[data-mm-menu] ul li a:hover{color:var(--mm-primary)}
[data-mm-close]{position:absolute;top:16px;right:16px;background:none;border:none;font-size:28px;line-height:1;cursor:pointer;color:var(--mm-text);padding:4px 8px}
[data-mm-overlay]{position:fixed;top:0;left:0;width:100%;height:100%;background:var(--mm-overlay-bg);opacity:0;visibility:hidden;transition:opacity var(--mm-transition),visibility var(--mm-transition);z-index:1050}
[data-mm-overlay].mm-visible{opacity:1;visibility:visible}
@media(min-width:768px){
[data-mm-toggle]{display:none!important}
[data-mm-menu]{position:static!important;width:auto!important;max-width:none!important;height:auto!important;background:transparent!important;transform:none!important;padding:0!important;overflow:visible!important;flex-direction:row!important}
[data-mm-menu] ul{flex-direction:row;gap:0;align-items:center}
[data-mm-menu] ul li a{padding:8px 16px;border-bottom:none;font-size:inherit}
[data-mm-close]{display:none!important}
[data-mm-overlay]{display:none!important}}
@media(prefers-reduced-motion:reduce){[data-mm-menu],[data-mm-overlay],[data-mm-toggle] span,body.mm-pushed{transition:none!important}}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.7;
  padding-bottom: 0;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

section {
  flex: 1 1 auto;
  padding: 2.6em 1.25em;
  background: var(--bg-secondary);
}

main > section:nth-of-type(odd) { background: var(--bg-primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 0.45em;
}

h1 { font-size: 3.4em; line-height: 1.12; }
h2 { font-size: 2.1em; line-height: 1.2; }
h3 { font-size: 1.35em; line-height: 1.3; }
h4 { font-size: 1.05em; }

p { font-size: 1em; line-height: 1.7; margin: 0 0 0.5em; color: var(--text-secondary); }

a { color: var(--accent-hover); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

ul { margin: 0 0 0.75em; padding-left: 1.15em; }
ol { margin: 0 0 0.75em; padding-left: 1.3em; }
li { margin-bottom: 0.35em; color: var(--text-secondary); }

header { background: var(--bg-primary); border-bottom: 1px solid var(--line); }
nav { font-family: 'Oswald', 'Arial Narrow', sans-serif; }
footer { margin-top: auto; }

form { margin: 0; }
input { width: 100%; }
button { cursor: pointer; font-family: 'Oswald', 'Arial Narrow', sans-serif; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; width: 100%; }

@media (max-width: 400px) { td:first-child { overflow-wrap: anywhere; } }


[data-mm-header] {
  --mm-bg: var(--bg-primary);
  --mm-text: var(--text-primary);
  --mm-primary: var(--accent);
  --mm-overlay-bg: rgba(4, 47, 46, 0.55);
  --mm-drawer-width: 17.5em;
}


.Container { width: 68em; max-width: 100%; margin: 0 auto; }
.Container--narrow { width: 46em; max-width: 100%; margin: 0 auto; }

.Divider { flex: 0 0 auto; height: 5em; background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary)); }
.Divider--up { background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary)); }

.Band-eyebrow {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8em;
  color: var(--accent-hover);
  margin: 0 0 0.6em;
}
.Band-lead { font-size: 1.1em; color: var(--text-secondary); max-width: 40em; }


.Header {
  display: flex;
  align-items: center;
  gap: 0.9em;
  padding: 0.7em 1.25em;
  position: sticky;
  top: 0;
  z-index: 900;
}
.Header-logo { display: inline-flex; align-items: center; }
.Header-logo img { height: 2.4em; width: auto; }

[data-theme="dark"] .Header-logo img { filter: brightness(0) invert(1); }
.Header-nav { margin-left: auto; }
.Header-nav .Header-navLink {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86em;
  font-weight: 500;
  color: var(--text-primary);
}
.Header-nav .Header-navLink:hover { color: var(--accent-hover); text-decoration: none; }
.Header-theme {
  width: 2.75em;
  height: 2.75em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}
.Header-theme:hover { border-color: var(--accent-hover); }
.Header-toggle { margin-left: auto; }
.Header-toggle span { background: var(--text-primary); border-radius: 2px; }
.Header-close { color: var(--text-primary); }


.DiningWelcome { padding: 0; background: var(--bg-primary); }
.DiningWelcome-slider { position: relative; overflow: hidden; display: grid; }
.DiningWelcome-slide {
  grid-area: 1 / 1;
  min-height: 70vh;
  display: grid;
  place-items: center;
  align-content: center;
  row-gap: 0.1em;
  background-size: cover;
  background-position: center;
  
  padding: 3em 26.5em 3em 4.5em;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.DiningWelcome-slide.is-active { opacity: 1; visibility: visible; }
.Hero-slide--teracota { background-image: linear-gradient(158deg, #fdefe6 0%, #f6d9c4 52%, #d9f2ec 100%); }
.Hero-slide--chihlimbar { background-image: linear-gradient(158deg, #fdeed7 0%, #f7d2a4 52%, #ccfbf1 100%); }
.Hero-slide--azur { background-image: linear-gradient(158deg, #e4f2fb 0%, #c6e4f5 52%, #ccfbf1 100%); }
[data-theme="dark"] .Hero-slide--teracota { background-image: linear-gradient(158deg, #2a1a12 0%, #123330 52%, #04211f 100%); }
[data-theme="dark"] .Hero-slide--chihlimbar { background-image: linear-gradient(158deg, #2e2011 0%, #0b423e 52%, #04211f 100%); }
[data-theme="dark"] .Hero-slide--azur { background-image: linear-gradient(158deg, #10283a 0%, #0b423e 52%, #04211f 100%); }

.DiningWelcome-slide > * { max-width: 44em; }
.DiningWelcome-plate {
  width: 15em;
  max-width: 62vw;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.1em;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1.1em 2.4em rgba(4, 47, 46, 0.22);
  outline: 0.4em solid rgba(13, 148, 136, 0.28);
  outline-offset: 0.5em;
}
.DiningWelcome-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; }
.DiningWelcome-title { font-size: 3.4em; margin: 0 0 0.25em; }
.DiningWelcome-lede { font-size: 1.5em; margin: 0 0 0.5em; }
.DiningWelcome-sub { font-size: 1.08em; color: var(--text-secondary); margin: 0 auto 1em; max-width: 34em; }
.DiningWelcome-price { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 1.6em; color: var(--text-primary); margin: 0 0 0.7em; }
.DiningWelcome-old { color: var(--text-muted); text-decoration: line-through; font-size: 0.7em; margin-left: 0.5em; }
.DiningWelcome-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5em; margin: 1.4em 0 0; padding: 0; }
.DiningWelcome-badge {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 2em;
  padding: 0.35em 0.9em;
  font-size: 0.82em;
  color: var(--text-primary);
  margin: 0;
}
[data-theme="dark"] .DiningWelcome-badge { background: rgba(4, 33, 31, 0.6); }
[data-theme="dark"] .DiningWelcome-plate { background: rgba(4, 33, 31, 0.5); }

.DiningWelcome-dots { position: absolute; bottom: 1em; left: 4.5em; right: 26.5em; display: flex; justify-content: center; gap: 0.5em; z-index: 5; }
.DiningWelcome-dot {
  width: 2.75em;
  height: 2.75em;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
}
.DiningWelcome-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7em;
  height: 0.7em;
  margin: -0.35em 0 0 -0.35em;
  border-radius: 50%;
  background: var(--dot-idle);
  transition: background 0.25s ease, transform 0.25s ease;
}
.DiningWelcome-dot.is-active::before { background: var(--accent-hover); transform: scale(1.35); }
.DiningWelcome-arrow {
  position: absolute;
  top: 50%;
  width: 2.75em;
  height: 2.75em;
  margin-top: -1.375em;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-primary);
  font-size: 1.1em;
  line-height: 1;
  z-index: 5;
}
.Hero-arrow--prev { left: 0.6em; } 
.Hero-arrow--next { right: 20.45em; } 
.DiningWelcome-arrow:hover { border-color: var(--accent); color: var(--accent-hover); }
[data-theme="dark"] .DiningWelcome-arrow { background: rgba(4, 33, 31, 0.75); }


.Cta {
  display: inline-block;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
}
.Cta:hover { text-decoration: none; }
.Cta--primary {
  background: var(--accent-hover);
  color: var(--on-accent);
  border: none;
  border-radius: 0.625em;
  padding: 0.85em 1.7em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.25em 0 var(--accent-deep);
  transition: 0.1s;
}
.Cta--primary:hover { background: var(--accent-deep); color: var(--on-accent); }
.Cta--primary:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--accent-deep); }
.Cta--lead { font-size: 1.5em; padding: 1.5em 3em; animation: pulse 2s infinite; }
.Cta--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--line);
  border-radius: 0.625em;
  padding: 0.85em 1.7em;
  font-weight: 500;
}
.Cta--ghost:hover { border-color: var(--accent); color: var(--accent-hover); }
.Cta--block { display: block; width: 100%; }


.VisitUs { padding: 4em 2em; background: var(--bg-tertiary); }
[data-theme="dark"] .VisitUs { background: var(--bg-tertiary); }
.VisitUs-price { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 2.6em; color: var(--text-primary); margin: 0.2em 0 0; }
.VisitUs-old { font-size: 0.42em; color: var(--text-muted); text-decoration: line-through; margin-left: 0.6em; }
.VisitUs-phone { margin-top: 1.1em; font-size: 0.95em; color: var(--text-secondary); }

.Steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5em; padding: 0; margin: 1.8em 0 2em; }
.Steps-item { background: var(--surface); border-radius: var(--radius); padding: 1.25em; margin: 0; box-shadow: 0 4px 14px var(--shade); }
.Steps-num { display: block; font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 2em; line-height: 1; color: var(--warm); margin-bottom: 0.25em; }


.Grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25em; list-style: none; padding: 0; margin: 1.8em 0 0; }
.Card {
  border-radius: 0.875em;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 4px 14px var(--shade);
  margin: 0;
}
.Card-media { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; }
.Card-icon {
  width: 100%;
  height: 5.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--accent);
}
.Card-icon svg { width: 2.4em; height: 2.4em; }
.Card-body { padding: 1.5em; }
.Card-title { font-size: 1.05em; margin: 0 0 0.4em; }
.Card-text { margin: 0; font-size: 0.95em; }


.CulinaryStory { background: var(--bg-primary); }
.CulinaryStory-grid { width: 68em; max-width: 100%; margin: 1.8em auto 0; display: grid; grid-template-columns: 18em 1fr; gap: 2.5em; align-items: start; }
.CulinaryStory-text { min-width: 0; }
.CulinaryStory-frame {
  width: 18em;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.875em;
  overflow: hidden;
  background-color: var(--bg-tertiary);
  background-image: url('/public/media/silk-petal-borcan-teracota.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 14px var(--shade);
}
.CulinaryStory-columns { columns: 3; column-gap: 2em; column-rule: 1px solid var(--line); }
.CulinaryStory-columns p { margin-bottom: 0.5em; }

.DiningExperience { background: var(--bg-secondary); }
.GuestHighlights { background: var(--bg-secondary); }
.MemberQuestions { background: var(--bg-secondary); }
.CookieBar-copy { min-width: 0; }
.Footer-brand { margin-bottom: 0.2em; }


.GuestHighlights-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1em; padding: 0; margin: 1.8em 0 0; }
.GuestHighlights-item { border-left: 3px solid var(--accent); padding: 0.3em 0 0.3em 1.1em; margin: 0; }
.GuestHighlights-title { display: block; font-family: 'Oswald', 'Arial Narrow', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-primary); font-size: 0.95em; }


.Faq { margin-top: 1.8em; }
.Faq-item {
  background: var(--surface);
  border-radius: 0.875em;
  padding: 1.75em;
  box-shadow: 0 6px 20px var(--shade);
  margin-bottom: 1.25em;
}
.Faq-q { font-weight: 700; margin-bottom: 0.6em; color: var(--text-primary); font-size: 1.05em; }
.Faq-a { margin: 0; }


.Footer { background: var(--footer-bg); color: var(--footer-text); padding: 0 0 1.5em; }
.Footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.Footer-panel {
  min-height: 13.75em;
  background: var(--footer-panel);
  padding: 1.75em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6em;
}
.Footer-panelTitle { color: #ffffff; font-size: 1.2em; margin: 0 0 0.2em; }
.Footer-phone { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 1.5em; color: #ffffff; }
.Footer-phone:hover { color: var(--footer-accent); text-decoration: none; }
.Footer-mail { color: var(--footer-text); }
.Footer-meta { font-size: 0.88em; color: var(--footer-text); margin: 0; }
.Footer-col { padding: 1.75em; }
.Footer-colTitle { color: #ffffff; font-size: 0.95em; margin: 0 0 0.8em; }
.Footer-list { list-style: none; padding: 0; margin: 0; }
.Footer-list li { margin-bottom: 0.4em; color: var(--footer-text); }
.Footer-link { color: var(--footer-text); font-size: 0.92em; }
.Footer-link:hover { color: #ffffff; }
.Footer-bar { padding: 1.5em 1.75em 5em; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.Footer-brand img { height: 2.2em; width: auto; margin-bottom: 0.7em; filter: brightness(0) invert(1); }
.Footer-note { font-size: 0.85em; color: var(--footer-text); margin: 0 0 0.4em; max-width: 60em; }
.Footer-cookieBtn { background: none; border: none; color: var(--footer-text); text-decoration: underline; padding: 0; font-family: inherit; font-size: 0.85em; }


.Field { margin-bottom: 0.85em; }
.Field-label { display: block; font-size: 0.85em; font-weight: 500; color: var(--text-primary); margin-bottom: 0.3em; }
.Field-input {
  width: 100%;
  padding: 0.7em 0.85em;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1em;
}
.Field-input:focus { outline: 2px solid var(--accent-hover); outline-offset: 1px; border-color: var(--accent-hover); }
.Check { display: flex; align-items: flex-start; gap: 0.55em; margin: 0.9em 0; font-size: 0.82em; color: var(--text-secondary); }
.Check-input { width: 1.15em; height: 1.15em; flex: 0 0 auto; margin-top: 0.25em; accent-color: var(--accent); }
.Note { font-size: 0.82em; color: var(--text-muted); margin: 0.7em 0 0; }
.Alert { border-left: 3px solid var(--warm); background: var(--warm-soft); color: var(--text-primary); padding: 0.85em 1.1em; border-radius: var(--radius-sm); margin: 0 0 1.2em; }
.Alert--ok { border-left-color: var(--accent); background: var(--bg-tertiary); }


.OrderWidget { position: fixed; right: 1.25em; bottom: 1.25em; z-index: 800; width: 20.5em; max-width: calc(100vw - 2.5em); }
.OrderWidget-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1.2em 2.6em var(--shade);
  padding: 1.25em;
}
.OrderWidget-title { font-size: 1.05em; margin: 0 0 0.15em; }
.OrderWidget-price { font-family: 'Oswald', 'Arial Narrow', sans-serif; color: var(--warm); font-size: 1.05em; margin: 0 0 0.8em; }
.OrderWidget-hide { position: absolute; top: 0.55em; right: 0.7em; background: none; border: none; font-size: 1.4em; line-height: 1; color: var(--text-muted); padding: 0.15em 0.35em; }
.OrderWidget-launcher {
  display: none;
  width: 100%;
  background: var(--accent-hover);
  color: var(--on-accent);
  border: none;
  border-radius: 2em;
  padding: 0.85em 1.7em;
  font-weight: 600;
  box-shadow: 0 0.25em 0 var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.OrderWidget.is-collapsed .OrderWidget-panel { display: none; }
.OrderWidget.is-collapsed .OrderWidget-launcher { display: block; }
.OrderWidget.is-away { display: none; }


.BottomNav { display: none; }


@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -140% 0; } 100% { background-position: 240% 0; } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0.25em 0 var(--accent-deep); }
  50% { box-shadow: 0 0.25em 0 var(--accent-deep), 0 0 0 0.7em rgba(13, 148, 136, 0.14); }
}
.Spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
}
.Spinner--sm { width: 1.1em; height: 1.1em; border-width: 2px; position: static; margin: 0 0.5em 0 0; display: inline-block; vertical-align: -0.15em; }
.is-ready .Spinner { display: none; }
.Skeleton {
  background-image: linear-gradient(100deg, var(--bg-tertiary) 30%, var(--bg-secondary) 50%, var(--bg-tertiary) 70%);
  background-size: 220% 100%;
  animation: shimmer 1.4s linear infinite;
}
.is-ready.Skeleton, .is-ready .Skeleton { animation: none; background-image: none; }
.is-sending .Cta--primary { opacity: 0.65; pointer-events: none; }


.Page { padding: 2.6em 1.25em; background: var(--bg-primary); }
.Page-head { border-bottom: 1px solid var(--line); padding-bottom: 1.1em; margin-bottom: 1.6em; }
.Page-updated { font-size: 0.85em; color: var(--text-muted); margin: 0; }
.Prose h2 { font-size: 1.35em; margin-top: 1.6em; }
.Prose h3 { font-size: 1.05em; margin-top: 1.2em; }
.Prose p, .Prose li { font-size: 0.98em; }
.OrderPanel { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5em; align-items: start; margin-top: 1.8em; }
.OrderPanel-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75em; box-shadow: 0 6px 20px var(--shade); }
.OrderPanel-side { padding-top: 0.4em; }
.OrderPanel-frame {
  width: 14em;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0.875em;
  background-color: var(--bg-tertiary);
  background-image: url('/public/media/silk-petal-borcan-teracota.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 1.2em;
}
.OrderPanel-price { font-family: 'Oswald', 'Arial Narrow', sans-serif; font-size: 2.2em; color: var(--text-primary); margin: 0 0 0.3em; }


@media (max-width: 1024px) {
  .Container, .Container--narrow { width: 100%; }
  .Grid { grid-template-columns: repeat(2, 1fr); }
  .CulinaryStory-grid { grid-template-columns: 1fr; }
  .CulinaryStory-columns { columns: 2; }
  .Footer-top { grid-template-columns: 1fr 1fr; }
  .Footer-panel { grid-column: 1 / -1; }
  .OrderPanel { grid-template-columns: 1fr; }
  h1, .DiningWelcome-title { font-size: 2.6em; }
  .DiningWelcome-slide { padding: 2.5em 26.5em 2.5em 4.5em; }
  .DiningWelcome-dots { left: 4.5em; }
}

@media (max-width: 768px) {
  section { padding: 2em 1em; }
  .Grid, .Steps, .GuestHighlights-list { grid-template-columns: 1fr; }
  .CulinaryStory-columns { columns: 1; column-rule: none; }
  .Footer-top { grid-template-columns: 1fr; }
  .Footer-bar { padding-bottom: 9em; }
  .DiningWelcome-slide { min-height: auto; padding: 2.2em 1.25em 4.5em; }
  .DiningWelcome-dots { left: 0; right: 0; }
  .DiningWelcome-plate { width: 11em; }
  h1, .DiningWelcome-title { font-size: 2.1em; }
  h2 { font-size: 1.6em; }
  .DiningWelcome-lede { font-size: 1.2em; }
  .Cta--lead { font-size: 1.1em; padding: 1em 1.6em; width: 100%; }
  .VisitUs { padding: 2.2em 1em; }
  .VisitUs-price { font-size: 2em; }
  .Header { padding: 0.55em 1em; }
  .Header-logo img { height: 2em; }
  .Header-nav { margin-left: 0; }
  .DiningWelcome-arrow { display: none; }
  .OrderWidget { right: 0.75em; left: 0.75em; bottom: 4.6em; width: auto; max-width: none; }
  .BottomNav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-around;
    align-items: stretch;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -0.4em 1.2em var(--shade);
    z-index: 950;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .BottomNav-item { flex: 1 1 0; margin: 0; }
  .BottomNav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15em;
    min-height: 3.6em;
    padding: 0.4em 0.2em;
    font-family: 'Oswald', 'Arial Narrow', sans-serif;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
  }
  .BottomNav-link:hover, .BottomNav-link.is-primary { color: var(--accent); text-decoration: none; }
  .BottomNav-link svg { width: 1.5em; height: 1.5em; }
}


.CookieBar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -0.6em 2em rgba(4, 47, 46, 0.18);
  padding: 1.1em 1.25em;
}
.CookieBar[hidden] { display: none; }
.CookieBar-inner { width: 68em; max-width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 1.25em; align-items: center; }
.CookieBar-title { font-size: 1.05em; margin: 0 0 0.25em; }
.CookieBar-text { font-size: 0.86em; margin: 0; color: var(--text-secondary); }
.CookieBar-actions { display: flex; flex-wrap: wrap; gap: 0.55em; }
.CookieBar-btn {
  border: 1px solid var(--accent-hover);
  border-radius: 0.625em;
  padding: 0.6em 1.2em;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent-hover);
  color: var(--on-accent);
}
.CookieBar-btn--alt { background: transparent; color: var(--text-primary); border-color: var(--line); }
.CookieBar-btn--alt:hover { border-color: var(--accent); color: var(--accent-hover); }
.CookieBar-panel { width: 68em; max-width: 100%; margin: 1em auto 0; border-top: 1px solid var(--line); padding-top: 0.9em; }
.CookieBar-panel[hidden] { display: none; }
.CookieCat { display: flex; align-items: flex-start; gap: 0.6em; margin-bottom: 0.7em; }
.CookieCat-input { width: 1.15em; height: 1.15em; flex: 0 0 auto; margin-top: 0.3em; accent-color: var(--accent); }
.CookieCat-title { display: block; font-size: 0.9em; font-weight: 600; color: var(--text-primary); }
.CookieCat-desc { display: block; font-size: 0.8em; color: var(--text-muted); }
.cc-link { color: var(--accent-hover); text-decoration: underline; }

@media (max-width: 768px) {
  .CookieBar { padding: 0.9em 1em; max-height: 72vh; overflow-y: auto; }
  .CookieBar-inner { grid-template-columns: 1fr; }
  .CookieBar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .CookieBar-btn { width: 100%; }
}

/* hero-photo-layer: generated background, kept behind the copy */
section.DiningWelcome { position: relative; isolation: isolate; }
section.DiningWelcome::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('/public/media/hero-petal-blush.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.24;
  pointer-events: none;
}
