:root {
  --bg: #f5efe6;
  --surface: rgba(255, 250, 244, 0.9);
  --surface-strong: #fffaf4;
  --ink: #171412;
  --muted: #665d53;
  --line: rgba(23, 20, 18, 0.12);
  --accent: #9b7f58;
  --accent-strong: #715536;
  --accent-soft: #f0e3d2;
  --warm: #c7a57d;
  --shadow: 0 30px 72px rgba(33, 28, 24, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(155, 127, 88, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(125, 155, 142, 0.13), transparent 28%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

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

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

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 30;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: rgba(22, 19, 17, 0.92);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-note {
  opacity: 0.9;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(33, 40, 44, 0.08);
}

.pill--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 244, 0.86);
  border-bottom: 1px solid rgba(30, 36, 40, 0.08);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff8ef, #ead9c3 64%, #d1b98f 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  border: 1px solid rgba(23, 20, 18, 0.15);
}

.brand span {
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.nav details {
  position: relative;
}

.nav-locations {
  position: relative;
}

.nav summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}

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

.nav details[open] summary,
.nav details summary:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.nav summary[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
}

.nav summary::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.75rem;
}

.nav details[open] summary::after {
  content: "▴";
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 251, 247, 0.98);
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
}

.nav-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}

.nav-panel a:hover {
  color: var(--ink);
  background: rgba(155, 127, 88, 0.1);
}

.nav-panel a[aria-current="page"] {
  color: var(--ink);
  background: rgba(155, 127, 88, 0.14);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-strong), #8b6a42 60%, #b59464);
  box-shadow: 0 16px 30px rgba(113, 85, 54, 0.24);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: rgba(30, 36, 40, 0.08);
  box-shadow: 0 10px 24px rgba(35, 40, 44, 0.06);
}

.menu-toggle {
  display: none;
  width: auto;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(23, 20, 18, 0.08);
  border-radius: 999px;
  background: var(--surface);
  align-items: center;
  gap: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-label {
  display: inline-block;
  width: auto;
  height: auto;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 28px 0 32px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 251, 247, 0.94);
  color: var(--accent-strong);
  border: 1px solid rgba(155, 127, 88, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  margin-top: 18px;
  max-width: 12ch;
  line-height: 1;
  text-wrap: balance;
}

.hero-slim h1 {
  font-size: clamp(2rem, 3.9vw, 4rem);
  max-width: 16.5ch;
  line-height: 1.04;
  text-wrap: balance;
}

.hero p,
.section-copy {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta .pill {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

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

.hero-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(22, 19, 17, 0.78);
  color: #fff;
  backdrop-filter: blur(16px);
}

.hero-overlay strong {
  font-size: 1.02rem;
}

.hero-overlay span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.floating-card {
  position: absolute;
  right: -20px;
  top: 26px;
  width: min(270px, 55%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 249, 242, 0.94);
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card h3 {
  margin: 10px 0 6px;
  font-size: 1.06rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 251, 247, 0.84);
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.32rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.section {
  padding: 24px 0 48px;
}

.section-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

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

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(23, 20, 18, 0.08);
  box-shadow: 0 14px 32px rgba(33, 28, 24, 0.06);
}

.card-body {
  padding: 22px;
}

.service-card {
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.96) 78%),
    linear-gradient(135deg, #fffaf4, #f2ece4);
}

.service-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(155, 127, 88, 0.13);
  color: var(--accent-strong);
  font-size: 1.4rem;
}

.service-card h3,
.location-card h3,
.detail-card h3 {
  margin: 14px 0 8px;
  font-size: 1.24rem;
}

.service-card p,
.location-card p,
.detail-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,127,88,0.18), transparent 62%);
}

.image-card {
  overflow: hidden;
  min-height: 360px;
}

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

.tinted-card {
  background: linear-gradient(145deg, rgba(155, 127, 88, 0.09), rgba(255,255,255,0.96));
}

.detail-card {
  padding: 24px;
}

.detail-card ul,
.checklist {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-card li,
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-card li::before,
.checklist li::before {
  content: "•";
  color: var(--accent-strong);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 1px;
}

.location-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.location-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.location-card .card-body {
  display: grid;
  gap: 12px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.gallery-card .card-body {
  padding-top: 18px;
}

.mini-grid {
  display: grid;
  gap: 14px;
}

.quote-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(160deg, #fff, rgba(243, 236, 225, 0.92));
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.quote-card strong {
  display: block;
  margin-bottom: 8px;
}

.cta-banner {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(155, 127, 88, 0.12), rgba(199, 165, 125, 0.18));
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.cta-banner h3 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.footer {
  padding: 28px 0 40px;
}

.footer-inner {
  padding-top: 22px;
  border-top: 1px solid rgba(30, 36, 40, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-slim {
  padding: 34px 0 18px;
}

.hero-slim .hero-grid {
  grid-template-columns: 0.96fr 1.04fr;
}

.hero-slim .hero-visual {
  min-height: 470px;
}

.form-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
}

form.mbr-form {
  display: grid;
  gap: 14px;
}

.input-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(30, 36, 40, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(85, 121, 107, 0.42);
  box-shadow: 0 0 0 4px rgba(85, 121, 107, 0.1);
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(30, 36, 40, 0.08);
  color: var(--ink);
}

.small-copy {
  font-size: 0.96rem;
  color: var(--muted);
}

.mobile-panel {
  display: none;
}

.section-timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(30, 36, 40, 0.08);
}

.timeline-index {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: 1.8rem;
  background: rgba(155, 127, 88, 0.14);
  color: var(--accent-strong);
}

.timeline-item h3 {
  margin: 3px 0 8px;
}

.eyebrow + h1,
.eyebrow + h2 {
  margin-top: 18px;
}

.service-overview {
  margin-top: 12px;
}

.subtle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.subtle-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(155, 127, 88, 0.1);
  color: var(--accent-strong);
  border: 1px solid rgba(155, 127, 88, 0.12);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 540ms ease, transform 540ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .hero-slim .hero-grid,
  .form-shell,
  .cta-banner {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  .topbar-note {
    display: none;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .topbar-inner,
  .header-inner {
    gap: 12px;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-actions .pill--ghost {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-panel {
    display: block;
    width: 100%;
    padding: 0 0 18px;
  }

  .mobile-panel .nav {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
  }

  .mobile-panel .nav details {
    position: static;
  }

  .mobile-panel .nav summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-panel .nav summary::after {
    content: "▾";
    font-size: 0.9rem;
  }

  .mobile-panel .nav details[open] summary::after {
    content: "▴";
  }

  .nav-panel {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
  }

  .mobile-panel .nav a,
  .mobile-panel .btn {
    width: 100%;
  }

  .site-header .header-inner {
    flex-wrap: wrap;
  }

  .grid-3,
  .grid-2,
  .stat-row,
  .input-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-slim h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 380px;
  }

  .floating-card {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 14px 14px 0;
  }

  .hero-card {
    position: relative;
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-panel,
  .card-body,
  .detail-card,
  .quote-card,
  .cta-banner {
    padding: 20px;
  }

  .hero {
    padding-top: 18px;
  }

  .topbar {
    font-size: 0.85rem;
  }

  .brand {
    font-size: 1.28rem;
  }

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

  .topbar-actions,
  .header-inner,
  .hero-actions,
  .hero-meta {
    gap: 10px;
  }
}
