:root {
  --bg: #f3f7f4;
  --bg-alt: #e4efe8;
  --ink: #1a2a22;
  --ink-soft: #3a4f44;
  --muted: #5c7266;
  --line: rgba(26, 42, 34, 0.12);
  --pistachio: #6f9b7a;
  --pistachio-deep: #3f6b4d;
  --butter: #e8b84a;
  --berry: #c45c6a;
  --berry-deep: #a34452;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(26, 42, 34, 0.08);
  --radius: 20px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1100px 560px at 8% -8%, rgba(111, 155, 122, 0.28), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(232, 184, 74, 0.18), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--pistachio-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--berry-deep);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 244, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--pistachio-deep);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--pistachio-deep);
}

.nav-cta {
  background: var(--berry);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

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

.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1800&q=80")
    center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 42, 34, 0.25) 0%, rgba(26, 42, 34, 0.55) 45%, rgba(26, 42, 34, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3.5rem;
  max-width: 720px;
  margin-right: auto;
  animation: rise 0.9s ease both;
}

.brand-mark {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #f4f8f5;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--berry-deep);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 480px;
}

.hero-stats dt {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pistachio-deep);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.media-card {
  background: transparent;
}

.media-card-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.media-card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .media-card-img img {
  transform: scale(1.04);
}

.media-card h3,
.quad-card h3,
.showcase-body h3,
.trust-tiles h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.media-card p,
.quad-card p,
.showcase-body p,
.trust-tiles p {
  margin: 0;
  color: var(--muted);
}

.section-bakehouse {
  background: linear-gradient(180deg, transparent, rgba(228, 239, 232, 0.7) 30%, transparent);
}

.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.quad-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow);
}

.mornings-grid,
.trust-grid,
.visit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.mornings-media img,
.trust-media img,
.visit-media img,
.contact-aside img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pistachio);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-body {
  padding: 1rem 0.15rem 0;
}

.trust-tiles {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.trust-tiles li {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.section-visit address {
  font-style: normal;
  margin: 1.25rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hours {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--line);
  max-width: 320px;
}

.hours dt {
  color: var(--muted);
}

.hours dd {
  margin: 0;
  font-weight: 600;
}

.contact-aside p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.contact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(111, 155, 122, 0.45);
  border-color: var(--pistachio);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  color: var(--pistachio-deep);
}

.form-note.is-error {
  color: var(--berry-deep);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  background: rgba(228, 239, 232, 0.45);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
}

.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-1.5%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .card-grid,
  .showcase-grid,
  .mornings-grid,
  .trust-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quad-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mornings-media {
    order: -1;
  }
}

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

  .nav-list {
    display: none;
    position: absolute;
    right: 1.25rem;
    top: 4.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    min-width: 220px;
    padding: 0.85rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.is-open .nav-list {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-stats,
  .trust-tiles,
  .quad-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 5.5rem;
  }

  .brand-mark {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
}
