:root {
  --blue: #86c6ca;
  --blue-soft: #dff2f3;
  --pink: #dea0aa;
  --pink-soft: #f8e8ea;
  --green: #5f8e4d;
  --green-soft: #e6f0e1;
  --gold: #e0b35f;
  --gold-soft: #fbefd4;
  --ink: #2a211e;
  --muted: #75625d;
  --cream: #fffaf4;
  --white: #ffffff;
  --line: #eadfdb;
  --shadow: 0 18px 40px rgba(28, 26, 26, 0.09);
  --shadow-soft: 0 10px 26px rgba(28, 26, 26, 0.07);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(44px, 7vw, 90px) clamp(18px, 4vw, 56px) 42px;
  min-height: min(760px, calc(100vh - 72px));
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 650;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.16;
}

.hero-copy p,
.section-heading p,
.split-section p,
.about-section p,
.email-band p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--gold);
}

.button-secondary {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.52fr;
  gap: 16px;
  min-height: 460px;
}

.photo-stack {
  display: grid;
  gap: 16px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-photo.large {
  min-height: 460px;
}

.section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 4vw, 56px);
}

.section-tint {
  background: var(--pink-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.album-card,
.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.album-card {
  display: block;
  width: 100%;
  padding: 0;
  border-top: 4px solid var(--pink);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.album-card.accent-blue {
  border-top-color: var(--blue);
}

.album-card.accent-green {
  border-top-color: var(--green);
}

.album-card.accent-gold {
  border-top-color: var(--gold);
}

.album-card.is-active {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.album-card:hover {
  transform: translateY(-2px);
}

.album-card {
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.album-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gold-soft);
}

.album-copy {
  padding: 18px;
}

.album-copy h3 {
  margin-bottom: 6px;
}

.album-copy p,
.menu-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.album-showcase {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.showcase-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.showcase-heading div {
  max-width: 720px;
}

.showcase-heading p {
  color: var(--muted);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.showcase-grid img {
  width: 100%;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.empty-album-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 26px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  padding: 24px;
  border-top: 4px solid var(--gold);
}

.menu-card h3 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-description {
  margin-bottom: 14px;
  color: var(--muted);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(234, 223, 219, 0.72);
}

.menu-card h3 + .menu-item {
  border-top: 0;
}

.menu-description + .menu-item {
  border-top: 0;
}

.menu-notes {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 14px 0 0 18px;
  border-top: 1px solid rgba(234, 223, 219, 0.72);
  color: var(--muted);
}

.menu-flavor-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(234, 223, 219, 0.72);
}

.menu-flavor-block strong {
  display: block;
  margin-bottom: 8px;
}

.menu-flavors {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.menu-flavors li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.menu-item span {
  color: var(--green);
  font-weight: 800;
  text-align: right;
}

.dessert-table-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.dessert-table-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
}

.dessert-table-feature p {
  color: var(--muted);
}

.dessert-table-feature .button {
  margin-top: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
}

.inquiry-card,
.signup-form {
  display: grid;
  gap: 14px;
}

.inquiry-card {
  align-content: center;
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-card p {
  color: var(--muted);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cbc6;
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.email-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-soft), var(--pink-soft));
  border-block: 1px solid rgba(134, 198, 202, 0.42);
}

.signup-form {
  grid-template-columns: 1fr auto;
}

.signup-form .form-note {
  grid-column: 1 / -1;
}

.signup-link {
  justify-items: start;
}

.signup-link .button {
  width: min(100%, 240px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) auto;
  align-items: center;
  gap: 24px;
}

.about-section div {
  max-width: 720px;
}

.about-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  object-position: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .split-section,
  .email-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .dessert-table-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    gap: 28px;
    padding-bottom: 56px;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-photo.large {
    min-height: 0;
  }

  .hero-photo.small {
    aspect-ratio: 1 / 1;
  }

  .album-grid,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full {
    grid-column: auto;
  }

  .about-section,
  .site-footer {
    align-items: flex-start;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .menu-item span {
    text-align: left;
  }

  .menu-flavors {
    columns: 1;
  }
}
