/* =========================================================
   Cerina Cherries — design tokens
   ========================================================= */
:root {
  --cherry: #991027;
  --cherry-deep: #6E0B1C;
  --cherry-bright: #B8142F;
  --green: #334330;
  --green-deep: #232E21;
  --green-light: #4C5F47;
  --cream: #F6F1E7;
  --cream-alt: #EDE4D0;
  --ink: #2A241D;
  --ink-soft: #5B5348;

  --font-display: "Lora", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Kaushan Script", cursive;

  --wrap: 1180px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0;
  color: var(--green-deep);
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cherry);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cherry);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--cream-alt); }

/* =========================================================
   Photography
   ========================================================= */
.journey-photo,
.cherry-photo,
.follow-tile {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-alt);
}
.journey-photo img,
.cherry-photo img,
.follow-tile img,
.find-us-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--cherry); color: var(--cream); }
.btn-primary:hover { background: var(--cherry-bright); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.55);
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(246,241,231,0.1); }

.btn-ghost-red {
  background: transparent;
  color: var(--cherry);
  border-color: var(--cherry);
}
.btn-ghost-red:hover { background: var(--cherry); color: var(--cream); }

.btn-small { padding: 11px 20px; font-size: 13.5px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 36, 29, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}

.logo img { height: 80px; width: auto; display: block; }
.logo { margin-right: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a { color: var(--green-deep); opacity: 0.85; transition: opacity 0.15s ease, color 0.15s ease; }
.main-nav a:hover { opacity: 1; color: var(--cherry); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--green-deep); margin: 0 auto; }

.mobile-nav { display: none; flex-direction: column; padding: 4px 24px 16px; }
.mobile-nav a {
  padding: 12px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-deep);
  border-top: 1px solid rgba(42,36,29,0.08);
}
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(35, 24, 16, 0.78) 0%, rgba(35, 24, 16, 0.30) 55%, rgba(35, 24, 16, 0.15) 100%);
}
.hero-inner { position: relative; padding: 60px 24px 76px; max-width: 720px; }

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 18px;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--cream);
  max-width: 42ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   Why Cerina
   ========================================================= */
.why { padding: 96px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item { text-align: left; }
.why-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--cherry);
  margin-bottom: 18px;
}
.why-mark svg { width: 21px; height: 21px; }
.why-item h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--green-deep); }
.why-item p { font-size: 14.5px; margin: 0; }

.section-divider {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.section-divider svg { width: 34px; height: auto; }

/* =========================================================
   Our Story — journey
   ========================================================= */
.story { background: var(--green-deep); padding: 100px 0; }
.story h2 { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 60px; }

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.journey-line {
  position: absolute;
  top: 96px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(246,241,231,0.35) 0 8px, transparent 8px 16px);
}
.journey-stop { position: relative; }
.journey-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 26px;
}
.journey-dot {
  display: none;
}
.journey-stop h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 8px; }
.journey-stop p { color: var(--cream-alt); font-size: 14px; margin: 0; }

/* =========================================================
   Our Cherries
   ========================================================= */
.cherries { padding: 100px 0 0; }
.cherries-photo {
  max-width: var(--wrap);
  margin: 0 auto 56px;
  padding: 0 24px;
}
.cherries-photo img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.cherries h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 20ch;
}
.cherries .eyebrow { text-align: center; }

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(42,36,29,0.12);
  padding: 44px 0 100px;
}
.spec-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 10px;
}
.spec-value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--green-deep);
  margin: 0;
}

/* =========================================================
   Find Us
   ========================================================= */
.find-us { background: var(--green-deep); padding: 100px 0; text-align: center; }
.find-us-eyebrow { text-align: center; }
.find-us-title { color: var(--cream); font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 44px; }

.find-us-card {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
}
.find-us-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cherry);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.find-us-card h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 8px; }
.find-us-address { color: var(--cream-alt); font-size: 14.5px; margin-bottom: 30px; }

.find-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid rgba(246,241,231,0.14);
  padding-top: 26px;
  margin-bottom: 34px;
}
.find-us-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.55);
  margin-bottom: 6px;
}
.find-us-value {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--cream);
  margin: 0;
}

.btn-light { background: var(--cream); color: var(--green-deep); }
.btn-light:hover { background: var(--cream-alt); }

/* =========================================================
   Follow the Season
   ========================================================= */
.follow { padding: 100px 0; text-align: center; }
.follow h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 34ch; margin: 0 auto 34px; }
.follow-cta { display: flex; gap: 16px; justify-content: center; margin-bottom: 56px; }

.follow-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.follow-tile { aspect-ratio: 1 / 1; border-radius: 12px; }
.follow-tile img { transition: transform 0.3s ease; }
.follow-tile:hover img { transform: scale(1.05); }

/* =========================================================
   Contact
   ========================================================= */
.contact { background: var(--green-deep); padding: 100px 0; text-align: center; }
.contact .eyebrow { text-align: center; }
.contact h2 { color: var(--cream); font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 40px; }

.contact-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-cta .btn svg { flex-shrink: 0; }
.contact-cta .btn-ghost-light { color: var(--cream); }

.contact-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contact-social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(246,241,231,0.25);
  color: var(--cream);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.contact-social a:hover { border-color: var(--cherry-bright); color: var(--cherry-bright); }
.contact-social svg { width: 18px; height: 18px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--cream-alt); padding: 56px 0 30px; text-align: center; }
.footer-logo { height: 96px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--cherry);
  margin-bottom: 14px;
}
.footer-phone {
  display: inline-block;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 22px; justify-content: center; margin-bottom: 26px; }
.footer-social a { font-size: 13.5px; font-weight: 600; color: var(--green-deep); }
.footer-social a:hover { color: var(--cherry); }
.footer-copy { font-size: 12.5px; color: var(--ink-soft); margin: 0; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .journey-line { display: none; }
  .spec-list { grid-template-columns: 1fr; gap: 22px; }
  .find-us-grid { grid-template-columns: 1fr; gap: 18px; }
  .follow-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .find-us-card { padding: 30px 22px; }
  .contact-cta { flex-direction: column; align-items: stretch; }
}
