:root {
  --color-bg: #fcfaf7;
  --color-surface: #ffffff;
  --color-surface-muted: #f3ede6;
  --color-text: #2f2925;
  --color-accent: #8d5f4d;
  --color-accent-dark: #6d4738;
  --color-border: #decfc3;
  --color-shadow: rgba(47, 41, 37, 0.08);
  --container: 1120px;
  --radius: 18px;
}

header,
footer {
  display: none;
}

/* coming soon */
body {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;

  div.coming-soon {
    background: #fff;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;

    img {
      width: 100dvw;
      max-width: 400px;
      display: block;
      margin: 1rem 3rem;
    }
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

a {
  color: var(--color-accent-dark);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252, 250, 247, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
}

.site-nav {
  display: none;
  position: absolute;
  top: 72px;
  right: 1rem;
  min-width: 220px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 12px 32px var(--color-shadow);
}

.site-nav.is-open {
  display: grid;
  gap: 0.75rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text);
}

/* Layout */
.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--color-surface-muted);
}

.section-accent {
  background: #efe2d8;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.lede,
.section-copy {
  max-width: 65ch;
  font-size: 1.05rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover,
.button:focus-visible {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.button-secondary {
  background: transparent;
  color: var(--color-accent-dark);
}

/* Cards */
.panel,
.card {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 10px 24px var(--color-shadow);
}

.card-grid,
.details-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}

.prose-flow {
  display: grid;
  gap: 2rem;
}

.content-block {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.rich-content figure {
  margin: 1.5rem 0;
}

.hero-media img,
.gallery-item img {
  width: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    min-width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .card-grid,
  .details-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
