:root {
  --soil: #392f25;
  --soil-soft: #5d4938;
  --prairie: #697548;
  --grass: #8d9b5e;
  --clay: #a85f3f;
  --sun: #d5a84d;
  --sky: #d9e5e8;
  --paper: #f8f4eb;
  --cream: #fffaf0;
  --line: rgba(57, 47, 37, 0.18);
  --shadow: 0 24px 60px rgba(57, 47, 37, 0.18);
  color-scheme: light;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--soil);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 3.75rem clamp(1rem, 4vw, 3rem) 0.85rem;
  background: rgba(248, 244, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.28rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

.wheel-rim {
  fill: var(--cream);
  stroke: var(--soil);
  stroke-width: 1.5;
}

.wheel-quarter {
  stroke: none;
}

.wheel-north {
  fill: var(--sun);
}

.wheel-east {
  fill: var(--clay);
}

.wheel-south {
  fill: var(--prairie);
}

.wheel-west {
  fill: var(--cream);
}

.wheel-center {
  fill: var(--soil);
}

.wheel-line {
  fill: none;
  stroke: var(--soil);
  stroke-width: 1.35;
  stroke-linecap: round;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.2rem;
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--clay);
}

.weather-widget {
  position: absolute;
  top: 0.42rem;
  right: clamp(1rem, 4vw, 3rem);
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.18rem 0.45rem;
  min-height: 2.7rem;
  border: 1px solid rgba(57, 47, 37, 0.16);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 250, 240, 0.72);
  color: var(--soil);
  font-size: 0.82rem;
  line-height: 1.1;
  white-space: nowrap;
}

.weather-icon {
  grid-row: 1 / span 2;
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: var(--clay);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.weather-location,
.weather-temp {
  font-weight: 800;
}

.weather-temp {
  color: var(--clay);
}

.weather-condition {
  grid-column: 2 / span 2;
  color: var(--soil-soft);
  font-size: 0.74rem;
}

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

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 29, 22, 0.78), rgba(36, 29, 22, 0.32) 55%, rgba(36, 29, 22, 0.06)),
    linear-gradient(0deg, rgba(36, 29, 22, 0.65), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(7rem, 17vh, 12rem) clamp(1rem, 5vw, 4rem) clamp(4rem, 10vh, 7rem);
  color: var(--cream);
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c96b;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--sun);
  color: #241d16;
}

.button-secondary {
  border-color: rgba(255, 250, 240, 0.7);
  color: var(--cream);
}

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

.section {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.section-body {
  max-width: 70rem;
}

.intro p,
.ownership-section p,
.contact-section p {
  max-width: 50rem;
  font-size: 1.12rem;
}

.ownership-section {
  background: rgba(255, 250, 240, 0.48);
}

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

.work-grid article {
  min-height: 12rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.52);
}

.work-grid p {
  margin-bottom: 0;
  color: var(--soil-soft);
}

.faq-section {
  background: rgba(217, 229, 232, 0.34);
}

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

.faq-list article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.faq-list p {
  margin-bottom: 0;
  color: var(--soil-soft);
}

.values-band {
  background: var(--soil);
  color: var(--cream);
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 5vw, 4rem);
}

.values-inner {
  width: min(72rem, 100%);
  margin: 0 auto;
}

.values-inner h2 {
  max-width: 54rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.values-list p {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 250, 240, 0.28);
  color: rgba(255, 250, 240, 0.82);
}

.values-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.signup-embed {
  overflow: hidden;
  min-height: 36rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.signup-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  grid-column: 1 / -1;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(255, 250, 240, 0.6);
  font-weight: 760;
  color: var(--soil);
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(168, 95, 63, 0.55);
  color: var(--clay);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .icon-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  padding: 1.4rem clamp(1rem, 5vw, 4rem);
  background: #2a241d;
  color: rgba(255, 250, 240, 0.76);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .section,
  .contact-layout {
    display: block;
  }

  .site-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 0.9rem;
  }

  .header-actions {
    flex-basis: 100%;
    justify-content: flex-start;
    margin-top: 0.75rem;
  }

  .weather-widget {
    position: static;
    width: fit-content;
    margin-top: 0;
    margin-left: auto;
  }

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

  .section-label {
    margin-bottom: 1rem;
  }

  .work-grid,
  .values-list,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup-embed {
    margin-top: 1.5rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.55rem;
  }

  .brand {
    gap: 0.5rem;
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 1.75rem;
    height: 1.75rem;
  }

  .weather-widget {
    grid-template-columns: auto auto;
    gap: 0.08rem 0.32rem;
    min-height: 2.2rem;
    width: auto;
    max-width: none;
    padding: 0.34rem 0.55rem;
    font-size: 0.72rem;
  }

  .weather-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .weather-location {
    display: none;
  }

  .weather-temp {
    line-height: 1;
  }

  .weather-condition {
    grid-column: 2;
    max-width: 5.2rem;
    overflow: hidden;
    font-size: 0.65rem;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(36, 29, 22, 0.82), rgba(36, 29, 22, 0.28)),
      linear-gradient(90deg, rgba(36, 29, 22, 0.62), rgba(36, 29, 22, 0.18));
  }

  .hero-actions,
  .social-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .work-grid,
  .values-list,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 3rem;
  }

  .signup-embed {
    margin-bottom: 0.75rem;
  }
}
