/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terracotta: #C4724E;
  --terracotta-dark: #A85A3A;
  --sand: #F5EDE4;
  --sand-light: #FAF6F1;
  --sand-dark: #E8DDD3;
  --charcoal: #2C2420;
  --charcoal-light: #5A4A42;
  --warm-gray: #8A7A72;
  --white: #FEFCFA;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand-dark);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav.scrolled .nav-logo {
  color: var(--charcoal);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(254, 252, 250, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--charcoal-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover {
  color: var(--white);
}

.nav.scrolled .nav-links a:hover {
  color: var(--terracotta);
}

.nav-cta {
  border: 1px solid rgba(254, 252, 250, 0.5) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--charcoal) !important;
  color: var(--charcoal) !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--charcoal) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--terracotta);
  border-color: var(--terracotta) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

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

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

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

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 32, 0.45) 0%,
    rgba(44, 36, 32, 0.35) 50%,
    rgba(44, 36, 32, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(254, 252, 250, 0.7);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(254, 252, 250, 0.8);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(254, 252, 250, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9375rem 2rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 114, 78, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(254, 252, 250, 0.5);
}

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

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 114, 78, 0.25);
}

.btn-full {
  width: 100%;
}

/* ── Section shared ── */
.section {
  padding: 8rem 0;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-title--center {
  text-align: center;
}

/* ── About ── */
.about {
  background: var(--sand-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 4/5;
}

.about-text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--terracotta);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand-dark);
}

/* ── Offerings ── */
.offerings {
  background: var(--white);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.offering-card {
  padding: 2.5rem;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.offering-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 36, 32, 0.06);
}

.offering-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--terracotta);
}

.offering-icon svg {
  width: 100%;
  height: 100%;
}

.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.offering-card p {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ── Pantry ── */
.pantry {
  background: var(--sand);
}

.pantry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pantry-images {
  position: relative;
}

.pantry-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 7/5;
}

.pantry-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 36, 32, 0.15);
}

.pantry-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.pantry-text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.pantry-text .btn {
  margin-top: 1.5rem;
}

/* ── Visit ── */
.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-right: 2rem;
}

.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.visit-detail-value {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
}

.visit-link {
  color: var(--charcoal);
  border-bottom: 1px solid var(--sand-dark);
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
  max-width: fit-content;
}

.visit-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.visit-map {
  border-radius: 2px;
  overflow: hidden;
  min-height: 400px;
  background: var(--sand-dark);
}

/* ── Contact ── */
.contact {
  background: var(--sand-light);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 0.75rem;
  transition: color 0.3s, border-color 0.3s, padding-left 0.3s;
}

.contact-direct-item svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-direct-item:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  padding-left: 0.5rem;
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid var(--sand-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--terracotta);
  padding: 1rem;
  margin-top: 0.5rem;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(254, 252, 250, 0.6);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 252, 250, 0.1);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(254, 252, 250, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: rgba(254, 252, 250, 0.5);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--terracotta);
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .pantry-split,
  .contact-split {
    gap: 3rem;
  }

  .pantry-img-secondary {
    right: -1rem;
    bottom: -1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--sand-light);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(44, 36, 32, 0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 0.9375rem;
  }

  .nav-cta {
    border-color: var(--charcoal) !important;
    color: var(--charcoal) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .about-grid,
  .offerings-grid,
  .visit-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    aspect-ratio: 3/4;
  }

  .pantry-img-secondary {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 1rem;
  }

  .pantry-images {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .visit-info {
    padding-right: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .offering-card {
    padding: 1.75rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 32, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
