:root {
  --cream: #FBF7EE;
  --cream-dark: #F6F1E6;
  --ink: #211E1A;
  --ink-soft: #3A352E;
  --rust: #8A3A2B;
  --rust-dark: #72301F;
  --gold: #AE883E;
  --line: #E4DCCB;
  --line-dark: #3A362F;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

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

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

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

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rust);
}

.eyebrow.gold {
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.96rem;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn-solid {
  background: var(--rust);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--rust-dark);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.link-underline {
  color: var(--rust);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rust);
  padding-bottom: 3px;
}

/* ---------- Nav ---------- */
.main-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.wordmark .amp {
  color: var(--rust);
}

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

.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links a:not(.btn):hover {
  color: var(--rust);
}

.nav-links .mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  margin-top: 18px;
}

.hero p {
  margin-top: 22px;
  font-size: 1.1rem;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 1635 / 2000;
  object-fit: cover;
}

/* ---------- Feature cards (Dog Haus / Experiences) ---------- */
.features {
  border-top: 1px solid var(--line);
}

.features .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-card {
  padding: 60px 40px;
}

.feature-card:first-child {
  border-right: 1px solid var(--line);
  padding-left: 0;
}

.feature-card:last-child {
  padding-right: 0;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
}

.feature-card h3 {
  font-size: 1.7rem;
  margin: 14px 0 16px;
}

.feature-card p {
  margin-bottom: 22px;
}

/* ---------- Where We'll Be ---------- */
.stops {
  background: var(--cream-dark);
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stops-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stops-head h2 {
  font-size: 2.1rem;
  margin-top: 10px;
}

.stops-head p {
  max-width: 380px;
}

.stop-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.4fr 1.2fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.stop-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.stop-date {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
}

.stop-venue {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.stop-status {
  text-align: right;
  color: #8a8375;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.stops-note {
  margin-top: 26px;
  color: var(--ink-soft);
}

.stops-note a {
  color: var(--rust);
  font-weight: 600;
}

/* ---------- The Craft ---------- */
.craft {
  padding: 100px 0;
}

.craft h2 {
  font-size: 2.3rem;
  max-width: 720px;
  margin-bottom: 60px;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.craft-grid h3 {
  font-size: 1.5rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}

.craft-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.craft-item .label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ---------- Bring us to you ---------- */
.bring {
  background: var(--cream-dark);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bring .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.bring h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.bring > .container > div:first-child > p {
  margin-bottom: 30px;
  max-width: 440px;
}

.def-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.def-row:last-child {
  border-bottom: 1px solid var(--line);
}

.def-row dt {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
}

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-field.full {
  margin-bottom: 20px;
}

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #8a8375;
}

/* ---------- Our Story ---------- */
.story {
  background: var(--ink);
  color: #d9d3c6;
  padding: 100px 0 40px;
}

.story h2 {
  color: var(--cream);
  font-size: 2.3rem;
  max-width: 780px;
  margin: 16px 0 40px;
}

.story-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.story-intro p {
  margin-bottom: 18px;
}

.story-intro img {
  width: 100%;
  aspect-ratio: 1278 / 1600;
  object-fit: cover;
  border-radius: 4px;
}

.owner-name {
  color: var(--cream);
  font-weight: 700;
  margin-top: 16px;
}

.owner-title {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.story-quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line-dark);
  padding-top: 60px;
  margin-bottom: 60px;
}

.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  line-height: 1.4;
}

.story-quote-row img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.timeline-item {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}

.timeline-item .eyebrow {
  margin-bottom: 10px;
  display: block;
}

.timeline-item h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* ---------- Chef Curated Experiences detail ---------- */
.experiences {
  padding: 100px 0;
}

.experiences .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.experiences img {
  width: 100%;
  aspect-ratio: 1218 / 1400;
  object-fit: cover;
  border-radius: 4px;
}

.experiences h2 {
  font-size: 2.2rem;
  margin: 14px 0 20px;
}

.experiences > .container > div:last-child > p:first-of-type {
  margin-bottom: 10px;
}

.exp-list-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.exp-list-item:last-of-type {
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

/* ---------- Giving Back ---------- */
.giving {
  border-top: 1px solid var(--line);
  padding: 60px 0;
}

.giving .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.giving a {
  color: var(--rust);
  font-weight: 600;
  border-bottom: 1px solid var(--rust);
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #a8a196;
  padding: 70px 0 50px;
}

footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-wordmark .amp {
  color: var(--gold);
}

footer h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer p, footer div {
  font-size: 0.95rem;
  line-height: 1.7;
}

footer .link-underline {
  color: var(--cream);
  border-color: var(--gold);
  display: inline-block;
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container,
  .features .container,
  .craft-grid,
  .bring .container,
  .story-intro,
  .story-quote-row,
  .timeline,
  .experiences .container {
    grid-template-columns: 1fr;
  }

  .feature-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
    padding-right: 0;
  }

  .feature-card:last-child {
    padding-left: 0;
    padding-right: 0;
  }

  .hero img {
    height: 320px;
    order: -1;
  }

  .giving .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  footer .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links .btn.desktop-only {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

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

  .stop-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 6px;
  }

  .stop-status {
    text-align: left;
  }

  .stops-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  footer .container {
    grid-template-columns: 1fr;
  }
}
