:root,
[data-theme='light'] {
  --font-display: 'Boska', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.8rem, 1rem + 6vw, 6.8rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --color-bg: #f5efe5;
  --color-surface: #fffaf0;
  --color-surface-2: #ebe0d0;
  --color-surface-3: #2c2018;
  --color-text: #241912;
  --color-text-muted: #705f50;
  --color-text-inverse: #fffaf0;
  --color-border: color-mix(in oklab, var(--color-text), transparent 86%);
  --color-ember: #a84422;
  --color-ember-hover: #8e3518;
  --color-ash: #4b4036;
  --color-pine: #344b31;
  --color-gold: #c9842d;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgb(44 32 24 / 0.08);
  --shadow-md: 0 12px 32px rgb(44 32 24 / 0.12);
  --shadow-lg: 0 28px 70px rgb(44 32 24 / 0.22);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --content-wide: 1200px;
  --content-default: 960px;
}

[data-theme='dark'] {
  --color-bg: #17120f;
  --color-surface: #211914;
  --color-surface-2: #2a201a;
  --color-surface-3: #f4eadc;
  --color-text: #f3eadf;
  --color-text-muted: #c3b1a0;
  --color-text-inverse: #241912;
  --color-border: color-mix(in oklab, var(--color-text), transparent 84%);
  --color-ember: #e17742;
  --color-ember-hover: #f19562;
  --color-ash: #cab8a6;
  --color-pine: #9eb489;
  --color-gold: #e0a95f;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.2);
  --shadow-md: 0 12px 32px rgb(0 0 0 / 0.34);
  --shadow-lg: 0 28px 70px rgb(0 0 0 / 0.45);
}

.skip-link {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: var(--color-text-inverse);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - var(--space-8)), var(--content-wide));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
  background: color-mix(in oklab, var(--color-bg), transparent 8%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  width: min(calc(100% - var(--space-8)), 1360px);
  min-height: 76px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: fit-content;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 4px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
}

.brand-mark img {
  border-radius: var(--radius-full);
}

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

.brand-name {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-location {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.primary-nav a {
  min-height: 44px;
  padding: var(--space-3) var(--space-3);
  border-radius: var(--radius-full);
}

.primary-nav a:hover {
  color: var(--color-text);
  background: color-mix(in oklab, var(--color-ember), transparent 88%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 900;
}

.theme-toggle {
  width: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.phone-link {
  padding: var(--space-3) var(--space-5);
  color: var(--color-text-inverse);
  background: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.phone-link:hover,
.btn-primary:hover {
  background: var(--color-ember-hover);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(18 12 8 / 0.82) 0%, rgb(18 12 8 / 0.48) 48%, rgb(18 12 8 / 0.16) 100%),
    linear-gradient(0deg, rgb(18 12 8 / 0.68) 0%, rgb(18 12 8 / 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(calc(100% - var(--space-8)), 880px);
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
  margin-inline: max(var(--space-4), calc((100vw - 1200px) / 2));
  color: var(--color-text-inverse);
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--color-ember);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b36d;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10.8ch;
  margin-top: var(--space-4);
  font-size: var(--text-3xl);
}

h2 {
  max-width: 13ch;
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-lg);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 58ch;
  margin-top: var(--space-6);
  color: rgb(255 250 240 / 0.88);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 900;
}

.btn-primary {
  color: #fffaf0;
  background: var(--color-ember);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border: 1px solid rgb(255 250 240 / 0.35);
  color: #fffaf0;
  background: rgb(255 250 240 / 0.08);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgb(255 250 240 / 0.18);
}

.hero-card {
  position: absolute;
  right: max(var(--space-4), calc((100vw - 1200px) / 2));
  bottom: var(--space-8);
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  width: min(340px, calc(100% - var(--space-8)));
  padding: var(--space-5);
  border: 1px solid rgb(255 250 240 / 0.24);
  border-radius: var(--radius-xl);
  color: #fffaf0;
  background: rgb(36 25 18 / 0.74);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-card img {
  grid-row: span 3;
  width: 82px;
  border-radius: var(--radius-full);
  background: #fff;
}

.hero-card div {
  display: grid;
  gap: var(--space-1);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  color: rgb(255 250 240 / 0.74);
  font-size: var(--text-xs);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--color-border);
  background: var(--color-surface);
}

.proof-strip div {
  padding: var(--space-6);
  border-right: 1px solid var(--color-border);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-strip span {
  max-width: 24ch;
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.intro-section,
.leadership-section {
  background: var(--color-bg);
}

.two-column {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(var(--space-8), 8vw, var(--space-20));
  align-items: start;
}

.two-column p {
  max-width: 64ch;
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: var(--space-8);
  align-items: end;
  margin-bottom: var(--space-10);
}

.section-heading p:not(.eyebrow) {
  color: var(--color-text-muted);
}

.product-section {
  background: var(--color-surface);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: var(--space-5);
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.large-card {
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) 1fr;
  min-height: 580px;
}

.large-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-card div,
.compact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-4);
  padding: clamp(var(--space-6), 5vw, var(--space-10));
}

.feature-card p {
  color: var(--color-text-muted);
}

.compact-card {
  min-height: 280px;
}

.compact-card:nth-child(2) {
  color: var(--color-text-inverse);
  background: var(--color-surface-3);
}

.compact-card:nth-child(2) p {
  color: color-mix(in oklab, var(--color-text-inverse), transparent 22%);
}

.wood-stack-callout {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fffaf0;
  background: #241912;
}

.wood-stack-callout::after {
  position: absolute;
  inset: 0;
  content: '';
  background:
    linear-gradient(90deg, rgb(36 25 18 / 0.72), rgb(36 25 18 / 0.18)),
    linear-gradient(0deg, rgb(36 25 18 / 0.58), transparent 55%);
}

.wood-stack-callout img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wood-stack-callout div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(calc(100% - var(--space-8)), var(--content-wide));
  min-height: 460px;
  padding-block: var(--space-16);
  margin-inline: auto;
}

.wood-stack-callout .eyebrow {
  color: #f0b36d;
}

.wood-stack-callout h2 {
  max-width: 12ch;
  margin-top: var(--space-3);
}

.restaurant-section {
  color: var(--color-text-inverse);
  background:
    linear-gradient(90deg, rgb(36 25 18 / 0.95), rgb(52 75 49 / 0.88)),
    var(--color-surface-3);
}

.restaurant-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: clamp(var(--space-8), 7vw, var(--space-20));
  align-items: start;
}

.restaurant-copy p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: rgb(255 250 240 / 0.75);
}

.restaurant-copy .eyebrow {
  color: #f0b36d;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: var(--space-6);
  color: #f0b36d;
  font-weight: 900;
}

.text-link:hover {
  color: #fffaf0;
}

.wood-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.wood-list div {
  padding: var(--space-5);
  border: 1px solid rgb(255 250 240 / 0.14);
  border-radius: var(--radius-lg);
  background: rgb(255 250 240 / 0.07);
}

.wood-list strong,
.wood-list span {
  display: block;
}

.wood-list strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.04em;
}

.wood-list span {
  margin-top: var(--space-2);
  color: rgb(255 250 240 / 0.72);
  font-size: var(--text-sm);
}

.image-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--color-bg);
}

.image-band figure {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-section {
  background: var(--color-surface);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(var(--space-8), 8vw, var(--space-20));
  align-items: start;
}

.delivery-layout p {
  max-width: 62ch;
  margin-top: var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.5;
}

.delivery-card {
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.delivery-card ul {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.delivery-card li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.delivery-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.delivery-card span {
  color: var(--color-text-muted);
}

.delivery-card strong {
  text-align: right;
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-10);
}

.county-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 900;
  text-align: center;
}

.leadership-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.leadership-list article {
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.leadership-list p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.faq-section {
  background: var(--color-surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) 1fr;
  gap: clamp(var(--space-8), 8vw, var(--space-20));
  align-items: start;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
}

summary {
  min-height: 58px;
  padding: var(--space-5);
  cursor: pointer;
  font-weight: 900;
}

summary:hover {
  color: var(--color-ember);
}

details p {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
}

.contact-section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  color: #fffaf0;
  background:
    linear-gradient(rgb(36 25 18 / 0.72), rgb(36 25 18 / 0.82)),
    url('./assets/campfire-gathering.jpg') center / cover;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: var(--space-8);
  align-items: end;
  padding: clamp(var(--space-6), 6vw, var(--space-12));
  border: 1px solid rgb(255 250 240 / 0.16);
  border-radius: var(--radius-xl);
  background: rgb(36 25 18 / 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.contact-card .eyebrow {
  color: #f0b36d;
}

.contact-card p {
  max-width: 56ch;
  margin-top: var(--space-5);
  color: rgb(255 250 240 / 0.74);
}

address {
  display: grid;
  gap: var(--space-3);
  font-style: normal;
}

address a,
address span {
  color: rgb(255 250 240 / 0.78);
}

address a:hover {
  color: #f0b36d;
}

.contact-phone {
  font-family: var(--font-display);
  color: #fffaf0;
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-footer {
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: var(--color-text);
}

.footer-inner a {
  min-height: 44px;
  color: var(--color-ember);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .primary-nav {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - var(--space-8)), 560px);
    margin: 0 auto var(--space-8);
  }

  .hero {
    min-height: auto;
  }

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

  .product-grid,
  .large-card,
  .restaurant-layout,
  .delivery-layout,
  .faq-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .large-card {
    min-height: auto;
  }

  .large-card img {
    max-height: 520px;
  }

  .image-band {
    grid-template-columns: 1fr 1fr;
  }

  .image-band figure:last-child {
    grid-column: span 2;
    max-height: 520px;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-content,
  .header-inner {
    width: min(calc(100% - var(--space-6)), var(--content-wide));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-location,
  .phone-link {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero-content {
    padding-block: var(--space-20) var(--space-12);
  }

  h1 {
    max-width: 9.7ch;
  }

  h2 {
    max-width: 12ch;
  }

  .hero-copy {
    font-size: var(--text-base);
  }

  .hero-ctas,
  .btn {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .two-column,
  .section-heading,
  .wood-list,
  .county-grid,
  .leadership-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .image-band {
    grid-template-columns: 1fr;
    padding: var(--space-2);
  }

  .image-band figure,
  .image-band figure:last-child {
    grid-column: auto;
    min-height: 380px;
  }

  .delivery-card li {
    display: grid;
  }

  .delivery-card strong {
    text-align: left;
  }

  .contact-card {
    padding: var(--space-6);
  }
}
