:root {
  --ink: #26322c;
  --ink-soft: #526158;
  --forest: #345946;
  --forest-deep: #233f33;
  --sage: #879f8d;
  --sage-pale: #dce5dc;
  --cream: #f5f0e5;
  --paper: #fffdf7;
  --oat: #e8dcc6;
  --wood: #a66542;
  --clay: #bd7152;
  --sun: #e9b95e;
  --line: rgba(38, 50, 44, 0.15);
  --shadow-sm: 0 10px 30px rgba(50, 59, 50, 0.08);
  --shadow-lg: 0 28px 80px rgba(45, 50, 39, 0.15);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --section: clamp(76px, 9vw, 142px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 3%, rgba(233, 185, 94, 0.14), transparent 26rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--paper);
  background: var(--forest);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 8px;
  transform: translateY(-180%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display,
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(52px, 7vw, 104px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 70px);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

h4 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.58;
}

.section-intro {
  max-width: 730px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro.center .eyebrow {
  justify-content: center;
}

.section-intro.center .eyebrow::after {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(52, 89, 70, 0.22);
}

.btn-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 16px 34px rgba(52, 89, 70, 0.29);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.74);
}

.btn-secondary:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-light {
  color: var(--forest-deep);
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  font-size: 20px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 247, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(33, 45, 38, 0.06);
}

.header-inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 89, 70, 0.3);
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.brand-tag {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav a {
  position: relative;
  padding: 31px 0 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--wood);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

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

.header-actions .btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 90px) 0 clamp(70px, 8vw, 126px);
}

.hero::before {
  position: absolute;
  top: 14%;
  left: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(166, 101, 66, 0.24);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 em {
  color: var(--wood);
  font-weight: 400;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
}

.hero-meta-item {
  max-width: 140px;
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.hero-meta span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

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

.hero-photo {
  position: absolute;
  inset: 0 0 54px 34px;
  overflow: hidden;
  border-radius: 170px 20px 120px 20px;
  box-shadow: var(--shadow-lg);
}

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

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: min(310px, 70%);
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(245, 240, 229, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-note small {
  display: block;
  margin-bottom: 4px;
  color: var(--wood);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.18;
}

.hero-note::before {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  content: "";
  background: var(--sun);
  box-shadow: 0 6px 18px rgba(233, 185, 94, 0.38);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 clamp(60px, 8vw, 110px);
  background:
    linear-gradient(110deg, rgba(245, 240, 229, 0.94), rgba(245, 240, 229, 0.58)),
    var(--cream);
}

.page-hero::after {
  position: absolute;
  right: -10vw;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(52, 89, 70, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(54px, 7vw, 96px);
}

.page-hero .lead {
  max-width: 490px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb span {
  opacity: 0.55;
}

.section {
  padding: var(--section) 0;
}

.section-cream {
  background: var(--cream);
}

.section-forest {
  color: #f8f5ed;
  background:
    radial-gradient(circle at 90% 10%, rgba(233, 185, 94, 0.18), transparent 28rem),
    var(--forest-deep);
}

.section-forest .eyebrow,
.section-forest .text-link {
  color: #d9bd7e;
}

.section-forest .lead,
.section-forest p {
  color: rgba(248, 245, 237, 0.74);
}

.section-clay {
  color: #fffaf2;
  background: var(--clay);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
}

.story-grid.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.story-grid.reverse .story-media {
  order: 2;
}

.story-media {
  position: relative;
}

.story-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px 100px 16px 16px;
  box-shadow: var(--shadow-lg);
}

.story-grid.reverse .story-media img {
  border-radius: 100px 16px 16px 16px;
}

.story-media::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  z-index: -1;
  width: 62%;
  height: 62%;
  border-radius: 14px;
  content: "";
  background: var(--oat);
}

.story-copy > p {
  color: var(--ink-soft);
}

.story-points {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.story-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.story-point .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(52, 89, 70, 0.25);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 17px;
}

.story-point h4 {
  margin: 3px 0 4px;
}

.story-point p {
  color: var(--ink-soft);
  font-size: 14px;
}

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

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

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

.card {
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 14px 44px rgba(43, 52, 45, 0.045);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  border-color: rgba(52, 89, 70, 0.32);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card .card-no {
  display: block;
  margin-bottom: 36px;
  color: var(--wood);
  font-family: var(--serif);
  font-size: 20px;
}

.card h3 {
  font-size: 31px;
}

.card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--sage);
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card-content {
  padding: 28px 30px 32px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip-item {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.feature-strip-item:last-child {
  border-right: 0;
}

.feature-strip-item strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.feature-strip-item span {
  color: var(--ink-soft);
  font-size: 13px;
}

.routine {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
}

.routine-step {
  min-height: 310px;
  padding: 34px 28px;
  background: rgba(35, 63, 51, 0.83);
}

.routine-step time {
  display: inline-block;
  margin-bottom: 76px;
  color: #d9bd7e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.routine-step h3 {
  color: #fff;
  font-size: 29px;
}

.routine-step p {
  font-size: 14px;
}

.quote-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  padding: clamp(46px, 7vw, 88px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--forest);
}

.quote-panel::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.quote-panel blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 65px);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.quote-panel cite {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: normal;
}

.quote-panel cite strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.editorial-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.editorial-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 200px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-item .index {
  color: var(--wood);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
}

.editorial-item h3 {
  margin-bottom: 5px;
  font-size: 32px;
}

.editorial-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.editorial-item .tag {
  justify-self: end;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(44px, 7vw, 100px);
}

.article-aside {
  position: sticky;
  top: 120px;
}

.article-aside h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.article-body {
  display: grid;
  gap: 50px;
}

.article-block {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.article-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-block h2 {
  font-size: clamp(34px, 4vw, 51px);
}

.article-block h3 {
  margin-top: 34px;
  font-size: 27px;
}

.article-block p,
.article-block li {
  color: #405047;
}

.article-block ul,
.article-block ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--sun);
  border-radius: 0 14px 14px 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-btn {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

[data-filter-item].hidden {
  display: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.price-card.featured {
  color: #fff;
  background: var(--forest-deep);
  box-shadow: var(--shadow-lg);
  transform: translateY(-18px);
}

.price-card .label {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--wood);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price-card.featured .label {
  color: #e6c57f;
}

.price-card h3 {
  font-size: 36px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.price strong {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--ink-soft);
  font-size: 13px;
}

.featured .price span,
.featured .price-card-intro,
.featured .price-list li {
  color: rgba(255, 255, 255, 0.7);
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.price-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.featured .price-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card .btn {
  width: 100%;
}

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

.testimonial {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.testimonial:nth-child(3n + 2) {
  background: #e8ebe1;
}

.testimonial:nth-child(3n) {
  color: #fff;
  background: var(--forest);
}

.testimonial blockquote {
  margin-bottom: 40px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
}

.testimonial footer {
  color: var(--ink-soft);
  font-size: 13px;
}

.testimonial:nth-child(3n) footer {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial footer strong {
  display: block;
  margin-bottom: 2px;
  color: inherit;
  font-size: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 22px;
}

.team-member {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.team-member .portrait {
  display: grid;
  aspect-ratio: 4 / 4.5;
  margin-bottom: 24px;
  place-items: end start;
  overflow: hidden;
  border-radius: 16px 58px 16px 16px;
  background:
    linear-gradient(145deg, transparent 30%, rgba(35, 63, 51, 0.72)),
    url("../assets/images/community-table.webp") center / cover;
}

.team-member:nth-child(2) .portrait {
  background-position: 28% center;
}

.team-member:nth-child(3) .portrait {
  background-position: 72% center;
}

.team-member:nth-child(4) .portrait {
  background-position: 94% center;
}

.team-member .initials {
  margin: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(35, 63, 51, 0.76);
  font-family: var(--serif);
}

.team-member h3 {
  margin-bottom: 5px;
  font-size: 29px;
}

.team-member .role {
  display: block;
  margin-bottom: 13px;
  color: var(--wood);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-member p {
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--wood);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
  line-height: 1.3;
}

.form-panel {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

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

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38, 50, 44, 0.27);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.form-field input,
.form-field select {
  min-height: 52px;
}

.form-field textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 2px 0 var(--forest);
}

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #9e4739;
}

.field-error {
  min-height: 18px;
  color: #884136;
  font-size: 11px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--forest);
}

.checkbox-field label {
  color: var(--ink-soft);
  font-size: 12px;
}

.checkbox-field a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 11px;
}

.map-frame {
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.7) sepia(0.08);
}

.map-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 26px 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 31px);
}

.faq-question::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 18px;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 850px;
  padding: 0 0 28px;
  color: var(--ink-soft);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: clamp(44px, 7vw, 82px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(35, 63, 51, 0.96), rgba(35, 63, 51, 0.72)),
    url("../assets/images/hero-morning.webp") center / cover;
}

.cta h2 {
  max-width: 750px;
  margin-bottom: 12px;
}

.cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
}

.thank-you {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.thank-you .sun-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sun);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
}

.thank-you h1 {
  max-width: 900px;
  margin-inline: auto;
}

.thank-you .lead {
  max-width: 680px;
  margin-inline: auto;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer {
  padding: 78px 0 28px;
  color: #f9f5eb;
  background: #1e3028;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
  gap: 50px;
  padding-bottom: 62px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f2ce82;
  background: rgba(255, 255, 255, 0.06);
}

.footer-brand .brand-tag,
.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
  max-width: 390px;
  font-size: 14px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #f2ce82;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col address {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-style: normal;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  display: none;
  width: min(520px, calc(100% - 36px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  color: #fff;
  background: rgba(30, 48, 40, 0.97);
  box-shadow: 0 24px 80px rgba(24, 32, 28, 0.28);
}

.cookie-banner.visible {
  display: block;
  animation: slide-up 320ms ease both;
}

.cookie-banner h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 11px;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(24, 34, 28, 0.54);
  backdrop-filter: blur(8px);
}

.cookie-settings.open {
  display: grid;
}

.cookie-modal {
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(30px, 5vw, 50px);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
}

.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #b7bdb9;
  cursor: pointer;
}

.switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: #fff;
  transition: transform 180ms ease;
}

.switch input:checked + span {
  background: var(--forest);
}

.switch input:checked + span::after {
  transform: translateX(20px);
}

.switch input:disabled + span {
  cursor: default;
  opacity: 0.65;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@media (max-width: 1080px) {
  .header-actions .btn {
    display: none;
  }

  .nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 45px;
  }

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

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

  .feature-strip-item:nth-child(2) {
    border-right: 0;
  }

  .feature-strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    max-height: calc(100vh - 74px);
    justify-content: stretch;
    gap: 0;
    padding: 24px 24px 36px;
    overflow: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform 240ms ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 24px;
  }

  .nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-open .menu-toggle span {
    background: transparent;
  }

  .menu-open .menu-toggle span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .story-grid.reverse,
  .article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-photo {
    left: 0;
  }

  .page-hero .lead {
    max-width: 650px;
  }

  .story-grid.reverse .story-media {
    order: initial;
  }

  .story-media {
    max-width: 680px;
  }

  .story-media img {
    aspect-ratio: 5 / 4;
  }

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

  .price-card.featured {
    transform: none;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-aside h2 {
    max-width: 650px;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
    --section: 72px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .brand-tag {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-meta {
    gap: 20px;
  }

  .hero-meta-item {
    max-width: 120px;
  }

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

  .hero-photo {
    right: 0;
    bottom: 40px;
    border-radius: 92px 16px 70px 16px;
  }

  .hero-note {
    right: 12px;
    padding: 18px 20px;
  }

  .page-hero {
    padding-top: 64px;
  }

  .page-hero h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .pricing-grid,
  .testimonial-grid,
  .team-grid,
  .feature-strip,
  .routine,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip-item:last-child {
    border-bottom: 0;
  }

  .routine-step {
    min-height: 260px;
  }

  .routine-step time {
    margin-bottom: 46px;
  }

  .editorial-item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .editorial-item .tag {
    display: none;
  }

  .quote-panel,
  .cta,
  .form-panel {
    border-radius: 24px;
  }

  .quote-panel {
    padding: 40px 28px;
  }

  .form-field.full {
    grid-column: auto;
  }

  .map-frame {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
