:root {
  --cream: #faf3e9;
  --cream-2: #f3e8d8;
  --sand: #e8d7bd;
  --caramel: #c89b6a;
  --espresso: #3b2a20;
  --coffee: #4a362a;
  --mocha: #7a5c43;
  --latte: #b99a7c;
  --white: #fffdf9;
  --text: #3b2a20;
  --muted: #8a6f57;
  --shadow: 0 10px 30px rgba(59, 42, 32, 0.12);
  --radius: 20px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--espresso);
}

.brand-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--coffee);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--caramel);
}

.nav-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--caramel);
  color: var(--espresso);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--espresso);
  border-radius: 3px;
  transition: 0.3s;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 18, 13, 0.82) 0%, rgba(26, 18, 13, 0.45) 55%, rgba(26, 18, 13, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: max(20px, calc((100vw - 1140px) / 2));
  padding: 60px 20px;
  color: var(--cream);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
}

.accent {
  color: var(--caramel);
  font-style: italic;
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.15rem;
  color: rgba(250, 243, 233, 0.92);
  max-width: 520px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--caramel);
  color: var(--espresso);
}

.btn-primary:hover {
  background: #b8895a;
}

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

.btn-ghost:hover {
  background: var(--cream);
  color: var(--espresso);
}

.hero-rating {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-stars {
  color: var(--caramel);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.rating-text {
  font-size: 0.9rem;
  color: rgba(250, 243, 233, 0.85);
}

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

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

.eyebrow.center,
.section-title.center,
.section-sub.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--espresso);
}

.section-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-sub.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-img-second {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 45%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--cream);
  box-shadow: var(--shadow);
}

.lead {
  font-size: 1.2rem;
  color: var(--coffee);
  margin-top: 16px;
}

.text {
  margin-top: 16px;
  color: var(--muted);
}

.about-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  color: var(--coffee);
}

.about-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--caramel);
}

/* ---------- Menu ---------- */
.menu {
  background: var(--cream-2);
}

.menu-wrap {
  margin-top: 44px;
  display: grid;
  gap: 16px;
}

.menu-category {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(59, 42, 32, 0.06);
  overflow: hidden;
}

.menu-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  text-align: left;
}

.menu-head:hover {
  background: var(--cream);
}

.cat-icon {
  font-size: 1.5rem;
}

.cat-caret {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--caramel);
  border-bottom: 2px solid var(--caramel);
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.menu-head[aria-expanded="true"] .cat-caret {
  transform: rotate(-135deg);
}

.menu-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.menu-body.open {
  max-height: 1200px;
  padding: 4px 26px 22px;
}

.menu-item {
  padding: 16px 0;
  border-top: 1px dashed var(--sand);
}

.menu-item:first-child {
  border-top: none;
}

.item-name {
  font-weight: 600;
  color: var(--coffee);
  font-size: 1.05rem;
}

.item-price {
  float: right;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--caramel);
}

.item-desc {
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 460px;
}

.menu-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-subnote {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--caramel);
}

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ---------- Atmosphere ---------- */
.atmos-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.atmos-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 3px 14px rgba(59, 42, 32, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.atmos-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.atmos-icon {
  font-size: 2rem;
}

.atmos-card h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--espresso);
}

.atmos-card p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--espresso);
  color: var(--cream);
}

.reviews .eyebrow,
.reviews .section-title {
  color: var(--cream);
}

.reviews .section-sub {
  color: rgba(250, 243, 233, 0.85);
}

.reviews-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(250, 243, 233, 0.14);
  border-radius: var(--radius);
  padding: 28px;
}

.review blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--cream-2);
}

.review figcaption {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--caramel);
  font-weight: 500;
}

/* ---------- Contacts ---------- */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.c-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}

.c-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--coffee);
}

a.c-value:hover {
  color: var(--caramel);
}

.contact-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--cream-2);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
}

.contacts-map {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--coffee);
  color: var(--cream-2);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-top {
  color: var(--caramel);
  font-weight: 600;
}

.footer-top:hover {
  color: var(--cream);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 8px;
    border-radius: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-img {
    height: 360px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip img:last-child {
    display: none;
  }

  .atmos-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .atmos-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-img-second {
    display: none;
  }

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

  .item-price {
    float: none;
    display: block;
    margin-top: 2px;
  }

  .brand-logo {
    height: 40px;
  }
}
