:root {
  --cream: #f6efe4;
  --cream-deep: #ece2d0;
  --paper: #faf6ee;
  --walnut: #2b1d14;
  --espresso: #1a120c;
  --coffee: #4a3527;
  --crema: #c9a47a;
  --crema-soft: #d9b894;
  --terracotta: #b0623a;
  --moss: #6b6244;
  --ink: #2a2018;
  --ink-soft: #5b4d40;
  --muted: #8b7e6e;
  --line: #e3d6c1;
  --shadow-sm: 0 2px 8px rgba(74, 53, 39, 0.06);
  --shadow-md: 0 12px 40px rgba(74, 53, 39, 0.1);
  --shadow-lg: 0 30px 80px rgba(43, 29, 20, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --maxw: 1320px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--terracotta); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; letter-spacing: 0.02em; }

em { font-style: italic; color: var(--terracotta); font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.eyebrow.light { color: var(--crema-soft); }

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.65;
  margin-top: 1.4rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--walnut);
}
.btn-ghost.light { color: var(--cream); border-color: rgba(246,239,228,0.3); }
.btn-ghost:hover { background: var(--walnut); color: var(--cream); }
.btn-ghost.light:hover { background: var(--cream); color: var(--espresso); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .35s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--espresso);
  font-weight: 500;
}
.brand-mark {
  font-size: 1.6rem;
  color: var(--terracotta);
  line-height: 1;
}
.brand-dot { color: var(--terracotta); }

.nav-desktop {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-desktop a {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width .3s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--terracotta); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--paper);
  padding: 100px 40px 40px;
  transition: right .4s ease;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--espresso);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,18,12,0.35) 0%, rgba(26,18,12,0.55) 60%, rgba(26,18,12,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  max-width: 820px;
}
.hero-content .eyebrow { color: var(--crema-soft); }
.hero-title {
  color: var(--cream);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero-title em { color: var(--crema); font-weight: 400; }
.hero-sub {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: rgba(246,239,228,0.85);
  max-width: 580px;
  line-height: 1.65;
}
.hero-actions {
  margin-top: 2.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions .btn-primary { background: var(--cream); color: var(--espresso); }
.hero-actions .btn-primary:hover { background: var(--terracotta); color: var(--cream); }
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(246,239,228,0.4); }
.hero-actions .btn-ghost:hover { background: var(--cream); color: var(--espresso); }

.hero-meta {
  display: flex;
  gap: 2.8rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 500;
}
.hero-meta span {
  font-size: 0.82rem;
  color: rgba(246,239,228,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246,239,228,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- TRUST ---------- */
.trust {
  padding: 70px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--coffee);
  opacity: 0.7;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- FEATURES ---------- */
.features { padding: 130px 0; background: var(--paper); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-card h3 { padding: 1.8rem 1.8rem 0.6rem; }
.feature-card p { padding: 0 1.8rem 2rem; color: var(--ink-soft); line-height: 1.65; }

/* ---------- WHY ---------- */
.why {
  padding: 130px 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-text p { margin-top: 1.2rem; color: var(--ink-soft); line-height: 1.7; }
.why-list {
  list-style: none;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-list li {
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.why-list li:last-child { border-bottom: none; }
.why-list span {
  font-family: var(--serif);
  color: var(--terracotta);
  font-size: 0.9rem;
}
.why-images {
  position: relative;
  height: 580px;
}
.why-img-1, .why-img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.why-img-1 {
  width: 70%;
  height: 70%;
  top: 0; left: 0;
}
.why-img-2 {
  width: 55%;
  height: 50%;
  bottom: 0; right: 0;
  border: 8px solid var(--cream);
}

/* ---------- GALLERY ---------- */
.gallery { padding: 130px 0; background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 130px 0; background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-grid blockquote {
  background: var(--paper);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.testimonial-grid p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--espresso);
  font-style: italic;
}
.testimonial-grid cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial-grid cite strong { font-weight: 500; color: var(--ink); }
.testimonial-grid cite span { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 100px 0;
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,164,122,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-inner h2 { color: var(--cream); }
.cta-inner p { color: rgba(246,239,228,0.75); margin-top: 1rem; max-width: 460px; }
.cta-inner .btn-primary { background: var(--cream); color: var(--espresso); }
.cta-inner .btn-primary:hover { background: var(--terracotta); color: var(--cream); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- LOCATION ---------- */
.location { padding: 130px 0; background: var(--paper); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.location-address {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 1.6rem;
}
.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.location-details h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.location-details p { line-height: 1.7; color: var(--ink-soft); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-md);
}
.map-wrap.large { height: 520px; }
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: sepia(15%) saturate(0.9);
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: 200px 0 100px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero.small { padding: 180px 0 70px; }
.page-hero h1 { max-width: 900px; }

/* ---------- ABOUT STORY ---------- */
.about-story { padding: 130px 0; background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story-text h2 { margin-bottom: 1.6rem; }
.story-text p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.2rem; }

/* ---------- VALUES ---------- */
.values { padding: 130px 0; background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.value-card {
  background: var(--paper);
  padding: 2.6rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s ease;
}
.value-card:hover { transform: translateY(-4px); }
.value-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}
.value-card h3 { margin-bottom: 1rem; }
.value-card p { color: var(--ink-soft); line-height: 1.7; }

/* ---------- TEAM ---------- */
.team { padding: 130px 0; background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.team-card { text-align: left; }
.team-card img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  margin-bottom: 1.2rem;
  transition: transform .4s ease;
}
.team-card:hover img { transform: scale(1.02); }
.team-card h4 { font-size: 1.2rem; font-family: var(--serif); margin-bottom: 4px; }
.team-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- MENU ---------- */
.menu-section { padding: 100px 0 130px; background: var(--paper); }
.menu-block { margin-bottom: 4.5rem; }
.menu-block h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.menu-items { display: flex; flex-direction: column; gap: 1.6rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-weight: 500;
}
.menu-item p { color: var(--ink-soft); font-size: 0.95rem; }
.menu-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--terracotta);
  font-style: italic;
  white-space: nowrap;
}

/* ---------- CONTACT ---------- */
.contact-section { padding: 100px 0; background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2.2rem; }
.info-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.info-block p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
}

.contact-form {
  background: var(--cream);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-form span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: 0.6rem; align-self: flex-start; }
.form-note { font-size: 0.9rem; color: var(--moss); min-height: 1.2em; }

.map-section { padding: 60px 0 130px; background: var(--paper); }

/* ---------- LEGAL ---------- */
.legal { padding: 80px 0 130px; background: var(--paper); }
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.6rem 0 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--espresso);
  color: rgba(246,239,228,0.75);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246,239,228,0.12);
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p {
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 320px;
  font-size: 0.95rem;
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.site-footer a {
  display: block;
  padding: 4px 0;
  color: rgba(246,239,228,0.7);
  font-size: 0.95rem;
}
.site-footer a:hover { color: var(--crema); }
.site-footer p { font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(246,239,228,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .features-grid, .testimonial-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .story-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-images { height: 460px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-desktop, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .features-grid, .testimonial-grid, .values-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .hero { padding: 130px 0 70px; min-height: 90vh; }
  .hero-meta { gap: 1.6rem; margin-top: 2.6rem; }
  .features, .why, .gallery, .testimonials, .location,
  .about-story, .values, .team, .menu-section, .contact-section, .legal { padding: 70px 0; }
  .page-hero { padding: 140px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 1.8rem; }
  .menu-item { flex-direction: column; gap: 0.4rem; align-items: flex-start; }
  .why-images { height: 380px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}