/* ============================================
   smileshuffleharvst.ink — orchard café design system
   Palette: cider amber, orchard moss, cream linen, walnut, dusk rose
   ============================================ */

:root {
  --cream: #f6efe2;
  --cream-soft: #fbf6ec;
  --linen: #efe6d3;
  --bark: #2c2218;
  --walnut: #4a3724;
  --moss: #6b7b4a;
  --moss-deep: #4d5a32;
  --amber: #c98a3b;
  --amber-deep: #a36b22;
  --rose-dusk: #b87764;
  --stone: #9b8d76;
  --line: rgba(74, 55, 36, 0.14);
  --shadow-soft: 0 12px 40px -18px rgba(74, 55, 36, 0.25);
  --shadow-warm: 0 24px 60px -28px rgba(163, 107, 34, 0.35);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max: 1320px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--bark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ───── TYPE ───── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--walnut);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; }
h1 em { font-style: italic; color: var(--amber-deep); font-weight: 400; }

p { color: rgba(44, 34, 24, 0.78); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--cream); opacity: 0.85; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--walnut);
  color: var(--cream);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 30px 70px -28px rgba(163, 107, 34, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--walnut);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(74, 55, 36, 0.06); border-color: var(--walnut); }
.btn-large { padding: 18px 36px; font-size: 1rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-deep);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 12px; }

/* ───── HEADER ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 226, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(246, 239, 226, 0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--walnut);
}
.brand-mark {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--walnut);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1.1rem;
}
.nav-desktop {
  display: flex; gap: 36px;
}
.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--walnut);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--amber-deep);
  transition: width 0.4s ease;
}
.nav-link:hover, .nav-link.active { color: var(--amber-deep); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--walnut);
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--walnut); }

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-image {
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(246,239,226,0.1) 0%, rgba(246,239,226,0.4) 60%, rgba(246,239,226,0.95) 100%),
                    url('https://images.unsplash.com/photo-1568702846914-96b305d2aaeb?w=2000&q=80');
  background-size: cover;
  background-position: center;
  animation: slowZoom 24s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 138, 59, 0.18), transparent 60%);
  pointer-events: none;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.floating-leaf {
  position: absolute;
  width: 24px; height: 24px;
  background: var(--moss);
  border-radius: 0 100% 0 100%;
  opacity: 0.35;
  animation: float 18s ease-in-out infinite;
}
.leaf-1 { top: 18%; left: 12%; animation-delay: 0s; }
.leaf-2 { top: 35%; right: 18%; width: 18px; height: 18px; animation-delay: 4s; background: var(--amber); }
.leaf-3 { bottom: 28%; left: 22%; width: 14px; height: 14px; animation-delay: 8s; background: var(--rose-dusk); }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-30px) rotate(90deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-content h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(44, 34, 24, 0.78);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 560px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--walnut);
  font-size: 1rem;
}
.hero-meta span {
  font-size: 0.85rem;
  color: rgba(44, 34, 24, 0.6);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--walnut);
  border-radius: 12px;
  z-index: 3;
}
.scroll-hint span {
  display: block;
  width: 2px; height: 8px;
  background: var(--walnut);
  margin: 6px auto;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ───── TRUST ───── */
.trust {
  padding: 60px 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
}
.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.trust-grid > div {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--walnut);
  opacity: 0.7;
}
.trust-grid strong { color: var(--amber-deep); }

/* ───── SECTION HEADS ───── */
.section-head { max-width: 700px; margin-bottom: 60px; }
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin-bottom: 20px; }

/* ───── SERVICES ───── */
.services { padding: 130px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px -30px rgba(74, 55, 36, 0.3);
}
.service-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-1 { background-image: url('https://images.unsplash.com/photo-1568702846914-96b305d2aaeb?w=1200&q=80'); }
.service-img-2 { background-image: url('https://images.unsplash.com/photo-1600788907416-456578634209?w=1200&q=80'); }
.service-img-3 { background-image: url('https://images.unsplash.com/photo-1570913149827-d2ac84ab3f9a?w=1200&q=80'); }
.service-img-4 { background-image: url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?w=1200&q=80'); }
.service-body { padding: 36px 36px 40px; }
.service-body h3 { margin-bottom: 12px; }
.service-body p { margin-bottom: 20px; }

/* ───── WHY ───── */
.why {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--linen) 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  height: 620px;
  background-image: url('https://images.unsplash.com/photo-1444858345318-9eb0ce0b0bf6?w=1400&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
}
.why-text h2 { margin-bottom: 24px; }
.why-text > p { margin-bottom: 36px; font-size: 1.05rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li {
  display: flex; gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: none; }
.why-list span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--amber-deep);
  flex-shrink: 0;
}
.why-list strong { color: var(--walnut); font-weight: 600; display: block; margin-bottom: 4px; }

/* ───── SHOWCASE ───── */
.showcase { padding: 130px 0; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.g {
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  cursor: pointer;
}
.g:hover { transform: scale(1.02); }
.g1 { grid-column: span 2; grid-row: span 2; background-image: url('https://images.unsplash.com/photo-1502786129293-79981df4e689?w=1400&q=80'); }
.g2 { background-image: url('https://images.unsplash.com/photo-1568213816046-0ee1c42bd559?w=800&q=80'); }
.g3 { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=800&q=80'); }
.g4 { background-image: url('https://images.unsplash.com/photo-1569870499705-504209102861?w=800&q=80'); }
.g5 { background-image: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=800&q=80'); }
.g6 { background-image: url('https://images.unsplash.com/photo-1568571780765-9276ac8b75a2?w=800&q=80'); display: none; }

/* ───── TESTIMONIALS ───── */
.testimonials {
  padding: 130px 0;
  background: var(--cream-soft);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card {
  padding: 40px 36px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
}
.t-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--walnut);
  margin-bottom: 24px;
  margin-top: 24px;
  font-style: italic;
}
.t-card figcaption {
  font-size: 0.88rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* ───── CTA BANNER ───── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--walnut) 0%, var(--bark) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 138, 59, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--cream); max-width: 600px; }
.cta-banner .btn-primary {
  background: var(--cream);
  color: var(--walnut);
}
.cta-banner .btn-primary:hover { background: var(--amber); color: var(--cream); }

/* ───── CONTACT STRIP ───── */
.contact-strip { padding: 130px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.contact-info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--amber-deep);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.contact-info a:hover { color: var(--amber-deep); }

.map-card {
  height: 460px;
  background: linear-gradient(135deg, #e8dfc8 0%, #d4c8aa 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.map-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107, 123, 74, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 123, 74, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-card::after {
  content: '';
  position: absolute;
  top: 40%; left: 30%;
  width: 60%; height: 2px;
  background: var(--moss);
  opacity: 0.5;
  transform: rotate(-20deg);
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  background: var(--amber-deep);
  border: 4px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(201, 138, 59, 0.25), 0 8px 20px rgba(0,0,0,0.2);
  z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201, 138, 59, 0.25), 0 8px 20px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 0 16px rgba(201, 138, 59, 0.1), 0 8px 20px rgba(0,0,0,0.2); }
}
.map-label {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--walnut);
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 3;
}
.map-card.large { height: 320px; margin-top: 28px; }

/* ───── PAGE HERO ───── */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero .lede {
  font-size: 1.2rem;
  color: rgba(44, 34, 24, 0.75);
  max-width: 680px;
}

/* ───── ABOUT ───── */
.about-story { padding: 80px 0 100px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  height: 560px;
  background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1200&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  filter: sepia(0.15);
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 18px; font-size: 1.05rem; }

.values { padding: 100px 0; background: var(--cream-soft); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.value-card {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: transform 0.4s ease;
}
.value-card:hover { transform: translateY(-4px); }
.value-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber-deep);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 18px;
}
.value-card h3 { margin-bottom: 12px; }

.team-strip { padding: 130px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.team-card {
  text-align: left;
}
.team-img {
  height: 360px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  filter: grayscale(0.1);
  transition: filter 0.5s ease;
}
.team-card:hover .team-img { filter: grayscale(0); }
.team-img-1 { background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=600&q=80'); }
.team-img-2 { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=600&q=80'); }
.team-img-3 { background-image: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?w=600&q=80'); }
.team-img-4 { background-image: url('https://images.unsplash.com/photo-1580489944761-15a19d654956?w=600&q=80'); }
.team-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--walnut);
  margin-bottom: 4px;
  font-weight: 500;
}
.team-card span { font-size: 0.88rem; color: var(--stone); }

/* ───── MENU ───── */
.menu-section { padding: 60px 0 130px; }
.menu-block {
  margin-bottom: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.menu-block:first-child { padding-top: 0; border-top: none; }
.menu-block h2 { margin-bottom: 8px; }
.menu-note {
  font-style: italic;
  color: var(--stone);
  margin-bottom: 36px;
  font-family: var(--font-display);
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--walnut);
  margin-bottom: 4px;
}
.menu-list span:not(.price) {
  display: block;
  font-size: 0.92rem;
  color: var(--stone);
  font-style: italic;
}
.price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--amber-deep);
  font-weight: 500;
  flex-shrink: 0;
}

/* ───── CONTACT PAGE ───── */
.contact-section { padding: 60px 0 130px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-card {
  background: var(--cream-soft);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.form-card h2 { margin-bottom: 10px; }
.form-intro { margin-bottom: 32px; color: var(--stone); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
form label {
  display: block;
  margin-bottom: 18px;
}
form label span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 8px;
  font-weight: 600;
}
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bark);
  transition: border-color 0.3s, background 0.3s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: #fff;
}
form textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(107, 123, 74, 0.12);
  color: var(--moss-deep);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.form-success.show { display: block; }

.visit-card {
  background: var(--cream-soft);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.visit-card h2 { margin-bottom: 28px; font-size: 1.6rem; }
.info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.info-block:last-of-type { border-bottom: none; }
.info-block strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-block p { color: var(--walnut); }

/* ───── LEGAL ───── */
.legal-section { padding: 40px 0 130px; }
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.4rem;
  margin: 50px 0 18px;
  color: var(--walnut);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; color: rgba(44, 34, 24, 0.78); }
.legal-content a { color: var(--amber-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--bark);
  color: rgba(246, 239, 226, 0.75);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.site-footer .brand { color: var(--cream); margin-bottom: 16px; }
.site-footer .brand-mark { background: var(--amber); color: var(--bark); }
.footer-brand p { max-width: 280px; opacity: 0.7; font-size: 0.92rem; }
.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer li, .site-footer a { font-size: 0.92rem; }
.site-footer a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(246, 239, 226, 0.1);
  font-size: 0.85rem;
  opacity: 0.55;
  text-align: center;
}

/* ───── REVEAL ANIMATIONS ───── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ───── RESPONSIVE ───── */
@media (max-width: 980px) {
  .nav-desktop, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .services-grid, .why-inner, .about-grid, .contact-grid, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .t-grid, .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g6 { display: block; }
  .why-image, .about-image { height: 440px; }
  .services, .why, .showcase, .testimonials, .contact-strip, .team-strip, .menu-section { padding: 80px 0; }
  .hero { min-height: 80vh; padding: 60px 0 80px; }
  .hero-meta { grid-template-columns: 1fr; gap: 16px; }
  .form-card, .visit-card { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .t-grid, .values-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .g1, .g6 { grid-column: span 1; }
  .services, .why, .showcase, .testimonials, .contact-strip, .team-strip, .menu-section, .values, .about-story { padding: 60px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .menu-list li { gap: 16px; }
  .trust-grid { gap: 18px; }
  .trust-grid > div { font-size: 0.9rem; }
}