:root {
  --ink: #1e2420;
  --muted: #5d6760;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #d9dfd8;
  --moss: #315f4b;
  --moss-dark: #244739;
  --tomato: #c8523d;
  --ochre: #b88835;
  --mint: #e6f1e9;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  border-bottom: 1px solid rgba(30, 36, 32, .12);
  background: rgba(247, 248, 245, .94);
  padding: .8rem clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .86rem;
  letter-spacing: 0;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand-line {
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
  padding: .65rem .85rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--mint);
  color: var(--moss-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  overflow: hidden;
  background: var(--ink);
}

.home-hero {
  display: flex;
  align-items: flex-end;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .64;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(16, 22, 18, .42);
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 2rem));
  color: var(--white);
}

.hero-copy {
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 9vw, 7rem);
}

.page-hero {
  display: grid;
  min-height: 510px;
  place-items: end start;
}

.page-hero-copy {
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding: 0 1rem clamp(3rem, 7vw, 5rem);
}

.eyebrow,
.label {
  margin: 0 0 .8rem;
  color: var(--tomato);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f6c9bb;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-size: 6rem;
}

.page-hero h1,
.contact-copy h1 {
  max-width: 13ch;
  font-size: 5rem;
}

h2 {
  max-width: 15ch;
  font-size: 3.6rem;
}

h3 {
  margin-bottom: .65rem;
  font-size: 1.75rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.hero p,
.page-hero p,
.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.7rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button {
  border: 1px solid transparent;
  padding: .75rem 1.05rem;
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--tomato);
  color: var(--white);
}

.button.primary:hover {
  background: #a83e2d;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, .12);
}

.text-link {
  color: var(--moss-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.intro-section,
.feature-band,
.store-section,
.menu-section,
.owner-section,
.visit-section,
.cta-band,
.contact-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.two-column,
.store-layout,
.contact-layout,
.visit-grid,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.intro-text p {
  max-width: 68ch;
  font-size: 1.08rem;
}

.feature-band,
.owner-section {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.product-card,
.owner-profile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.product-card-copy,
.owner-profile div {
  padding: 1.1rem;
}

.product-card-copy p:last-child,
.owner-profile p:last-child,
.detail-copy p {
  margin-bottom: 0;
}

.store-layout img,
.contact-layout img {
  width: 100%;
  height: min(620px, 62vw);
  min-height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
}

.store-copy {
  max-width: 560px;
}

.hours-list {
  display: grid;
  gap: .7rem;
  margin: 1.7rem 0;
}

.hours-list div,
.visit-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: .7rem;
}

.hours-list dt,
.visit-panel span {
  color: var(--muted);
}

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

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-item {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(.85rem, 2vw, 1rem);
}

.detail-media img {
  width: 100%;
  height: 320px;
  border-radius: 6px;
  object-fit: cover;
}

.detail-copy {
  padding: clamp(.4rem, 2vw, 1rem) clamp(.2rem, 2vw, 1.2rem);
}

.clean-list {
  display: grid;
  gap: .45rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: .65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  content: "";
}

.cta-band {
  background: var(--moss-dark);
  color: var(--white);
}

.cta-band .eyebrow {
  color: #f3c3b7;
}

.cta-band h2 {
  margin-bottom: 0;
}

.contact-hero {
  background: var(--moss-dark);
}

.contact-copy h1,
.contact-copy > p {
  color: var(--white);
}

.contact-method {
  display: block;
  min-width: min(100%, 270px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-method:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
}

.contact-method span,
.contact-method strong {
  display: block;
}

.contact-method span {
  margin-bottom: .3rem;
  color: rgba(255, 255, 255, .72);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.owner-profile {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
}

.owner-profile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.visit-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.visit-panel div:first-child {
  border-top: 0;
  padding-top: 0;
}

.visit-panel strong {
  text-align: right;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.8rem;
  }

  .page-hero h1,
  .contact-copy h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .store-layout,
  .contact-layout,
  .visit-grid,
  .cta-layout,
  .owner-profile {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .store-layout img,
  .contact-layout img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 3.5rem;
  }

  .page-hero h1,
  .contact-copy h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero p,
  .page-hero p,
  .contact-copy > p {
    font-size: 1.08rem;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: .3rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 1rem;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: .9rem;
  }

  .hero,
  .page-hero {
    min-height: 590px;
  }

  .hero-copy {
    padding-bottom: 3rem;
  }

  .detail-item {
    grid-template-columns: 1fr;
  }

  .detail-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-inner,
  .hours-list div,
  .visit-panel div {
    display: block;
  }

  .footer-inner p + p {
    margin-top: .55rem;
  }
}

@media (max-width: 560px) {
  .brand-line {
    display: none;
  }

  .product-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
