:root {
  --color-primary: #2c6e49;
  --color-secondary: #f4f1de;
  --color-bg-morning: #f9f7f2;
  --color-bg-evening: #1a1b1e;
  --color-accent-morning: #a0c4ff;
  --color-accent-evening: #ffbf69;
  --color-bridge: #b8b1c4;
  --color-text-dark: #1f2430;
  --color-text-light: #f5f6f8;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Fraunces", serif;
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.2rem;
  --shadow-soft: 0 0.6rem 2rem rgba(20, 22, 28, 0.14);
  --transition-fast: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--color-bg-morning);
  color: var(--color-text-dark);
  transition: background var(--transition-fast), color var(--transition-fast);
  overflow-x: hidden;
}

body.mode-evening {
  background: var(--color-bg-evening);
  color: var(--color-text-light);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.3) 0.1rem, transparent 0.1rem),
    radial-gradient(circle at 80% 70%, rgba(100, 100, 100, 0.3) 0.1rem, transparent 0.1rem);
  background-size: 1.6rem 1.6rem;
  animation: grainShift 10s steps(10) infinite;
  z-index: -1;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(1%, 1%); }
  100% { transform: translate(0, 0); }
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: var(--space-md) 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(0.4rem);
}

body.mode-evening .site-header-shell {
  background: rgba(26, 27, 30, 0.92);
}

.brand-mark {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  letter-spacing: 0.03rem;

}

main{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.desktop-link-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.desktop-link-row a {
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.desktop-link-row a:hover {
  background: rgba(44, 110, 73, 0.12);
}

.menu-toggle-button {
  border: 0.06rem solid currentColor;
  border-radius: 0.5rem;
  padding: 0.45rem 0.7rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-overlay-panel {
  position: fixed;
  top: 5.2rem;
  right: 5%;
  width: min(90%, 20rem);
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(0.6rem);
  border: 0.06rem solid rgba(31, 36, 48, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  display: none;
  z-index: 25;
}

body.mode-evening .menu-overlay-panel {
  background: rgba(26, 27, 30, 0.93);
}

.menu-overlay-panel.is-open {
  display: grid;
  gap: 0.45rem;
}

.menu-overlay-panel a {
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
}

.menu-overlay-panel a:hover {
  background: rgba(160, 196, 255, 0.2);
}

.hero-ribbon {
  width: 100%;
  margin-left: 0;
  min-height: 21rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-ribbon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 17, 24, 0.68), rgba(15, 17, 24, 0.3));
  z-index: 2;
}

.hero-copy-box {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  width: min(92%, 62rem);
  color: #fefefe;
  background: rgba(10, 10, 12, 0.32);
  backdrop-filter: blur(0.3rem);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.content-wrap {
  width: min(92%, 72rem);
  margin: 0 auto;
}

.content-section {
  margin: 2.2rem 0;
}

.bento-layout-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin: 0 auto;
  align-items: stretch;
}

.panel-card {
  background: rgba(255, 255, 255, 0.55);
  border: 0.06rem solid rgba(31, 36, 48, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

body.mode-evening .panel-card {
  background: rgba(255, 255, 255, 0.04);
}

.span-12 { grid-column: span 12; }
.span-8 { grid-column: span 8; }
.span-7 { grid-column: span 7; }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }

.image-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 11rem;
  object-fit: cover;
  display: block;
}

.section-heading {
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-top: 0;
}

.cta-link {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 0.06rem solid currentColor;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.privacy-popup-wrap {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(92%, 36rem);
  background: rgba(16, 18, 26, 0.94);
  color: #f7f7f7;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: none;
  z-index: 40;
}

.privacy-popup-wrap.visible {
  display: block;
}

.small-footer-shell {
  margin-top: var(--space-xl);
  padding: var(--space-lg) 5%;
  border-top: 0.06rem solid rgba(31, 36, 48, 0.12);
  display: grid;
  gap: var(--space-sm);
}

.small-footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.date,
.year-slot {
  font-size: 0.9rem;
  opacity: 0.84;
}

.contact-form-grid {
  display: grid;
  gap: 0.8rem;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  border: 0.06rem solid rgba(31, 36, 48, 0.3);
  border-radius: 0.5rem;
  padding: 0.7rem;
  font: inherit;
}

.contact-form-grid button {
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
}

iframe {
  border: 0;
  width: 100%;
  min-height: 18rem;
  border-radius: var(--radius-md);
}

@media (max-width: 1023px) {
  .desktop-link-row {
    display: none;
  }
}

@media (min-width: 1024px) {
  .menu-toggle-button {
    display: none;
  }

  .menu-overlay-panel {
    width: min(26rem, 36%);
  }
}

@media (max-width: 900px) {
  .span-8,
  .span-7,
  .span-6,
  .span-5,
  .span-4 {
    grid-column: span 12;
  }

  .product-cards-grid {
    grid-template-columns: 1fr;
  }
}
