:root {
  --cream: #fff8f0;
  --pink: #ff8fab;
  --pink-dark: #f4638a;
  --mint: #8fd9c4;
  --choc: #4a2c2a;
  --ink: #3b2f2a;
  --muted: #7a6a63;
  --white: #ffffff;
  --navy: #142654;
  --navy-deep: #0c1a3d;
  --gold: #f4c430;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(74, 44, 42, 0.1);
  --font-head: "Fredoka", "Segoe UI", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--choc);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--pink-dark);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(74, 44, 42, 0.08);
}

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

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--choc);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--pink-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--choc);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(12, 26, 61, 0.94) 0%,
    rgba(12, 26, 61, 0.86) 32%,
    rgba(12, 26, 61, 0.35) 62%,
    rgba(12, 26, 61, 0) 80%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 100px 0 96px;
}

.hero-kicker {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-title span {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: #e8ecf7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-feature-icon {
  font-size: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: var(--navy-deep);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  padding: 26px 0 16px;
  text-align: center;
}

.hero-ribbon p {
  margin: 0;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
}

.hero-ribbon span {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--choc);
  border-color: var(--choc);
}

.btn-ghost:hover {
  background: var(--choc);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy-deep);
}

/* Sections */
.section {
  padding: 90px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Flavors */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease;
}

.flavor-card:hover {
  transform: translateY(-6px);
}

.flavor-emoji {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.flavor-card h3 {
  font-size: 1.15rem;
}

.flavor-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* About */
.about {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  color: var(--muted);
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.3rem;
}

.badge span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

/* Visit */
.visit-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.visit-card {
  background: var(--mint);
  background: linear-gradient(160deg, #d7f5ec, #eafaf5);
  border-radius: var(--radius);
  padding: 32px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(74, 44, 42, 0.1);
  font-weight: 600;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Contact */
.contact-inner {
  max-width: 560px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 700;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #e6d9d0;
  background: var(--cream);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.form-note {
  margin: 14px 0 0;
  font-weight: 700;
  color: var(--pink-dark);
  min-height: 1.2em;
}

/* Legal pages */
.legal-content {
  max-width: 720px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal-updated {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2em;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 1.6em;
  text-align: left;
}

.legal-content p {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--choc);
  color: #f4e9e2;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #f4e9e2;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(74, 44, 42, 0.08);
    display: none;
  }

  .nav.open {
    display: flex;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(12, 26, 61, 0.55) 0%,
      rgba(12, 26, 61, 0.88) 55%,
      rgba(12, 26, 61, 0.94) 100%
    );
  }

  .hero-inner {
    max-width: none;
    padding: 80px 0 110px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}
