:root {
  --bg: #f1ece4;
  --surface: #fcfaf6;
  --surface-strong: #ffffff;
  --surface-dark: #20262c;
  --text: #1f2328;
  --text-soft: #5f655d;
  --text-inverse: #f5efe7;
  --accent: #9a5a34;
  --accent-dark: #774225;
  --border: #d8cfc4;
  --shadow: 0 18px 50px rgba(31, 35, 40, 0.08);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(154, 90, 52, 0.09), transparent 26%),
    linear-gradient(180deg, #f7f3ee 0%, var(--bg) 100%);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  z-index: 100;
}

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

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

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.56);
  border-block: 1px solid rgba(216, 207, 196, 0.55);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--surface-dark);
  color: var(--text-inverse);
}

.eyebrow,
.card-flag,
.panel-kicker,
.area-label,
.footer-heading {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow,
.card-flag,
.panel-kicker,
.area-label {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 1.08;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-heading.narrow {
  max-width: 720px;
}

.lede,
.section-text {
  font-size: 1.08rem;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid rgba(216, 207, 196, 0.7);
}

.topbar {
  border-bottom: 1px solid rgba(216, 207, 196, 0.7);
  font-size: 0.93rem;
}

.topbar-inner,
.header-inner,
.footer-grid,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  padding: 0.75rem 0;
  color: var(--text-soft);
}

.topbar a {
  font-weight: 700;
}

.header-inner {
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: var(--surface-dark);
  color: var(--text-inverse);
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.brand-text strong {
  font-size: 1.15rem;
}

.brand-text span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.site-nav a {
  color: var(--text-soft);
}

.site-nav .button {
  color: var(--text-inverse);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button-solid {
  background: var(--accent);
  color: var(--text-inverse);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--accent-dark);
}

.button-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--accent);
}

.button-light {
  background: var(--surface-strong);
  color: var(--text);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text-inverse);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1.1rem;
}

.hero {
  padding-top: 4.75rem;
}

.hero-grid,
.quote-grid,
.area-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.hero-copy {
  padding-right: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.6rem;
}

.hero-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-list li {
  position: relative;
  padding-left: 1.6rem;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel,
.service-card,
.reason-card,
.gallery-card,
.area-card,
.quote-form {
  background: var(--surface-strong);
  border: 1px solid rgba(216, 207, 196, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -25% auto;
  width: 12rem;
  height: 12rem;
  background:
    linear-gradient(135deg, rgba(154, 90, 52, 0.16), rgba(154, 90, 52, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(31, 35, 40, 0.1) 0,
      rgba(31, 35, 40, 0.1) 12px,
      transparent 12px,
      transparent 24px
    );
  border-radius: 2rem;
  transform: rotate(14deg);
}

.hero-panel > * {
  position: relative;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(216, 207, 196, 0.8);
}

.contact-list dt {
  margin-bottom: 0.35rem;
  color: var(--text-soft);
}

.contact-list dd {
  margin: 0;
  font-weight: 700;
}

.panel-note {
  color: var(--text-soft);
  margin-bottom: 0;
}

.cards-grid,
.reasons-grid,
.gallery-grid {
  display: grid;
  gap: 1.4rem;
}

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

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

.service-card,
.reason-card {
  padding: 1.6rem;
}

.service-card p:last-child,
.reason-card p:last-child,
.gallery-copy p:last-child {
  margin-bottom: 0;
}

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

.gallery-card {
  overflow: hidden;
  grid-column: span 4;
}

.gallery-card.tall {
  grid-column: span 5;
}

.gallery-card.wide {
  grid-column: span 7;
}

.gallery-image {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(154, 90, 52, 0.16), rgba(154, 90, 52, 0.03)),
    repeating-linear-gradient(
      0deg,
      rgba(31, 35, 40, 0.08) 0,
      rgba(31, 35, 40, 0.08) 18px,
      rgba(255, 255, 255, 0.18) 18px,
      rgba(255, 255, 255, 0.18) 36px
    );
}

.gallery-card.tall .gallery-image {
  min-height: 360px;
}

.gallery-card.wide .gallery-image {
  min-height: 220px;
}

.gallery-copy {
  padding: 1.4rem 1.4rem 1.5rem;
}

.area-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
}

.area-card {
  padding: 2rem;
}

.area-main {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  margin-bottom: 0.8rem;
}

.area-sub {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.quote-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.quote-copy p,
.quote-copy h2 {
  color: var(--text-inverse);
}

.quote-copy .eyebrow {
  color: #f0b18a;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.quote-form {
  padding: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-span {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid rgba(216, 207, 196, 0.9);
  background: #fffdfa;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(154, 90, 52, 0.22);
  border-color: var(--accent);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: 0;
  color: #ffd2bf;
}

.form-status.is-warning {
  color: #ffd7a3;
}

.form-status.is-success {
  color: #d6f5db;
}

.site-footer {
  padding: 2rem 0 5.5rem;
  background: #181d22;
  color: rgba(245, 239, 231, 0.82);
}

.footer-grid {
  align-items: start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid > div {
  display: grid;
  gap: 0.55rem;
}

.footer-grid h2,
.footer-grid p {
  color: inherit;
}

.footer-bottom {
  padding-top: 1.2rem;
}

.mobile-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-inverse);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.25);
  z-index: 60;
}

@media (max-width: 980px) {
  .cards-grid,
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .quote-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.5rem 0;
  }

  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(252, 250, 246, 0.98);
    border: 1px solid rgba(216, 207, 196, 0.9);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .cards-grid,
  .reasons-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.tall,
  .gallery-card.wide {
    grid-column: 1 / -1;
  }

  .header-inner {
    min-height: 4.4rem;
  }

  .button {
    width: 100%;
  }

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

  .mobile-call {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
