/* Domestic Harmony · Soft Geometric Modularity — single global stylesheet */

:root {
  --color-room: #e2725b;
  --color-light: #f3e5d8;
  --color-shadow: #4b3621;
  --color-panel: rgba(243, 229, 216, 0.72);
  --color-glass-border: rgba(75, 54, 33, 0.18);
  --color-accent-soft: rgba(226, 114, 91, 0.35);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --space-xs: 0.35rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.375rem;
  --shadow-soft: 0 0.6rem 2rem rgba(75, 54, 33, 0.12);
  --shadow-lift: 0 1rem 2.5rem rgba(75, 54, 33, 0.18);
  --transition-fast: 0.28s ease;
  --transition-slow: 0.55s ease;
  --header-offset: 5.5rem;
  --max-readable: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 100%;
  line-height: 1.65;
  color: var(--color-shadow);
  background: linear-gradient(165deg, var(--color-light) 0%, #ead9ca 55%, #f6eee4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-room);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

a:hover,
a:focus-visible {
  color: var(--color-shadow);
}

:focus-visible {
  outline: 2px solid var(--color-room);
  outline-offset: 3px;
}

.shell-skip-link {
  position: absolute;
  left: -999rem;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.shell-skip-link:focus {
  left: var(--space-md);
  top: var(--space-md);
  width: auto;
  height: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-light);
  z-index: 3000;
  border-radius: var(--radius-sm);
}

.shell-page-frame {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.shell-header-slab {
  position: relative;
  z-index: 200;
  background: linear-gradient(
    120deg,
    rgba(243, 229, 216, 0.92) 0%,
    rgba(255, 252, 248, 0.88) 45%,
    rgba(243, 229, 216, 0.95) 100%
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.shell-header-inner {
  width: min(100%, var(--max-readable));
  margin-inline: auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.shell-brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  letter-spacing: 0.02em;
  margin: 0;
}

.shell-brand-title a {
  color: var(--color-shadow);
  text-decoration: none;
}

.shell-brand-title a:hover {
  color: var(--color-room);
}

.shell-desktop-nav-row {
  display: none;
  flex: 1;
  justify-content: center;
}

.shell-desktop-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  justify-content: center;
}

.shell-desktop-nav-list a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--color-shadow);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid transparent;
}

.shell-desktop-nav-list a:hover,
.shell-desktop-nav-list a[aria-current="page"] {
  border-color: var(--color-room);
  color: var(--color-room);
}

.shell-burger-toggle {
  order: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.shell-burger-toggle:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

.shell-burger-toggle .shell-burger-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-shadow);
  position: relative;
}

.shell-burger-toggle .shell-burger-line::before,
.shell-burger-toggle .shell-burger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-shadow);
  transition: transform var(--transition-fast);
}

.shell-burger-toggle .shell-burger-line::before {
  top: -6px;
}

.shell-burger-toggle .shell-burger-line::after {
  top: 6px;
}

.shell-burger-toggle[aria-expanded="true"] .shell-burger-line {
  background: transparent;
}

.shell-burger-toggle[aria-expanded="true"] .shell-burger-line::before {
  transform: translateY(6px) rotate(45deg);
}

.shell-burger-toggle[aria-expanded="true"] .shell-burger-line::after {
  transform: translateY(-6px) rotate(-45deg);
}

.shell-nav-overlay-panel {
  position: fixed;
  inset: 0;
  background: rgba(75, 54, 33, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 250;
}

.shell-nav-overlay-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.shell-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 92vw);
  height: 100vh;
  background: linear-gradient(200deg, #fffdf9 0%, var(--color-light) 100%);
  border-left: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-lift);
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 260;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.shell-mobile-drawer.is-open {
  transform: translateX(0);
}

.shell-mobile-drawer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 var(--space-md);
  color: var(--color-shadow);
}

.shell-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.shell-mobile-nav-list a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--color-shadow);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-glass-border);
}

.shell-mobile-nav-list a:hover,
.shell-mobile-nav-list a[aria-current="page"] {
  color: var(--color-room);
}

.shell-main-stage {
  flex: 1;
  width: min(100%, var(--max-readable));
  margin-inline: auto;
  padding: var(--space-lg);
}

.shell-main-stage.shell-main-flush {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.shell-footer-block {
  margin-top: auto;
  padding: var(--space-lg);
  background: rgba(75, 54, 33, 0.06);
  border-top: 1px solid var(--color-glass-border);
}

.shell-footer-inner {
  width: min(100%, var(--max-readable));
  margin-inline: auto;
  display: grid;
  gap: var(--space-lg);
}

.shell-footer-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shell-footer-nav-grid a {
  font-size: 0.88rem;
  color: var(--color-shadow);
  text-decoration: none;
}

.shell-footer-nav-grid a:hover {
  color: var(--color-room);
}

.shell-footer-meta {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(75, 54, 33, 0.78);
}

.shell-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero-banner-stack {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(226, 114, 91, 0.18) 0%,
    rgba(243, 229, 216, 0.55) 40%,
    rgba(255, 255, 255, 0.35) 100%
  );
  border-bottom: 1px solid var(--color-glass-border);
}

.hero-banner-copy {
  width: min(100%, var(--max-readable));
  margin-inline: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-md);
  text-align: center;
}

.hero-banner-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(75, 54, 33, 0.65);
  margin: 0 0 var(--space-sm);
}

.hero-banner-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  color: var(--color-shadow);
}

.hero-banner-lede {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(75, 54, 33, 0.88);
}

.hero-banner-visual {
  position: relative;
  overflow: hidden;
}

.hero-banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(243, 229, 216, 0.15) 0%,
    transparent 35%
  );
  pointer-events: none;
}

.hero-banner-photo {
  display: block;
  width: 100%;
  max-height: min(38vh, 26rem);
  object-fit: cover;
  object-position: center;
}

.section-modular-panel {
  padding: var(--space-xl) var(--space-lg);
}

.section-modular-inner {
  width: min(100%, var(--max-readable));
  margin-inline: auto;
  display: grid;
  gap: var(--space-lg);
}

.section-grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 48rem) {
  .section-grid-split.shell-split-reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .section-grid-split:not(.shell-split-reverse) {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .shell-split-reverse .section-copy-column {
    order: 2;
  }

  .shell-split-reverse .section-visual-column {
    order: 1;
  }
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(75, 54, 33, 0.55);
  margin: 0 0 var(--space-sm);
}

.section-heading-primary {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  margin: 0 0 var(--space-md);
  color: var(--color-shadow);
}

.section-body-text {
  margin: 0 0 var(--space-md);
  max-width: 38rem;
}

.section-inlay-card {
  background: var(--color-panel);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.section-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.section-visual-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 22rem;
}

.banner-stack-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-soft);
}

.banner-stack-copy {
  padding: var(--space-lg);
  text-align: center;
}

.banner-stack-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: min(32vh, 24rem);
}

.tile-grid-harmony {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 40rem) {
  .tile-grid-harmony {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 60rem) {
  .tile-grid-harmony.tile-span-three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tile-card-quiet {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.55);
}

.tile-card-quiet h3 {
  font-family: var(--font-display);
  margin-top: 0;
  font-size: 1.2rem;
}

.ghost-frame-stage {
  position: relative;
  margin-top: var(--space-md);
  min-height: 11rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(226, 114, 91, 0.45);
  background: radial-gradient(
    circle at 50% 80%,
    rgba(226, 114, 91, 0.12),
    transparent 60%
  );
  overflow: hidden;
}

.ghost-frame-caption {
  font-size: 0.82rem;
  margin: var(--space-sm) 0 0;
  color: rgba(75, 54, 33, 0.72);
}

.ghost-silhouette {
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 5rem;
  height: 9rem;
  margin-left: -2.5rem;
  border-radius: 40% 40% 35% 35%;
  background: linear-gradient(
    180deg,
    rgba(75, 54, 33, 0.22),
    rgba(226, 114, 91, 0.35)
  );
  opacity: 0.45;
  filter: blur(0.5px);
}

.ghost-silhouette::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  margin-left: -1.3rem;
  border-radius: 50%;
  background: rgba(75, 54, 33, 0.25);
}

.ghost-tempo-slow {
  animation: ghostPulseSlow 6s ease-in-out infinite;
}

.ghost-tempo-mid {
  animation: ghostPulseMid 4s ease-in-out infinite;
}

.ghost-tempo-brisk {
  animation: ghostPulseBrisk 2.8s ease-in-out infinite;
}

@keyframes ghostPulseSlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.38;
  }
  50% {
    transform: translateY(-12%) scale(1.04);
    opacity: 0.55;
  }
}

@keyframes ghostPulseMid {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-16%) scale(1.06);
    opacity: 0.58;
  }
}

@keyframes ghostPulseBrisk {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.42;
  }
  50% {
    transform: translateY(-20%) scale(1.08);
    opacity: 0.62;
  }
}

.rhythm-board-shell {
  display: grid;
  gap: var(--space-lg);
}

.rhythm-counter-panel {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
}

.rhythm-counter-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  margin: 0;
  color: var(--color-room);
}

.rhythm-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.btn-quiet-primary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-room);
  background: var(--color-room);
  color: #fffdf9;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-quiet-primary:hover {
  background: #c95e47;
  transform: translateY(-1px);
}

.btn-quiet-ghost {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-glass-border);
  background: transparent;
  color: var(--color-shadow);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.btn-quiet-ghost:hover {
  border-color: var(--color-room);
  background: rgba(226, 114, 91, 0.08);
}

.contact-layout-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 56.25rem) {
  .contact-layout-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form-shell {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-field-label {
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field-input,
.form-field-textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-shadow);
}

.form-field-textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-consent-row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
}

.contact-info-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  background: var(--color-panel);
}

.contact-map-embed {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 16rem;
  border: 0;
}

.product-grid-simple {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 45rem) {
  .product-grid-simple {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card-shell {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-card-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 14rem;
}

.product-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-price-tag {
  margin-top: auto;
  font-weight: 600;
  color: var(--color-room);
}

.thanks-hero-panel {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
}

.error-stack-panel {
  text-align: center;
  padding: var(--space-xl);
}

.legal-prose-wrap {
  max-width: 48rem;
  margin-inline: auto;
}

.legal-prose-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-top: var(--space-lg);
}

.legal-prose-wrap p,
.legal-prose-wrap li {
  font-size: 0.95rem;
}

.legal-updated-line {
  font-size: 0.88rem;
  color: rgba(75, 54, 33, 0.65);
  margin-bottom: var(--space-lg);
}

.cookie-consent-panel {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 28rem;
  margin-inline: auto;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(12px);
  z-index: 400;
  display: none;
}

.cookie-consent-panel.is-visible {
  display: block;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.menu-board-section {
  margin-bottom: var(--space-xl);
}

.menu-course-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  border-bottom: 1px solid var(--color-glass-border);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

.menu-item-row {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-bottom: 1px dashed rgba(75, 54, 33, 0.15);
}

@media (min-width: 45rem) {
  .menu-item-row {
    grid-template-columns: 1fr 2fr;
    align-items: baseline;
  }
}

.menu-item-title {
  font-weight: 600;
  margin: 0;
}

.menu-item-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(75, 54, 33, 0.78);
}

@media (min-width: 64rem) {
  .shell-burger-toggle {
    display: none;
  }

  .shell-desktop-nav-row {
    display: flex;
  }

  .shell-mobile-drawer,
  .shell-nav-overlay-panel {
    display: none !important;
  }
}

@media (max-width: 63.9375rem) {
  .shell-desktop-nav-row {
    display: none;
  }
}
