:root {
  --cream: #f7efe7;
  --peach: #f4d3c7;
  --rose: #e6b7c3;
  --mocha: #5c3f3a;
  --cocoa: #3f2a26;
  --sage: #a9b7a3;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(92, 63, 58, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  background: linear-gradient(180deg, #fff9f4 0%, #f7efe7 45%, #f9f4f0 100%);
  color: var(--cocoa);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 249, 244, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(92, 63, 58, 0.08);
}

.nav-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mocha);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mocha);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 100px;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--mocha);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--mocha);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: var(--mocha);
  color: var(--mocha);
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  font-size: 0.95rem;
}

.meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  background: radial-gradient(circle at top, #ffe6d9 0%, #f5c9b7 45%, #f0b7b0 100%);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 18% auto auto;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  transform: rotate(18deg);
}

.pastry-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 20px;
  width: min(320px, 80%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.pastry-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.pastry-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
}

.floating-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(92, 63, 58, 0.1);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 24px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1.3rem, 2.8rem);
  margin-bottom: 12px;
}

.menu {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.menu-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(92, 63, 58, 0.12);
}

.menu-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 14px;
}

.menu-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.about {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2vw + 1.3rem, 2.8rem);
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  gap: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(92, 63, 58, 0.1);
}

.about-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8e4d9 0%, #f1c6c8 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.about-visual .grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(92, 63, 58, 0.08) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.25;
}

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.cta {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 24px;
}

.cta-inner {
  background: linear-gradient(120deg, #e6b7c3 0%, #f4d3c7 50%, #f7efe7 100%);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.contact {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 30px rgba(92, 63, 58, 0.1);
}

.site-footer {
  padding: 40px 24px 60px;
  text-align: center;
  color: var(--mocha);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 60px;
  }

  .cta-inner {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 24px;
    flex-direction: column;
    background: rgba(255, 249, 244, 0.98);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    gap: 28px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .cta-inner {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .nav {
    left: 24px;
    right: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-inner {
    padding: 22px;
  }
}
