:root {
  --forest-950: #101816;
  --forest-900: #16211f;
  --forest-800: #24332f;
  --forest-700: #37504a;
  --lake-600: #567a80;
  --canvas-100: #f2ecdf;
  --canvas-200: #e8dfcf;
  --canvas-300: #d7cbb8;
  --copper-500: #b76436;
  --copper-600: #8e4826;
  --bark-500: #775942;
  --line: rgba(16, 24, 22, 0.12);
  --line-strong: rgba(16, 24, 22, 0.22);
  --text: #16211f;
  --text-soft: #4d5f5a;
  --frame-x: max(1rem, calc((100vw - 1180px) / 2));
  --display-font: "Rockwell", "Cambria", "Georgia", serif;
  --body-font: "Trebuchet MS", "Segoe UI", sans-serif;
  --label-font: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, var(--forest-950) 0, var(--forest-900) 10rem, #d6ddd3 10rem, var(--canvas-200) 21rem, var(--canvas-100) 100%);
  font-family: var(--body-font);
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(16, 24, 22, 0.025) 0 1px, transparent 1px 120px),
    radial-gradient(ellipse at 18% 11rem, rgba(61, 90, 82, 0.42), transparent 32rem),
    radial-gradient(ellipse at 84% 8rem, rgba(183, 100, 54, 0.18), transparent 24rem),
    radial-gradient(ellipse at 50% 14rem, rgba(34, 51, 47, 0.38), transparent 28rem);
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 5.25rem;
  height: 12rem;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 16, 15, 0.7), rgba(10, 16, 15, 0)),
    radial-gradient(ellipse at 14% 100%, rgba(20, 35, 32, 0.76), transparent 40%),
    radial-gradient(ellipse at 42% 100%, rgba(23, 41, 37, 0.68), transparent 42%),
    radial-gradient(ellipse at 72% 100%, rgba(19, 33, 31, 0.74), transparent 40%),
    radial-gradient(ellipse at 94% 100%, rgba(17, 28, 26, 0.7), transparent 34%);
  opacity: 0.72;
  filter: blur(3px);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    repeating-radial-gradient(circle at 14% 18%, rgba(16, 24, 22, 0.022) 0 1px, transparent 1px 22px),
    repeating-radial-gradient(circle at 80% 20%, rgba(16, 24, 22, 0.018) 0 1px, transparent 1px 30px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: var(--forest-950);
  color: #fff;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1rem var(--frame-x);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 20, 18, 0.94), rgba(18, 29, 27, 0.92));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: #f4edde;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  background: linear-gradient(135deg, var(--copper-500), var(--copper-600));
  color: #fff8ef;
  font-family: var(--label-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  display: block;
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  color: rgba(244, 237, 222, 0.68);
  font-family: var(--label-font);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.site-nav a,
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 0.1rem 0;
  color: rgba(244, 237, 222, 0.78);
  font-family: var(--label-font);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: linear-gradient(90deg, var(--copper-500), var(--lake-600));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff7eb;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  font-family: var(--label-font);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--copper-500), var(--copper-600));
  color: #fff8ef;
}

.button-secondary {
  background: transparent;
  border-color: rgba(16, 24, 22, 0.22);
  color: var(--forest-900);
}

.hero.section .button-secondary,
.page-hero.section .button-secondary,
.prefooter .button-secondary {
  border-color: rgba(244, 237, 222, 0.2);
  color: #f4edde;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.setup-banner {
  width: min(calc(100% - 2rem), 1180px);
  margin: 1.2rem auto 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--copper-500);
  background: rgba(242, 236, 223, 0.9);
  box-shadow: 0 8px 16px rgba(16, 24, 22, 0.05);
}

.setup-banner h2,
.section-heading h2,
.hero-copy h1,
.page-hero-copy h1,
.panel-heading h2,
.prefooter-copy h2,
.story-card h2,
.contact-copy h2,
.note-panel h2,
.home-story-panel h2,
.beliefs-title {
  margin: 0;
  font-family: var(--display-font);
  line-height: 0.96;
  text-transform: uppercase;
}

.setup-label,
.eyebrow,
.section-kicker,
.panel-kicker,
.quote-checklist-title,
.footer-mark,
.story-kicker {
  margin: 0 0 0.5rem;
  color: var(--copper-600);
  font-family: var(--label-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  width: 100%;
  margin: 0;
  padding: 3.4rem var(--frame-x);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.72), rgba(232, 223, 207, 0.82));
}

.hero.section,
.page-hero.section,
.prefooter,
.contact-section {
  position: relative;
  border-top: 0;
  color: #f4edde;
  background:
    linear-gradient(180deg, rgba(13, 22, 20, 0.96), rgba(24, 39, 35, 0.95)),
    radial-gradient(circle at 82% 16%, rgba(86, 122, 128, 0.18), transparent 20rem),
    radial-gradient(circle at 16% 0%, rgba(183, 100, 54, 0.14), transparent 18rem);
}

.hero.section::after,
.page-hero.section::after,
.prefooter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero,
.page-hero,
.about-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.hero {
  grid-template-columns: 1.08fr 0.92fr;
}

.page-hero,
.contact-layout {
  grid-template-columns: 1fr 0.95fr;
}

.hero-copy h1,
.page-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.hero-summary,
.section-heading p,
.page-hero-copy p,
.prefooter-copy p,
.contact-summary,
.footer-copy,
.note-panel p,
.home-story-panel p {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.hero.section .hero-summary,
.page-hero.section .hero-summary,
.prefooter .prefooter-copy p,
.contact-section .contact-summary,
.contact-section .contact-copy p,
.contact-section .contact-card p,
.contact-section .quote-checklist-list,
.contact-section .quote-checklist-title,
.contact-section label span,
.contact-section .form-status,
.contact-section .section-kicker,
.contact-section h2,
.page-hero.section .panel-kicker,
.page-hero.section .note-panel p,
.hero.section .eyebrow,
.page-hero.section .eyebrow {
  color: rgba(244, 237, 222, 0.8);
}

.hero.section .eyebrow,
.page-hero.section .eyebrow,
.hero.section .panel-kicker,
.page-hero.section .panel-kicker,
.prefooter .section-kicker,
.contact-section .section-kicker {
  color: #e8b58f;
}

.hero-actions,
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.35rem;
}

.hero-highlights {
  margin-top: 1.5rem;
  gap: 1rem 1.5rem;
}

.chip {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 237, 222, 0.88);
  font-family: var(--label-font);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 1px;
  background: #e8b58f;
}

.panel-card,
.note-panel {
  padding: 1.5rem;
  border-top: 1px solid rgba(244, 237, 222, 0.14);
  border-right: 1px solid rgba(244, 237, 222, 0.1);
  border-bottom: 1px solid rgba(244, 237, 222, 0.08);
  border-left: 4px solid var(--copper-500);
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.06), rgba(244, 237, 222, 0.03));
}

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

.panel-item {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(244, 237, 222, 0.12);
}

.panel-item-label {
  color: rgba(244, 237, 222, 0.68);
  font-family: var(--label-font);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-item-value {
  margin-top: 0.35rem;
  color: #fff8ef;
  font-family: var(--display-font);
  font-size: 1rem;
  text-transform: uppercase;
}

.rack-board {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(244, 237, 222, 0.08);
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.03), rgba(244, 237, 222, 0)),
    linear-gradient(145deg, rgba(25, 45, 40, 0.9), rgba(49, 73, 67, 0.76));
}

.rack-board-frame {
  position: relative;
  height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 34px);
}

.rack-post,
.rack-top,
.rack-base,
.rack-slat {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #efb27f, #cb6d33);
}

.rack-post {
  top: 1.4rem;
  bottom: 1.4rem;
  width: 0.55rem;
}

.rack-post.left {
  left: 2.2rem;
}

.rack-post.right {
  right: 2.2rem;
}

.rack-top,
.rack-base {
  left: 2.2rem;
  right: 2.2rem;
  height: 0.55rem;
}

.rack-top {
  top: 1.4rem;
}

.rack-base {
  bottom: 1.4rem;
}

.rack-slats {
  position: absolute;
  inset: 2.6rem 4rem;
  display: grid;
  align-content: space-between;
}

.rack-slat {
  position: static;
  width: 100%;
  height: 0.42rem;
}

.rack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
}

.rack-tags span {
  color: rgba(244, 237, 222, 0.76);
  font-family: var(--label-font);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.section-heading.split {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.benefit-grid,
.teaser-grid,
.product-grid,
.beliefs-grid,
.timeline-grid,
.gallery-grid,
.contact-card-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

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

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

.gallery-grid,
.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.benefit-card,
.teaser-card,
.solution-card,
.story-card,
.belief-card,
.timeline-card,
.gallery-card,
.contact-card,
.faq-item {
  padding: 1.25rem;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 4px solid rgba(119, 89, 66, 0.44);
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.78), rgba(232, 223, 207, 0.94));
}

.solution-card {
  display: flex;
  flex-direction: column;
}

.benefit-card h3,
.teaser-card h3,
.solution-card h3,
.story-card h2,
.belief-card h3,
.timeline-card h3,
.gallery-card h3,
.contact-card h3,
.faq-item summary {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--display-font);
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.benefit-card p,
.teaser-card p,
.solution-card p,
.story-card p,
.belief-card p,
.timeline-card p,
.gallery-card p,
.contact-card p,
.faq-item p {
  margin: 0.68rem 0 0;
  color: var(--text-soft);
}

.solution-meta,
.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(36, 51, 47, 0.18);
  color: var(--forest-800);
  font-family: var(--label-font);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-accent {
  color: var(--copper-600);
  font-family: var(--label-font);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.solution-list li + li {
  margin-top: 0.35rem;
}

.product-link {
  width: auto;
  margin-top: auto;
  align-self: flex-start;
}

.home-showcase {
  display: grid;
  gap: 1.4rem;
}

.home-story-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(244, 237, 222, 0.14);
  border-left: 4px solid var(--copper-500);
  background:
    linear-gradient(180deg, rgba(16, 24, 22, 0.92), rgba(29, 45, 41, 0.92));
}

.home-story-panel .section-kicker,
.home-story-panel h2,
.home-story-panel p {
  color: #f4edde;
}

.prefooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compare-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--forest-900);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: rgba(244, 237, 222, 0.86);
}

.compare-table th,
.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--forest-900);
  color: #f4edde;
  font-family: var(--label-font);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-table tbody th {
  width: 14rem;
  color: var(--forest-900);
  font-family: var(--display-font);
  background: rgba(86, 122, 128, 0.08);
}

.founder-card {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1.1rem 0;
  padding: 1rem;
  border-top: 1px solid var(--line-strong);
  border-left: 4px solid rgba(183, 100, 54, 0.42);
  background: rgba(86, 122, 128, 0.08);
}

.founder-photo {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(36, 51, 47, 0.86), rgba(73, 98, 91, 0.76));
  color: #fff8ef;
  text-align: center;
  font-family: var(--label-font);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-name {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--display-font);
  text-transform: uppercase;
}

.founder-role,
.founder-location {
  margin: 0.24rem 0 0;
  color: var(--text-soft);
}

.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-photo-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 4px solid rgba(119, 89, 66, 0.44);
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.78), rgba(232, 223, 207, 0.94));
}

.gallery-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(16, 24, 22, 0.08);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(21, 34, 31, 0.92), rgba(57, 80, 74, 0.78));
  color: #f4edde;
  text-align: center;
  font-family: var(--label-font);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-note {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid rgba(183, 100, 54, 0.65);
  background: rgba(244, 237, 222, 0.6);
}

.photo-note p {
  margin: 0;
  color: var(--forest-800);
  font-family: var(--label-font);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.customer-photo-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(16, 24, 22, 0.08);
}

.customer-photo-media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.customer-photo-media:hover img,
.customer-photo-media:focus-visible img {
  transform: scale(1.015);
}

.customer-photo-link {
  width: max-content;
  color: var(--forest-900);
  font-family: var(--label-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.customer-photo-link:hover,
.customer-photo-link:focus-visible {
  color: var(--copper-600);
}

.contact-section .contact-card,
.contact-section .quote-form {
  background:
    linear-gradient(180deg, rgba(244, 237, 222, 0.05), rgba(244, 237, 222, 0.03));
  border-top-color: rgba(244, 237, 222, 0.14);
  border-right-color: rgba(244, 237, 222, 0.08);
  border-bottom-color: rgba(244, 237, 222, 0.08);
  border-left-color: rgba(183, 100, 54, 0.7);
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: #fff7ed;
}

.quote-form {
  padding: 1.25rem;
}

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

.quote-form label {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(244, 237, 222, 0.14);
  background: rgba(244, 237, 222, 0.06);
  color: #fff8ef;
  font: inherit;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(244, 237, 222, 0.42);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(232, 181, 143, 0.56);
  outline-offset: 2px;
}

.form-button {
  width: auto;
  margin-top: 1rem;
}

.form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-top: 0.5rem;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 2rem var(--frame-x);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 18, 17, 0.95), rgba(18, 28, 26, 0.95));
  color: #f4edde;
}

.footer-mark {
  color: #e8b58f;
}

.footer-copy,
.footer-note,
.footer-links a {
  color: rgba(244, 237, 222, 0.72);
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .about-layout,
  .contact-layout,
  .section-heading.split,
  .home-story-panel,
  .prefooter {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .benefit-grid,
  .teaser-grid,
  .product-grid,
  .timeline-grid,
  .gallery-grid,
  .contact-card-grid,
  .customer-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav,
  .footer-links {
    justify-content: flex-start;
  }

  .setup-banner,
  .panel-grid,
  .field-row,
  .benefit-grid,
  .teaser-grid,
  .product-grid,
  .beliefs-grid,
  .timeline-grid,
  .gallery-grid,
  .contact-card-grid,
  .customer-photo-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-nav,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

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

  .site-nav a,
  .button,
  .header-cta {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }
}
