@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --forest: #455c3b;
  --forest-deep: #233e33;
  --forest-ink: #17372f;
  --teal: #173f47;
  --teal-deep: #102f35;
  --sage: #82906b;
  --sage-pale: #e8eadf;
  --ochre: #a9945e;
  --linen: #f5efe3;
  --linen-deep: #ece3d1;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #263c3d;
  --muted: #66706b;
  --line: #d9d1c0;
  --line-dark: rgba(23, 63, 71, 0.2);
  --shadow: 0 22px 64px rgba(31, 52, 43, 0.12);
  --shadow-soft: 0 12px 34px rgba(31, 52, 43, 0.08);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --page: min(100% - 96px, 1360px);
  --stage: min(100% - 40px, 1600px);
  --header-h: 98px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body);
}

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

a {
  color: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--forest-deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: var(--page);
  margin-inline: auto;
}

.section-kicker,
.eyebrow,
.card-label {
  margin: 0;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--teal);
  font-family: var(--display);
  font-weight: 600;
}

h2 {
  font-size: clamp(3.25rem, 5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h3 {
  margin: 0;
  color: var(--teal);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.heading-rule {
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 20px;
  background: var(--forest);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-gold,
.button-navy {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.button-gold:hover,
.button-gold:focus-visible,
.button-navy:hover,
.button-navy:focus-visible {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
}

.button-outline {
  border-color: var(--forest);
  background: rgba(255, 253, 248, 0.5);
  color: var(--forest-deep);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--forest);
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  border-bottom: 1px solid rgba(23, 63, 71, 0.08);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  width: var(--stage);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  align-items: center;
  gap: clamp(24px, 2.8vw, 48px);
}

.brand {
  display: inline-flex;
  width: max-content;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--teal);
  text-decoration: none;
}

.brand-seal {
  position: relative;
  width: 76px;
  height: 68px;
  flex: 0 0 76px;
  overflow: hidden;
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-wordmark {
  display: grid;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.brand-wordmark strong {
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(1.55rem, 1.7vw, 1.88rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.brand-wordmark span {
  display: grid;
  margin-top: 6px;
  grid-template-columns: 22px auto 22px;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.brand-wordmark i {
  display: block;
  height: 1px;
  background: var(--teal);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: var(--teal-deep);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--forest);
  content: "";
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-width: 190px;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--forest-deep);
}

.mobile-menu {
  position: relative;
  display: none;
  justify-self: end;
}

.mobile-menu summary {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 12px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary span {
  width: 22px;
  height: 2px;
  background: var(--forest-deep);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  padding: 12px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu nav .mobile-menu-call {
  margin-top: 12px;
  border: 0;
  border-radius: 5px;
  background: var(--forest);
  color: #fff;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  width: var(--stage);
  min-height: clamp(610px, 43vw, 760px);
  margin-inline: auto;
  overflow: clip;
  background: var(--linen-deep);
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-width: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--linen-deep);
}

.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 227, 0.34) 0%, rgba(247, 241, 227, 0.08) 33%, transparent 58%);
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 52%;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  top: clamp(34px, 4.6vw, 72px);
  left: clamp(28px, 4.8vw, 76px);
  display: flex;
  width: clamp(350px, 28.5vw, 438px);
  min-width: 0;
  padding: clamp(42px, 4vw, 58px) clamp(34px, 3.3vw, 48px) 46px;
  flex-direction: column;
  border: 1px solid rgba(69, 92, 59, 0.55);
  border-radius: 36px 3px 36px 3px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-copy::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(69, 92, 59, 0.28);
  border-radius: 28px 2px 28px 2px;
  content: "";
  pointer-events: none;
}

.hero-copy > *:not(.botanical-sprig) {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-top: 15px;
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(5.2rem, 6.4vw, 6.75rem);
  font-synthesis: none;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.72;
}

.hero-lede {
  max-width: 310px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  width: min(100%, 275px);
  margin-top: 28px;
  gap: 10px;
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
}

.botanical-sprig {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: block;
  width: clamp(92px, 7vw, 108px);
  height: auto;
  transform: none;
  opacity: 0.84;
  object-fit: contain;
  pointer-events: none;
}

.hero-slider-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-visual:hover .hero-slider-controls,
.hero-slider-controls:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-controls > button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(35, 62, 51, 0.72);
  color: #fff;
  cursor: pointer;
}

.hero-slider-dots {
  display: flex;
  gap: 6px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(35, 62, 51, 0.72);
}

.hero-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-slider-dots button.is-active {
  width: 20px;
  border-radius: 6px;
  background: #fff;
}

.hero-copy.is-entering .eyebrow,
.hero-copy.is-entering h1,
.hero-copy.is-entering .heading-rule,
.hero-copy.is-entering .hero-lede,
.hero-copy.is-entering .hero-actions {
  animation: hero-copy-in 700ms both;
}

.hero-copy.is-entering h1 { animation-delay: 70ms; }
.hero-copy.is-entering .heading-rule { animation-delay: 125ms; }
.hero-copy.is-entering .hero-lede { animation-delay: 175ms; }
.hero-copy.is-entering .hero-actions { animation-delay: 225ms; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-essentials {
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), #fbf7ee);
}

.essentials-shell {
  width: min(var(--page), 1280px);
  margin-inline: auto;
}

.essentials-label {
  margin: 0 0 13px;
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.essentials-inner {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.essentials-inner > div {
  display: flex;
  min-width: 0;
  min-height: 88px;
  padding: 14px 16px;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  border: 1px solid rgba(69, 92, 59, 0.16);
  border-radius: 15px 3px 15px 3px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 9px 24px rgba(31, 52, 43, 0.045);
  color: var(--teal);
}

.essential-icon {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-color: var(--linen);
  background-image: url("assets/essentials-icons-v2.png");
  background-repeat: no-repeat;
  background-size: 400% auto;
}

.essential-icon[data-icon="utilities"] { background-position: 0 -10px; }
.essential-icon[data-icon="pantry"] { background-position: 33.333% -10px; }
.essential-icon[data-icon="bedding"] { background-position: 66.667% -10px; }
.essential-icon[data-icon="laundry"] { background-position: 100% -10px; }

.essential-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.essentials-inner strong {
  font-size: 0.87rem;
  font-weight: 650;
  line-height: 1.2;
}

.essentials-inner small {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

/* Welcome and Level II */
.welcome-section {
  position: relative;
  overflow: clip;
  padding: 76px 0 58px;
  background:
    radial-gradient(circle at 6% 48%, rgba(130, 144, 107, 0.13), transparent 22%),
    radial-gradient(circle at 61% 30%, rgba(214, 192, 137, 0.11), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fbf7ec 100%);
}

.welcome-section::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 63, 71, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 71, 0.014) 1px, transparent 1px);
  background-size: 8px 8px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.welcome-botanical {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.welcome-botanical-top {
  top: -150px;
  left: 26%;
  width: 230px;
  opacity: 0.13;
  transform: rotate(8deg);
}

.welcome-botanical-bottom {
  bottom: -115px;
  left: -38px;
  width: 220px;
  opacity: 0.2;
  transform: rotate(-18deg);
}

.welcome-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 34px clamp(14px, 1.6vw, 24px);
}

.welcome-heading {
  position: relative;
  z-index: 3;
  min-height: 530px;
  overflow: hidden;
  padding: clamp(88px, 7vw, 112px) clamp(36px, 3.4vw, 56px) 48px;
  grid-column: 1 / 5;
  border: 1px solid rgba(205, 171, 96, 0.34);
  border-radius: 240px 240px 18px 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(144, 163, 130, 0.18), transparent 28%),
    linear-gradient(155deg, #174b4c 0%, #103b3d 62%, #123334 100%);
  box-shadow: 0 26px 54px rgba(22, 54, 51, 0.14);
  color: rgba(255, 253, 248, 0.9);
}

.welcome-heading-botanical {
  position: absolute;
  right: -74px;
  bottom: -68px;
  width: 250px;
  opacity: 0.18;
  pointer-events: none;
  transform: rotate(-9deg);
  user-select: none;
}

.welcome-heading .section-kicker {
  position: relative;
  z-index: 1;
  color: #eee5c8;
  font-size: 0.69rem;
  letter-spacing: 0.2em;
}

.welcome-heading h2 {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin-top: 18px;
  color: #fffdf8;
  font-size: clamp(3.55rem, 4.35vw, 4.7rem);
  letter-spacing: -0.052em;
  line-height: 0.91;
}

.welcome-heading .heading-rule {
  position: relative;
  z-index: 1;
  width: 72px;
  margin-top: 27px;
  background: #d5ad55;
}

.welcome-heading > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 355px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.84rem;
  line-height: 1.7;
}

.welcome-heading .text-link {
  position: relative;
  z-index: 1;
  margin-top: 29px;
  padding-bottom: 4px;
  border-bottom: 1px solid #d5ad55;
  color: #fffdf8;
  text-decoration: none;
}

.welcome-heading .text-link span {
  color: #e5c272;
  font-size: 1.05rem;
}

.welcome-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 530px;
  grid-column: 5 / 13;
}

.welcome-photos {
  position: relative;
  min-height: 530px;
}

.welcome-photos figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e9e3d5;
}

.welcome-photo-primary {
  width: calc(100% - clamp(150px, 17vw, 218px));
  height: 520px;
  border: 1px solid rgba(183, 139, 49, 0.72);
  border-radius: 52% 52% 22px 22px / 34% 34% 22px 22px;
  box-shadow: 0 22px 48px rgba(54, 48, 36, 0.12);
}

.welcome-photo-secondary {
  position: absolute !important;
  right: 0;
  bottom: -18px;
  width: clamp(250px, 27vw, 310px);
  height: 382px;
  padding: 7px;
  border: 2px solid rgba(185, 143, 57, 0.9);
  border-radius: 145px 145px 18px 18px / 70px 70px 18px 18px;
  background: #faf5e9 !important;
  box-shadow: 0 26px 50px rgba(39, 49, 43, 0.22), 0 0 0 4px rgba(255, 253, 248, 0.92);
}

.welcome-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.welcome-photo-primary img {
  object-position: 50% 52%;
}

.welcome-photo-secondary img {
  border-radius: 137px 137px 12px 12px / 64px 64px 12px 12px;
  object-position: 50% 55%;
}

.welcome-photos figure:hover img {
  transform: scale(1.025);
}

.welcome-photos figcaption {
  position: absolute;
  right: auto;
  bottom: 19px;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 12px 19px;
  border: 1px solid rgba(23, 63, 71, 0.12);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.welcome-photo-secondary figcaption {
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
}

.values-row {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 10px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.values-row article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 178px;
  padding: 22px 24px;
  grid-template-columns: 102px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(191, 151, 67, 0.42);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(72, 73, 58, 0.06);
}

.values-row article:not(:last-child)::after {
  position: absolute;
  top: 82px;
  right: -31px;
  z-index: 4;
  width: 41px;
  height: 19px;
  border-top: 2px solid #c3a04f;
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
}

.value-icon {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(191, 151, 67, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fffdf8 0%, #f4eedf 72%, #e8dfc7 100%);
  box-shadow: inset 0 0 0 7px rgba(255, 253, 248, 0.56), 0 8px 22px rgba(81, 77, 58, 0.08);
}

.value-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.value-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 7px 14px;
}

.value-number {
  color: #b99542;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.values-row h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.15rem);
}

.values-row article p {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.level-two-note {
  display: grid;
  position: relative;
  z-index: 2;
  min-height: 98px;
  margin-top: -2px;
  padding: 12px 30px;
  grid-column: 1 / -1;
  grid-template-columns: 78px minmax(180px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(130, 144, 107, 0.16);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(232, 234, 223, 0.96), rgba(241, 241, 228, 0.9) 58%, rgba(225, 230, 213, 0.96));
  box-shadow: 0 12px 30px rgba(75, 80, 61, 0.05);
}

.level-two-seal {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 2px solid #9a782c;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #f4d98e, #cda74c 62%, #aa7d27 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 246, 211, 0.4), 0 7px 18px rgba(91, 73, 39, 0.13);
}

.level-two-seal img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.level-two-title {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.level-two-note p {
  margin: 0;
  padding: 7px 0 7px 38px;
  border-left: 1px solid rgba(185, 143, 57, 0.56);
  color: var(--muted);
  font-size: 0.82rem;
}

/* Shared gallery treatment */
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 71, 0.11);
  border-radius: 18px 18px 5px 5px;
  background: var(--linen-deep);
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(23, 63, 71, 0.12);
  border-radius: 3px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Path */
.path-section {
  padding: 64px 0 104px;
  background: var(--paper);
}

.path-grid {
  position: relative;
  display: grid;
  min-height: 660px;
  padding: clamp(48px, 4.5vw, 68px);
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1.06fr) minmax(330px, 1.12fr);
  align-items: center;
  gap: clamp(26px, 3vw, 50px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(69, 92, 59, 0.14);
  border-radius: 28px;
  background: #f7f1e4;
  box-shadow: var(--shadow-soft);
}

.path-grid::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 241, 228, 0.98) 0%, rgba(247, 241, 228, 0.8) 23%, rgba(247, 241, 228, 0.08) 38%, rgba(247, 241, 228, 0.08) 54%, rgba(247, 241, 228, 0.78) 67%, rgba(247, 241, 228, 0.98) 100%);
  content: "";
  pointer-events: none;
}

.path-intro,
.path-steps {
  position: relative;
  z-index: 2;
}

.path-intro { grid-column: 1; }
.path-steps { grid-column: 3; }

.path-intro h2 {
  margin-top: 12px;
  font-size: clamp(3.3rem, 4.3vw, 4.45rem);
}

.path-intro > p:not(.section-kicker) {
  max-width: 440px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-intro .button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 0.67rem;
}

.path-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  margin: 0;
  pointer-events: none;
}

.path-art img {
  position: absolute;
  bottom: -2%;
  left: 50%;
  width: min(72%, 960px);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  opacity: 0.95;
}

.path-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-steps li {
  position: relative;
  display: grid;
  padding: 18px 0;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 15px;
  border-top: 1px solid rgba(23, 63, 71, 0.15);
}

.path-steps li:last-child {
  border-bottom: 1px solid rgba(23, 63, 71, 0.15);
}

.path-steps li:not(:last-child)::after {
  position: absolute;
  top: 58px;
  bottom: -18px;
  left: 25px;
  width: 1px;
  background: rgba(69, 92, 59, 0.3);
  content: "";
}

.path-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 6px solid rgba(130, 144, 107, 0.17);
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.path-steps small {
  color: var(--forest);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.path-steps h3 {
  margin-top: 2px;
  font-size: 1.65rem;
}

.path-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* Included */
.included-section {
  padding: 108px 0;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 410px);
  align-items: end;
  gap: 48px;
}

.section-heading h2 {
  max-width: 800px;
  margin-top: 11px;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading-wide h2 {
  max-width: 860px;
}

.included-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: minmax(0, 57%) minmax(330px, 43%);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.included-feature {
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.included-feature::after {
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(16, 47, 53, 0.9));
  content: "";
}

.included-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.included-feature > div {
  position: absolute;
  right: 38px;
  bottom: 34px;
  left: 38px;
  z-index: 2;
  color: #fff;
}

.included-feature span {
  color: #ddd3ad;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.included-feature h3 {
  max-width: 600px;
  margin-top: 7px;
  color: #fff;
  font-size: clamp(2.35rem, 3vw, 3.4rem);
}

.included-feature p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
}

.included-list {
  display: grid;
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.included-list article {
  display: grid;
  padding: 22px 28px;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.included-list article:last-child {
  border-bottom: 0;
}

.included-list article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.included-list h3 {
  font-size: 1.42rem;
}

.included-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

/* Gallery */
.gallery-section {
  padding: 104px 0 118px;
  background: linear-gradient(180deg, var(--linen), #f8f3e8);
}

.gallery-grid {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, 245px);
  gap: 14px;
}

.gallery-grid figure {
  border-radius: 3px;
  box-shadow: none;
}

.gallery-grid .gallery-wide {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.gallery-grid figure:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
}

.gallery-grid figure:nth-child(3) {
  grid-column: 7 / 10;
  grid-row: 2 / 3;
}

.gallery-grid figure:nth-child(4) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.gallery-grid figure:nth-child(5) {
  grid-column: 1 / 7;
  grid-row: 3 / 4;
}

.gallery-grid figcaption {
  right: auto;
  left: 10px;
  width: auto;
  min-width: 120px;
}

/* Listings */
.listings-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--paper);
}

.listings-section::before {
  position: absolute;
  bottom: -95px;
  left: -40px;
  width: 190px;
  height: 280px;
  border-left: 1px solid rgba(69, 92, 59, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(-28deg);
}

.listings-grid {
  display: grid;
  grid-template-columns: minmax(290px, 34fr) minmax(0, 66fr);
  gap: clamp(54px, 7vw, 108px);
  align-items: center;
}

.listings-heading h2 {
  margin-top: 12px;
  font-size: clamp(3.4rem, 4.7vw, 4.7rem);
}

.listings-heading > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.listings-surface {
  min-height: 340px;
  padding: 28px;
  border: 1px solid rgba(69, 92, 59, 0.35);
  border-radius: 16px 3px 16px 3px;
  background: #fff;
  box-shadow: var(--shadow);
}

/* Start */
.start-section {
  padding: 108px 0 116px;
  background: var(--linen);
}

.start-heading {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.start-heading h2 {
  margin-top: 11px;
}

.start-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.start-grid {
  position: relative;
  display: grid;
  max-width: 1240px;
  margin: 52px auto 0;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 34px;
}

.start-grid::before {
  position: absolute;
  top: 50%;
  left: calc(40.5% + 17px);
  z-index: 4;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  color: var(--forest);
  content: "\2192";
  font-size: 1.25rem;
}

.prequalify-card,
.application-card {
  padding: clamp(36px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: 16px 3px 16px 3px;
  box-shadow: var(--shadow-soft);
}

.prequalify-card {
  background: var(--paper);
}

.application-card {
  background: #fbf7ee;
}

.prequalify-card h3,
.application-card h3 {
  margin-top: 11px;
  font-size: clamp(2.65rem, 3.3vw, 3.55rem);
}

.prequalify-card > p,
.application-card > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.prequalify-count {
  display: flex;
  margin: 30px 0;
  align-items: center;
  gap: 17px;
}

.prequalify-count strong {
  color: var(--ochre);
  font-family: var(--display);
  font-size: 5.9rem;
  font-weight: 600;
  line-height: 0.72;
}

.prequalify-count span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.document-list {
  display: grid;
  margin: 24px 0 28px;
  padding: 0;
  gap: 9px;
  color: var(--ink);
  font-size: 0.84rem;
  list-style: none;
}

.document-list li {
  position: relative;
  padding-left: 26px;
}

.document-list li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 13px;
  height: 7px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  content: "";
}

.application-actions {
  display: grid;
  grid-template-columns: minmax(190px, 260px);
  gap: 12px;
}

.payment-note,
.privacy-note {
  font-size: 0.76rem !important;
}

.privacy-note {
  padding: 14px 16px;
  border-left: 2px solid var(--sage);
  background: rgba(232, 234, 223, 0.55);
}

/* Founder */
.founder-section {
  position: relative;
  padding: clamp(92px, 8vw, 132px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 46%, rgba(130, 144, 107, 0.12), transparent 24%),
    radial-gradient(circle at 94% 16%, rgba(169, 148, 94, 0.08), transparent 22%),
    linear-gradient(112deg, #fbf7ed 0%, #fffdf8 49%, #faf5e9 100%);
}

.founder-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.77fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(62px, 6vw, 104px);
}

.founder-art {
  position: relative;
  z-index: 0;
  min-width: 0;
  padding: 22px 14px 40px 34px;
  overflow: visible;
  isolation: isolate;
}

.founder-art::before {
  content: none;
}

.founder-botanical {
  position: absolute;
  z-index: 0;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.founder-botanical-back {
  top: -12%;
  left: -24%;
  width: 125%;
  opacity: 0.82;
  transform: none;
}

.founder-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(169, 148, 94, 0.62);
  border-radius: 240px 240px 5px 5px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow:
    0 0 0 7px rgba(255, 253, 248, 0.9),
    0 0 0 8px rgba(169, 148, 94, 0.42),
    0 26px 52px rgba(31, 52, 43, 0.17);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 0.79;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 230px 230px 2px 2px;
}

.founder-service-badge {
  position: absolute;
  z-index: 3;
  bottom: 11%;
  left: -2%;
  display: flex;
  width: clamp(126px, 10.5vw, 154px);
  aspect-ratio: 1;
  padding: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid #c8ad6d;
  border-radius: 50%;
  outline: 1px solid rgba(200, 173, 109, 0.74);
  outline-offset: 4px;
  background: #354c33;
  box-shadow: 0 15px 34px rgba(31, 52, 43, 0.2);
  color: #e2c686;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.founder-service-badge strong {
  font-family: var(--display);
  font-size: clamp(2.45rem, 3.7vw, 3.35rem);
  font-weight: 600;
}

.founder-service-badge span {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.founder-service-badge i {
  margin: 8px 0 6px;
  font-size: 0.62rem;
  font-style: normal;
}

.founder-service-badge small {
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.founder-story {
  display: grid;
  min-width: 0;
  gap: 28px;
}

.founder-heading-rule {
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 15px;
  background: #c7a24e;
}

.founder-heading h2 {
  margin-top: 12px;
  font-size: clamp(4rem, 5.7vw, 6.15rem);
  line-height: 0.91;
}

.founder-role {
  margin: 17px 0 0;
  color: var(--forest);
  font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.founder-bio {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  line-height: 1.7;
}

.founder-mission {
  position: relative;
  min-height: 170px;
  margin: 0;
  padding: clamp(28px, 3vw, 40px) clamp(112px, 11vw, 152px) clamp(28px, 3vw, 40px) clamp(76px, 6.5vw, 96px);
  overflow: hidden;
  border: 1px solid rgba(169, 148, 94, 0.5);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 14px 34px rgba(31, 52, 43, 0.08);
  color: var(--teal-deep);
}

.founder-mission p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.72rem, 2.35vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.17;
}

.founder-quote-mark {
  position: absolute;
  top: 20px;
  left: 27px;
  color: #ba943c;
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
}

.founder-mission::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 65px;
  width: 1px;
  background: rgba(186, 148, 60, 0.54);
  content: "";
}

.founder-mission img {
  position: absolute;
  right: 22px;
  bottom: 8px;
  width: 124px;
  height: auto;
  opacity: 0.58;
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.founder-credential {
  display: grid;
  min-width: 0;
  padding: 0 clamp(14px, 2vw, 28px);
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  color: #283b3b;
  font-size: clamp(0.74rem, 0.92vw, 0.86rem);
  line-height: 1.5;
}

.founder-credential:first-child {
  padding-left: 0;
}

.founder-credential + .founder-credential {
  border-left: 1px solid rgba(169, 148, 94, 0.45);
}

.founder-credential-icon {
  display: inline-flex;
  width: 58px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid #9b8242;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.6);
}

.founder-credential-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.founder-contact {
  position: relative;
  display: grid;
  min-height: 128px;
  padding: 22px clamp(112px, 11vw, 148px) 22px 26px;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  border: 1px solid rgba(169, 148, 94, 0.48);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 14px 34px rgba(31, 52, 43, 0.08);
}

.founder-contact > a {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  padding: 3px clamp(16px, 2.2vw, 30px);
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  text-decoration: none;
}

.founder-contact > a:first-child {
  padding-left: 0;
}

.founder-contact > a + a {
  border-left: 1px solid rgba(169, 148, 94, 0.52);
}

.founder-contact-icon {
  display: inline-flex;
  width: 56px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #354f3a;
  color: #dfc27d;
  font-family: "Segoe UI Symbol", sans-serif;
  font-size: 1.8rem;
  transition: background 180ms ease, transform 180ms ease;
}

.founder-contact a:hover .founder-contact-icon,
.founder-contact a:focus-visible .founder-contact-icon {
  background: var(--teal);
  transform: translateY(-2px);
}

.founder-contact small {
  display: block;
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-contact strong {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
}

.founder-contact a[href^="mailto:"] strong {
  font-family: var(--body);
  font-size: clamp(0.76rem, 0.93vw, 0.9rem);
  font-weight: 600;
}

.founder-contact > img {
  position: absolute;
  right: 18px;
  bottom: -3px;
  width: 132px;
  height: auto;
  opacity: 0.56;
}

/* FAQ */
.faq-section {
  position: relative;
  padding: 106px 0 132px;
  overflow: hidden;
  background: var(--linen);
}

.faq-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(290px, 33fr) minmax(0, 67fr);
  gap: clamp(54px, 8vw, 126px);
}

.faq-heading h2 {
  margin-top: 11px;
}

.faq-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
  background: transparent;
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 21px 48px 21px 0;
  color: var(--teal);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--forest);
  content: "+";
  font-family: var(--body);
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 0 23px;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-list a {
  color: var(--teal);
  font-weight: 700;
}

/* Contact and footer intentionally separated */
.contact-section {
  position: relative;
  z-index: 3;
  padding: 78px 0;
  background: var(--forest-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
  align-items: start;
  gap: clamp(66px, 8vw, 130px);
}

.contact-section .section-kicker {
  color: #c8bb8e;
}

.contact-section h2 {
  margin-top: 10px;
  color: #fff;
}

.contact-grid > :first-child > p:last-child {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel {
  display: grid;
  gap: 28px;
}

.contact-panel .community-contact-widget {
  --ibo-contact-ink: var(--forest-deep);
  --ibo-contact-muted: #5f6d67;
  --ibo-contact-accent: #6f5524;
  --ibo-contact-surface: var(--paper);
  --ibo-contact-line: rgba(23, 49, 41, 0.18);
}

.contact-actions a {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.contact-actions span {
  color: #c8bb8e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}

.footer {
  position: relative;
  z-index: 3;
  padding: 42px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #173129;
  color: #fff;
}

.footer-inner {
  display: grid;
  width: var(--page);
  margin-inline: auto;
  grid-template-columns: 1.1fr auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  text-decoration: none;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
}

.footer-brand span,
.footer-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
}

.footer nav {
  display: flex;
  gap: 25px;
}

.footer nav a {
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}

.footer-meta {
  display: flex;
  padding-top: 22px;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-call {
  display: none;
}

/* Compact desktop */
@media (max-width: 1360px) {
  :root {
    --page: min(100% - 64px, 1240px);
    --stage: min(100% - 32px, 1500px);
  }

  .header-inner {
    grid-template-columns: minmax(292px, 1fr) auto auto;
    gap: 22px;
  }

  .brand-seal {
    width: 68px;
    height: 60px;
    flex-basis: 68px;
  }

  .brand-wordmark strong { font-size: 1.55rem; }
  .desktop-nav { gap: 22px; }
  .desktop-nav a { font-size: 0.78rem; }
  .header-cta { min-width: 174px; }
  .hero-copy { width: 390px; }
  .hero h1 { font-size: 5.65rem; }
  .welcome-heading { padding-inline: 42px; }
  .welcome-heading h2 { font-size: clamp(3.45rem, 4.25vw, 4.25rem); }
  .welcome-photo-primary { width: calc(100% - 185px); }
  .welcome-photo-secondary { width: 282px; }
  .values-row article { padding-inline: 20px; grid-template-columns: 94px minmax(0, 1fr); gap: 16px; }
  .value-icon { width: 88px; height: 88px; }
  .value-icon img { width: 68px; height: 68px; }
  .application-actions { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  :root { --header-h: 92px; }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav { display: none; }
  .mobile-menu { display: block; }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    top: 42px;
    left: 34px;
    width: 362px;
    padding: 42px 36px 40px;
  }

  .hero h1 { font-size: 5.35rem; }

  .welcome-heading {
    padding-inline: 34px;
  }

  .welcome-heading h2 {
    font-size: clamp(3.15rem, 4.55vw, 3.8rem);
  }

  .welcome-photo-primary {
    width: calc(100% - 170px);
  }

  .welcome-photo-secondary {
    width: 265px;
  }

  .values-row article {
    padding: 20px 18px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .value-icon { width: 78px; height: 78px; }
  .value-icon img { width: 60px; height: 60px; }
  .value-copy { gap: 6px 9px; }
  .value-number { font-size: 1.7rem; }
  .values-row h3 { font-size: 1.72rem; }

  .path-grid {
    min-height: 650px;
    grid-template-columns: minmax(250px, 0.8fr) minmax(390px, 1.2fr);
    gap: 42px;
  }

  .path-intro {
    grid-column: 1;
    max-width: 430px;
  }

  .path-steps { grid-column: 2; }

  .path-art img {
    left: 46%;
    width: min(84%, 880px);
    opacity: 0.55;
  }

  .path-grid::after {
    background: linear-gradient(90deg, rgba(247, 241, 228, 0.97) 0%, rgba(247, 241, 228, 0.76) 30%, rgba(247, 241, 228, 0.22) 48%, rgba(247, 241, 228, 0.76) 70%, rgba(247, 241, 228, 0.97) 100%);
  }

  .founder-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 48px;
  }

  .founder-art { padding-left: 28px; }
  .founder-heading h2 { font-size: clamp(3.9rem, 6vw, 5.1rem); }
  .founder-mission { padding-right: 110px; }
  .founder-mission p { font-size: clamp(1.55rem, 2.4vw, 2rem); }
  .founder-credential {
    padding-inline: 13px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    font-size: 0.72rem;
  }
  .founder-credential-icon { width: 48px; }
  .founder-credential-icon img { width: 29px; height: 29px; }
  .founder-contact { padding-right: 118px; }
  .founder-contact > a { padding-inline: 16px; grid-template-columns: 50px minmax(0, 1fr); gap: 12px; }
  .founder-contact-icon { width: 50px; }
}

/* Tablet */
@media (max-width: 960px) {
  :root {
    --page: min(100% - 40px, 880px);
    --stage: min(100% - 24px, 1040px);
  }

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

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .welcome-heading {
    min-height: 0;
    max-width: none;
    padding: 78px 56px 54px;
    grid-column: 1;
    border-radius: 220px 220px 22px 22px;
  }

  .welcome-heading h2 {
    max-width: 570px;
    font-size: clamp(4rem, 9vw, 5.2rem);
  }

  .welcome-heading > p:not(.section-kicker) {
    max-width: 540px;
  }

  .welcome-content {
    min-height: 540px;
    margin-top: 0;
    grid-column: 1;
  }

  .welcome-photos { min-height: 540px; }
  .welcome-photo-primary { width: calc(100% - 205px); height: 520px; }
  .welcome-photo-secondary { width: 310px; height: 382px; }

  .values-row,
  .level-two-note { grid-column: 1; }

  .values-row { margin-top: 4px; }

  .values-row article {
    min-height: 190px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .value-icon { width: 90px; height: 90px; }
  .value-icon img { width: 69px; height: 69px; }
  .values-row h3 { font-size: 1.85rem; }

  .level-two-note {
    grid-template-columns: 72px minmax(155px, 190px) minmax(0, 1fr);
    gap: 18px;
    padding-inline: 22px;
  }

  .path-section,
  .included-section,
  .gallery-section,
  .listings-section,
  .start-section,
  .founder-section,
  .faq-section { padding-block: 88px; }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .founder-art {
    width: min(100%, 520px);
    justify-self: center;
    overflow: hidden;
  }

  .founder-botanical-back {
    top: -10%;
    left: -10%;
    width: 100%;
    opacity: 0.78;
  }

  .founder-story {
    position: relative;
    z-index: 2;
  }

  .founder-heading h2 { font-size: clamp(4.5rem, 10vw, 5.8rem); }
  .founder-bio { max-width: 760px; }
  .founder-mission p { font-size: clamp(1.8rem, 4vw, 2.35rem); }

  .path-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .path-intro {
    grid-column: 1;
    max-width: 650px;
  }

  .path-art {
    position: relative;
    inset: auto;
    width: 100%;
    margin: -10px 0 12px;
    grid-column: 1;
  }

  .path-art img {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
    opacity: 0.92;
  }

  .path-steps { grid-column: 1; }
  .path-grid::after { display: none; }

  .included-grid { grid-template-columns: 1fr; }
  .included-feature { min-height: 0; aspect-ratio: 4 / 3; }
  .included-list { border-top: 1px solid var(--line); border-left: 0; }

  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 640px; }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 250px);
  }

  .gallery-grid .gallery-wide { grid-column: 1 / 3; grid-row: 1 / 3; }
  .gallery-grid figure:nth-child(2) { grid-column: 1 / 3; grid-row: 3 / 4; }
  .gallery-grid figure:nth-child(3) { grid-column: 1 / 2; grid-row: 4 / 5; }
  .gallery-grid figure:nth-child(4) { grid-column: 2 / 3; grid-row: 4 / 5; }
  .gallery-grid figure:nth-child(5) { grid-column: 1 / 3; grid-row: 5 / 6; min-height: 250px; }

  .listings-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 46px; }

  .start-grid { grid-template-columns: 1fr; }
  .start-grid::before { display: none; }

  .contact-actions { max-width: 650px; }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 32px, 650px);
    --stage: 100%;
    --header-h: 86px;
  }

  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .header-cta { display: none; }
  .mobile-menu nav {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    max-height: calc(100dvh - var(--header-h) - 16px);
    overflow-y: auto;
  }
  .brand { gap: 7px; }
  .brand-seal { width: 58px; height: 52px; flex-basis: 58px; }
  .brand-wordmark strong { font-size: 1.2rem; }
  .brand-wordmark span { grid-template-columns: 12px auto 12px; gap: 4px; font-size: 0.48rem; letter-spacing: 0.21em; }

  .hero {
    display: flex;
    min-height: 0;
    padding-bottom: 28px;
    flex-direction: column;
    background: var(--linen);
  }

  .hero-visual {
    position: relative;
    order: 1;
    aspect-ratio: 4 / 3;
  }

  .hero-media::after {
    background: linear-gradient(to bottom, transparent 55%, rgba(245, 239, 227, 0.2));
  }

  .hero-slide img { object-position: center; }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: auto;
    margin: -38px 16px 0;
    padding: 42px 32px 38px;
  }

  .hero h1 { font-size: clamp(4.8rem, 19vw, 6.1rem); }
  .hero-actions { width: 100%; }
  .hero-slider-controls {
    top: 14px;
    right: 14px;
    bottom: auto;
    opacity: 1;
    transform: none;
  }

  h2 { font-size: clamp(3rem, 13vw, 4rem); }

  .welcome-section { padding: 62px 0 44px; }

  .welcome-heading {
    padding: 72px 32px 44px;
    border-radius: 170px 170px 18px 18px;
  }

  .welcome-heading h2 {
    max-width: 470px;
    font-size: clamp(3.55rem, 14vw, 4.8rem);
  }

  .welcome-content,
  .welcome-photos {
    min-height: 0;
  }

  .welcome-photos {
    display: grid;
    gap: 0;
  }

  .welcome-photo-primary {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 46% 46% 18px 18px / 28% 28% 18px 18px;
  }

  .welcome-photo-secondary {
    display: none;
    position: relative !important;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 78%;
    height: auto;
    margin: -64px 12px 0 auto;
    aspect-ratio: 4 / 3;
    border-radius: 120px 120px 16px 16px / 58px 58px 16px 16px;
  }

  .welcome-photo-secondary img {
    border-radius: 112px 112px 11px 11px / 52px 52px 11px 11px;
  }

  .values-row {
    margin-top: 8px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .values-row article {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 92px minmax(0, 1fr);
    border: 1px solid rgba(191, 151, 67, 0.42);
  }

  .values-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 66px;
    width: 20px;
    height: 19px;
    border-top: 0;
    border-left: 2px solid #c3a04f;
    border-radius: 50%;
    transform: rotate(-6deg);
  }

  .level-two-note {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px 18px;
    padding: 18px 22px 20px;
  }

  .level-two-note p {
    padding: 16px 0 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(185, 143, 57, 0.4);
    border-left: 0;
  }

  .path-grid {
    padding: 38px 25px;
    grid-template-columns: 1fr;
  }

  .path-art {
    position: relative;
    inset: auto;
    width: 100%;
    margin: -8px 0 10px;
  }

  .path-steps { z-index: 2; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-wide,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    min-height: 0;
    aspect-ratio: 4 / 3;
    grid-column: 1;
    grid-row: auto;
  }

  .founder-grid { gap: 52px; }
  .founder-art {
    width: min(100% - 10px, 480px);
    padding: 16px 10px 36px 24px;
  }
  .founder-service-badge {
    bottom: 9%;
    left: -1%;
    width: 122px;
  }
  .founder-heading h2 { font-size: clamp(3.75rem, 15vw, 5.25rem); }
  .founder-role { letter-spacing: 0.13em; }
  .founder-story { gap: 22px; }
  .founder-mission {
    min-height: 0;
    padding: 58px 24px 30px 62px;
  }
  .founder-mission::before { top: 26px; bottom: 26px; left: 50px; }
  .founder-quote-mark { top: 17px; left: 18px; font-size: 3.8rem; }
  .founder-mission p { font-size: clamp(1.55rem, 7.4vw, 2rem); }
  .founder-mission img { right: -4px; bottom: -13px; width: 72px; opacity: 0.24; }
  .founder-credentials { grid-template-columns: 1fr; }
  .founder-credential {
    min-height: 78px;
    padding: 13px 0;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    font-size: 0.82rem;
  }
  .founder-credential + .founder-credential {
    border-top: 1px solid rgba(169, 148, 94, 0.38);
    border-left: 0;
  }
  .founder-credential-icon { width: 52px; }
  .founder-credential-icon img { width: 31px; height: 31px; }
  .founder-contact {
    min-height: 270px;
    padding: 18px 18px 92px;
    grid-template-columns: 1fr;
  }
  .founder-contact > a {
    min-height: 76px;
    padding: 10px 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
  }
  .founder-contact > a + a {
    border-top: 1px solid rgba(169, 148, 94, 0.42);
    border-left: 0;
  }
  .founder-contact-icon { width: 52px; }
  .founder-contact > img { right: 16px; bottom: -8px; width: 118px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer nav { flex-wrap: wrap; }
  .footer-meta { flex-direction: column; gap: 5px; }
}

/* Small mobile */
@media (max-width: 520px) {
  :root { --header-h: 82px; }

  .brand-wordmark strong { font-size: 1.03rem; }
  .brand-wordmark span { grid-template-columns: 7px auto 7px; font-size: 0.42rem; letter-spacing: 0.17em; }

  .mobile-menu summary { width: 44px; height: 44px; }
  .mobile-menu nav {
    position: fixed;
    top: var(--header-h);
    right: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100dvh - var(--header-h) - 12px);
    overflow-y: auto;
  }

  .hero-visual { aspect-ratio: 1 / 0.82; }
  .hero-copy { padding: 38px 24px 34px; }
  .eyebrow { font-size: 0.64rem; }
  .hero h1 { font-size: clamp(4.45rem, 21vw, 5.4rem); }
  .hero-lede { font-size: 0.9rem; }
  .botanical-sprig { right: 8px; bottom: 10px; width: 82px; opacity: 0.72; }

  .home-essentials { padding-block: 20px 24px; }
  .essentials-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .essentials-inner > div { min-height: 142px; padding: 14px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .essential-icon { width: 52px; height: 52px; flex-basis: 52px; }
  .essential-icon[data-icon="utilities"] { background-position: 0 -9px; }
  .essential-icon[data-icon="pantry"] { background-position: 33.333% -9px; }
  .essential-icon[data-icon="bedding"] { background-position: 66.667% -9px; }
  .essential-icon[data-icon="laundry"] { background-position: 100% -9px; }

  .welcome-section { padding: 52px 0 36px; }
  .welcome-botanical-top { left: 58%; width: 150px; }
  .welcome-botanical-bottom { width: 160px; }
  .welcome-heading {
    padding: 64px 24px 38px;
    border-radius: 132px 132px 16px 16px;
  }
  .welcome-heading h2 { font-size: clamp(3.25rem, 15vw, 4rem); }
  .welcome-heading > p:not(.section-kicker) { font-size: 0.8rem; }
  .welcome-heading-botanical { right: -82px; width: 220px; }
  .welcome-photo-secondary { width: 90%; margin-top: -38px; margin-right: auto; }
  .welcome-photos figcaption { right: 12px; bottom: 12px; left: 12px; padding: 10px 12px; }
  .values-row article { padding: 18px; grid-template-columns: 78px minmax(0, 1fr); gap: 14px; }
  .value-icon { width: 74px; height: 74px; }
  .value-icon img { width: 57px; height: 57px; }
  .value-number { font-size: 1.55rem; }
  .values-row h3 { font-size: 1.62rem; }
  .values-row article p { font-size: 0.73rem; }
  .values-row article:not(:last-child)::after { left: 54px; }
  .level-two-note { grid-template-columns: 64px minmax(0, 1fr); padding-inline: 18px; }
  .level-two-seal { width: 62px; height: 62px; }
  .level-two-seal img { width: 42px; height: 42px; }

  .path-section,
  .included-section,
  .gallery-section,
  .listings-section,
  .start-section,
  .founder-section,
  .faq-section { padding-block: 70px; }

  .path-grid { border-radius: 18px; }
  .path-steps li { grid-template-columns: 46px 1fr; gap: 12px; }
  .path-number { width: 42px; height: 42px; }
  .path-steps li:not(:last-child)::after { top: 52px; left: 21px; }

  .included-feature { aspect-ratio: 1 / 1.15; }
  .included-feature > div { right: 22px; bottom: 24px; left: 22px; }
  .included-list article { padding: 20px 18px; grid-template-columns: 38px 1fr; gap: 11px; }
  .included-list article > span { width: 34px; height: 34px; }

  .listings-surface { padding: 16px; }

  .prequalify-card,
  .application-card { padding: 30px 22px; }
  .prequalify-card h3,
  .application-card h3 { font-size: 2.75rem; }
  .prequalify-count strong { font-size: 5rem; }

  .founder-art {
    width: min(calc(100% - 36px), 430px);
    padding: 12px 5px 32px 20px;
  }
  .founder-photo { padding: 7px; }
  .founder-photo img { border-radius: 220px 220px 2px 2px; }
  .founder-botanical-back {
    top: -8%;
    left: -8%;
    width: 98%;
    opacity: 0.76;
  }
  .founder-service-badge {
    left: 0;
    width: 102px;
    padding: 12px;
  }
  .founder-service-badge strong { font-size: 2.5rem; }
  .founder-service-badge span { font-size: 0.63rem; }
  .founder-service-badge small { font-size: 0.54rem; }
  .founder-heading h2 { font-size: clamp(3.35rem, 17.5vw, 4.45rem); }
  .founder-bio { font-size: 0.88rem; }
  .founder-mission { padding-right: 20px; }
  .founder-contact strong { font-size: 1.05rem; }

  .faq-list summary { padding-block: 18px; font-size: 1.28rem; }
  .contact-section { padding: 68px 0 76px; }
  .contact-grid { gap: 38px; }
  .contact-actions a { grid-template-columns: 1fr; gap: 3px; }
  .contact-actions strong { font-size: 1.3rem; }

  .mobile-call {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 70;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--forest);
    box-shadow: 0 12px 30px rgba(16, 47, 53, 0.24);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) {
  .hero-slider-controls {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-slider-controls,
  .mobile-call { display: none !important; }
}
