:root {
  --charcoal: #050504;
  --night: #0b0b09;
  --luxe-green: #132017;
  --luxe-green-2: #1e3023;
  --ink: #1c211f;
  --forest: #071f34;
  --forest-2: #0a2c49;
  --brass: #c5902f;
  --gold: #c5902f;
  --ivory: #f2eee5;
  --paper: #fbf8f1;
  --gallery: #f1ece2;
  --taupe: #a69d92;
  --line: rgba(63, 50, 31, 0.16);
  --muted: #626a66;
  --teal: #196f75;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  --radius: 8px;
  --container: 1408px;
  --page-gutter: clamp(32px, 4.2vw, 66px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(197, 144, 47, 0.32);
  background: rgba(5, 5, 4, 0.97);
  color: #fff;
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(var(--container), calc(100% - var(--page-gutter) - var(--page-gutter)));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(45px, 4vw, 56px);
  height: clamp(38px, 3.5vw, 48px);
  object-fit: contain;
}

.brand-wordmark-logo {
  display: block;
  width: clamp(170px, 15.5vw, 244px);
  height: clamp(17px, 1.45vw, 24px);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 780;
}

.main-nav a {
  display: flex;
  align-items: center;
  min-height: 68px;
  text-decoration: none;
}

.main-nav a:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
}

.nav-link {
  gap: 7px;
}

.nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  width: 236px;
  padding: 9px;
  border: 1px solid rgba(197, 144, 47, 0.36);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.98);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-menu a:hover {
  background: rgba(197, 144, 47, 0.12);
  color: #fff;
}

.main-nav .nav-mobile-cta {
  display: none;
}

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

.phone-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .button {
  border-color: rgba(197, 144, 47, 0.72);
  background: rgba(35, 42, 30, 0.72);
}

.site-header .button:hover {
  background: rgba(48, 58, 40, 0.9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(197, 144, 47, 0.82);
  border-radius: var(--radius);
  padding: 12px 23px;
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  background: #081724;
}

.button.secondary {
  background: var(--charcoal);
  color: #fff;
}

.button.light {
  border-color: rgba(7, 31, 52, 0.18);
  background: var(--paper);
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  height: clamp(400px, 26.5vw, 430px);
  min-height: 400px;
  color: #fff;
  background: #050504;
  overflow: hidden;
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 31%, rgba(0, 0, 0, 0.28) 62%, rgba(0, 0, 0, 0.02) 90%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - var(--page-gutter) - var(--page-gutter)));
  height: 100%;
  margin: 0 auto;
  padding: 36px 0 42px;
  display: grid;
  align-content: center;
  gap: 0;
}

.hero-copy {
  max-width: 535px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title h2,
.split-copy h2,
.product-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(52px, 5.1vw, 72px);
  line-height: 0.98;
}

.hero-rule {
  width: 74px;
  height: 2px;
  margin: 24px 0 20px;
  background: var(--gold);
}

.hero p:not(.hero-eyebrow) {
  max-width: 455px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.42;
}

.hero-ctas {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  padding-bottom: 2px;
}

.hero-with-form {
  height: auto;
  min-height: clamp(540px, 62vh, 640px);
}

.hero-with-form .hero-content {
  min-height: clamp(540px, 62vh, 640px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
  padding: 38px 0 42px;
}

.hero-with-form .hero-copy {
  max-width: 600px;
}

.hero-form {
  position: relative;
  align-self: center;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(197, 144, 47, 0.58);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 144, 47, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(9, 10, 8, 0.94), rgba(19, 31, 22, 0.9));
  color: #fff;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

.hero-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(197, 144, 47, 0.92), transparent);
}

.form-heading {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(197, 144, 47, 0.22);
}

.form-kicker,
.form-note {
  margin: 0;
}

.form-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-form h2 {
  margin: 5px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.hero-form label {
  color: rgba(245, 239, 228, 0.82);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-form.lead-form {
  gap: 13px;
}

.hero-form .field-grid {
  gap: 12px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  border-color: rgba(197, 144, 47, 0.34);
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.96);
  color: #171815;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: rgba(197, 144, 47, 0.9);
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(197, 144, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-form .button {
  width: 100%;
  min-height: 46px;
  border-color: rgba(238, 203, 132, 0.78);
  background: linear-gradient(180deg, #d4a64e, #b98225);
  color: #090907;
  box-shadow: 0 12px 26px rgba(197, 144, 47, 0.22);
}

.hero-form .button:hover {
  background: linear-gradient(180deg, #e0b761, #c5902f);
}

.form-note {
  color: rgba(245, 239, 228, 0.64);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.hero-form .form-message {
  min-height: 18px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.35;
}

.collections-showcase {
  padding: 16px 0 26px;
  border-top: 1px solid rgba(197, 144, 47, 0.3);
  border-bottom: 1px solid rgba(197, 144, 47, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(241, 236, 226, 0.96)),
    var(--gallery);
}

.collection-label {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(54px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(197, 144, 47, 0.12), transparent 34%),
    linear-gradient(135deg, #070806 0%, #121911 52%, #070806 100%);
  color: #fff;
}

.section.alt {
  background: var(--paper);
  color: var(--ink);
}

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

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1;
}

.section-title p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.category-card {
  position: relative;
  height: clamp(184px, 13vw, 204px);
  min-height: 184px;
  overflow: hidden;
  border: 1px solid rgba(197, 144, 47, 0.18);
  border-radius: 4px;
  background: #222;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.25) 56%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 5%, rgba(0, 0, 0, 0.8) 100%);
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 18px;
}

.category-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.category-card p {
  max-width: 270px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.card-link {
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.priority-card {
  border: 1px solid rgba(185, 154, 91, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.split-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.process-list,
.benefit-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.benefit-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-number,
.check-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(197, 144, 47, 0.48);
  background: rgba(197, 144, 47, 0.12);
  color: #fff;
  font-weight: 850;
}

.process-list strong,
.benefit-list strong {
  display: block;
  margin-bottom: 2px;
}

.process-list span,
.benefit-list span {
  color: rgba(255, 255, 255, 0.68);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(197, 144, 47, 0.2);
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.image-panel img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.service-band {
  background: var(--luxe-green);
  color: #fff;
}

.service-band .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
}

.cta-band {
  padding: 26px 0;
  border-top: 1px solid rgba(197, 144, 47, 0.22);
  border-bottom: 1px solid rgba(197, 144, 47, 0.18);
  background:
    radial-gradient(circle at 4% 50%, rgba(197, 144, 47, 0.18), transparent 19%),
    linear-gradient(90deg, rgba(7, 8, 6, 0.94), rgba(20, 32, 22, 0.92)),
    linear-gradient(90deg, #070806, #172719);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(360px, 1.25fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.cta-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.cta-inner p {
  max-width: 520px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.cta-band .button {
  min-width: 210px;
  border-color: rgba(210, 176, 106, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cta-benefit {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.18;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(197, 144, 47, 0.26);
  background:
    radial-gradient(circle at 8% 0%, rgba(197, 144, 47, 0.18), transparent 30%),
    linear-gradient(135deg, #d5cbb7 0%, #ece3d2 58%, #c8bda8 100%);
  color: var(--forest);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: var(--forest);
}

.footer-logo {
  display: block;
  width: min(236px, 100%);
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(7, 31, 52, 0.76);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.page-hero,
.product-hero {
  padding: clamp(44px, 5.5vw, 76px) 0 clamp(34px, 4vw, 44px);
  background:
    radial-gradient(circle at 78% 20%, rgba(197, 144, 47, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.98), rgba(12, 15, 12, 0.98));
  color: #fff;
}

.page-hero {
  padding-top: clamp(40px, 4.6vw, 62px);
  padding-bottom: clamp(28px, 3vw, 36px);
}

.page-hero h1,
.product-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
}

.page-hero p,
.product-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.product-hero + .section.alt {
  padding-top: clamp(28px, 4vw, 44px);
}

.product-hero + .section.alt .product-section:first-child {
  padding-top: 0;
}

.page-hero + .section.alt {
  padding-top: clamp(40px, 5vw, 60px);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.product-section:last-child {
  border-bottom: 0;
}

.product-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.product-copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.section.alt .split-copy p,
.section.alt .process-list span,
.section.alt .benefit-list span {
  color: var(--muted);
}

.section.alt .detail-list li {
  color: var(--ink);
}

.detail-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--brass);
  flex: 0 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-section {
  border-top: 1px solid rgba(197, 144, 47, 0.2);
  background:
    radial-gradient(circle at 82% 8%, rgba(197, 144, 47, 0.14), transparent 30%),
    linear-gradient(135deg, #070806 0%, #111a12 54%, #060706 100%);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(197, 144, 47, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 144, 47, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(9, 10, 8, 0.94), rgba(19, 31, 22, 0.86));
  color: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.contact-card h2 {
  margin: 0 0 12px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-card .form-heading h2 {
  margin: 5px 0 0;
}

.contact-card p {
  color: rgba(245, 239, 228, 0.78);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-lines a,
.contact-lines span {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 650;
}

.contact-lines a:hover {
  color: var(--gold);
}

.contact-card.lead-form label {
  color: rgba(245, 239, 228, 0.82);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card.lead-form input,
.contact-card.lead-form select,
.contact-card.lead-form textarea {
  border-color: rgba(197, 144, 47, 0.34);
  background: rgba(255, 253, 248, 0.96);
  color: #171815;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-card.lead-form input:focus,
.contact-card.lead-form select:focus,
.contact-card.lead-form textarea:focus {
  border-color: rgba(197, 144, 47, 0.9);
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(197, 144, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-card.lead-form .button {
  border-color: rgba(238, 203, 132, 0.78);
  background: linear-gradient(180deg, #d4a64e, #b98225);
  color: #090907;
}

.contact-card.lead-form .button:hover {
  background: linear-gradient(180deg, #e0b761, #c5902f);
}

.contact-card.lead-form .form-message {
  color: var(--gold);
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(34, 39, 37, 0.22);
  border-radius: var(--radius);
  padding: 13px 13px;
  background: #fff;
  color: var(--ink);
  font: 500 15px/1.35 Inter, ui-sans-serif, system-ui, sans-serif;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 24px;
  color: var(--forest);
  font-weight: 750;
}

.form-message[data-state="pending"] {
  color: var(--gold);
}

.form-message[data-state="success"] {
  color: #8dcf9b;
}

.form-message[data-state="error"] {
  color: #f2a7a7;
}

.lead-form .button:disabled {
  cursor: progress;
  opacity: 0.7;
}

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

.overview-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1fr);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(17, 20, 18, 0.08);
}

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

.overview-card > div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px);
}

.overview-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
}

.overview-card span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.overview-card:hover {
  border-color: rgba(185, 154, 91, 0.68);
}

.collection-page-hero {
  position: relative;
  min-height: clamp(420px, 45vh, 530px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.collection-hero-media {
  position: absolute;
  inset: 0;
}

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

.collection-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.32));
}

.collection-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(62px, 7vw, 92px) 0 clamp(48px, 5vw, 66px);
}

.collection-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.8vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.collection-hero-copy p:not(.hero-eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.product-family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.family-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f1;
  box-shadow: 0 18px 42px rgba(17, 20, 18, 0.07);
}

.family-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.family-card > div {
  padding: 20px;
}

.family-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.family-card p {
  margin: 0;
  color: var(--muted);
}

.norman-credit {
  display: block;
  color: rgba(7, 31, 52, 0.52);
  font-size: 10px;
  line-height: 1.25;
}

.family-card .norman-credit {
  padding: 7px 12px 0;
  background: #fbf8f1;
}

.category-card .norman-credit,
.collection-hero-media .norman-credit,
.image-panel .norman-credit {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  max-width: min(260px, calc(100% - 20px));
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.62);
}

.category-card .norman-credit,
.collection-hero-media .norman-credit {
  top: 8px;
  bottom: auto;
}

.norman-attribution {
  padding: 14px 0;
  border-top: 1px solid rgba(197, 144, 47, 0.16);
  background: #101512;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.norman-attribution p {
  margin: 0;
}

.service-row {
  padding: 18px 0;
  border-top: 1px solid rgba(197, 144, 47, 0.2);
  background: #0b0c0a;
  color: #fff;
}

.service-row-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-row strong {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.05;
}

.service-row span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.simple-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

.simple-cta p {
  max-width: 700px;
}

.cta-benefit {
  grid-template-columns: 1fr;
  gap: 3px;
  align-items: start;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}

.cta-benefit strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.cta-benefit span {
  color: rgba(255, 255, 255, 0.72);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.45fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.legal-card,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(17, 20, 18, 0.08);
}

.legal-card {
  padding: 28px;
}

.legal-card h2,
.legal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.legal-details {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
}

.legal-details div {
  display: grid;
  gap: 4px;
}

.legal-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
  font-weight: 650;
}

.legal-details a,
.legal-copy a {
  color: var(--forest);
}

.legal-copy {
  display: grid;
  gap: 0;
}

.legal-copy section {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:last-child {
  border-bottom: 0;
}

.legal-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .main-nav,
  .phone-link {
    display: none;
  }

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

  .header-actions .button {
    display: none;
  }

  .main-nav[data-open="true"] {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(197, 144, 47, 0.28);
    background: rgba(8, 8, 7, 0.98);
  }

  .main-nav[data-open="true"] a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav[data-open="true"] .nav-mobile-cta {
    color: #fff;
    font-weight: 850;
  }

  .main-nav[data-open="true"] .nav-dropdown {
    display: grid;
    min-height: 0;
  }

  .main-nav[data-open="true"] .nav-link {
    min-height: 44px;
  }

  .main-nav[data-open="true"] .nav-menu {
    position: static;
    width: auto;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav[data-open="true"] .nav-menu a {
    min-height: 38px;
    padding: 7px 10px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.72);
  }

  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero-content {
    height: auto;
    min-height: 520px;
    padding: 42px 0 36px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 68px);
  }

  .hero-rule {
    margin: 22px 0 18px;
  }

  .hero p:not(.hero-eyebrow) {
    max-width: 430px;
    font-size: 16px;
  }

  .hero-ctas {
    margin-top: 24px;
  }

  .hero-with-form {
    min-height: auto;
  }

  .hero-with-form .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 24px;
    padding: 42px 0 38px;
  }

  .hero-form {
    width: min(100%, 580px);
    align-self: start;
  }

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

  .split,
  .product-section,
  .form-grid,
  .overview-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .simple-cta {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: start;
    flex-direction: column;
  }

  .service-row-inner {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

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

@media (max-width: 680px) {
  .header-inner {
    width: min(100% - 24px, var(--container));
  }

  .header-actions .button {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 42px;
    height: 36px;
  }

  .brand-wordmark-logo {
    width: clamp(146px, 44vw, 176px);
    height: clamp(15px, 4.5vw, 18px);
  }

  .hero-content,
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    height: auto;
    min-height: 500px;
  }

  .hero-content {
    min-height: 500px;
    padding: 34px 0 30px;
  }

  .hero-with-form .hero-content {
    min-height: auto;
    gap: 18px;
    padding: 30px 0 26px;
  }

  .hero-form {
    padding: 16px;
  }

  .hero-form h2 {
    font-size: 25px;
  }

  .hero-form.lead-form {
    gap: 10px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    padding: 9px 11px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 62%, rgba(0, 0, 0, 0.2) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18));
  }

  .hero h1 {
    font-size: clamp(38px, 11.6vw, 52px);
    line-height: 1;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-rule {
    margin: 16px 0 14px;
  }

  .hero p:not(.hero-eyebrow) {
    font-size: 15px;
  }

  .page-hero,
  .product-hero {
    padding: 48px 0 34px;
  }

  .page-hero h1,
  .product-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.03;
  }

  .product-hero + .section.alt {
    padding-top: 28px;
  }

  .product-section {
    padding: 36px 0;
  }

  .category-grid,
  .field-grid,
  .footer-grid,
  .city-grid,
  .overview-card {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 206px;
    max-height: 76px;
  }

  .category-card,
  .category-card img {
    height: 218px;
    min-height: 218px;
  }

  .cta-band {
    padding: 24px 0;
  }

  .cta-inner p {
    font-size: 16px;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-benefit {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: clamp(27px, 7vw, 30px);
  }

  .image-panel img {
    min-height: 320px;
  }

  .overview-card {
    min-height: 0;
  }

  .overview-card img {
    height: 220px;
  }

  .collection-page-hero {
    min-height: 430px;
  }

  .collection-hero-copy {
    padding: 58px 0 44px;
  }

  .collection-hero-copy h1 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
  }

  .service-row {
    padding: 16px 0;
  }

  .legal-card,
  .legal-copy section {
    padding: 24px;
  }
}
