:root {
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --ink: #3B2D25;
  --text: #6D5A4E;
  --muted: #8C7666;
  --white: #FFFDF8;
  --paper: #FFF8EC;
  --sand: #F0DFC6;
  --sand-soft: #FAEEDB;
  --blue: #F5D9C4;
  --blue-deep: #E5AE87;
  --sage: #7C8250;
  --sage-soft: #ECE8CF;
  --sage-deep: #596038;
  --terracotta: #C96645;
  --terracotta-deep: #9E472F;
  --mustard: #D4A53E;
  --line: rgba(90, 63, 46, .13);
  --line-strong: rgba(90, 63, 46, .22);
  --shadow-xs: 0 10px 28px rgba(111, 69, 42, .07);
  --shadow-sm: 0 20px 52px rgba(111, 69, 42, .11);
  --shadow-lg: 0 38px 100px rgba(111, 69, 42, .17);
  --radius-sm: 20px;
  --radius-md: 34px;
  --radius-lg: 56px;
  --radius-xl: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(circle at 15% 12%, rgba(212, 165, 62, .06) 0 2px, transparent 2.5px), radial-gradient(circle at 82% 35%, rgba(124, 130, 80, .05) 0 1.5px, transparent 2px);
  background-size: 38px 38px, 52px 52px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.035em;
}

p {
  margin: 0;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 124px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 24px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .25s ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(90deg, var(--terracotta), var(--mustard));
}

.site-header {
  position: sticky;
  z-index: 150;
  top: 0;
  padding: 0 24px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 236, .9);
  backdrop-filter: blur(18px);
  transition: border-color .3s ease, box-shadow .3s ease;
}

.header-inner {
  display: flex;
  min-height: 88px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(95, 60, 37, .08);
}

.text-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
  white-space: nowrap;
}

.text-logo::before {
  width: 18px;
  height: 18px;
  margin-right: 11px;
  border: 4px solid var(--mustard);
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  box-shadow: 8px 7px 0 -5px var(--sage);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 29px);
}

.desktop-nav a {
  position: relative;
  color: #6E5B4D;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--terracotta);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .25s ease, transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.header-search,
.menu-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--sand-soft);
  color: var(--terracotta-deep);
  transition: transform .25s ease, background .25s ease;
}

.header-search:hover,
.menu-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.mobile-nav {
  width: min(100% - 32px, 680px);
  margin: 10px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0 0 34px 34px;
  background: rgba(255, 248, 236, .98);
  box-shadow: var(--shadow-sm);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .84rem;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--sand);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

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

.btn svg {
  width: 17px;
  transition: transform .25s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--terracotta-deep);
  box-shadow: 0 14px 34px rgba(158, 71, 47, .24);
  color: var(--white);
}

.btn-primary:hover {
  background: #7E3425;
  box-shadow: 0 18px 42px rgba(158, 71, 47, .27);
}

.btn-secondary {
  border-color: rgba(89, 96, 56, .16);
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.btn-secondary:hover {
  background: #E1DCBC;
}

.btn-ghost {
  border-color: var(--line-strong);
  background: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--sage-deep);
}

.btn-small {
  min-height: 44px;
  padding: 10px 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.topic-badge {
  display: inline-flex;
  min-height: 29px;
  padding: 6px 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease;
}

a:hover .topic-badge {
  transform: translateY(-2px);
}

.topic-orange,
.topic-cream {
  background: #F1CBB4;
  color: #8A432D;
}

.topic-sage,
.topic-olive {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.topic-blue {
  background: #ECD49B;
  color: #725616;
}

.topic-rose {
  background: #E8B9A6;
  color: #843D2E;
}

.hero-home {
  padding-top: 34px;
  background: var(--paper);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: clamp(40px, 5.5vw, 82px);
  align-items: center;
  gap: clamp(32px, 4vw, 72px);
  overflow: visible;
  border: 1px solid rgba(117, 79, 52, .08);
  border-radius: 80px 80px 240px 80px;
  background: linear-gradient(125deg, #FFF3DF 0%, #F4D8BD 56%, #E9E5C8 100%);
  box-shadow: 0 28px 85px rgba(128, 75, 43, .1);
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.hero-grid::before {
  position: absolute;
  top: -34px;
  left: 44%;
  width: 118px;
  height: 54px;
  border: 3px solid rgba(89, 96, 56, .34);
  border-top: 0;
  border-left: 0;
  border-radius: 10% 90% 12% 88%;
  background: rgba(124, 130, 80, .13);
  content: "";
  transform: rotate(-22deg);
}

.hero-grid::after {
  position: absolute;
  right: 7%;
  bottom: -25px;
  width: 94px;
  height: 94px;
  border: 17px dotted rgba(212, 165, 62, .38);
  border-radius: 50%;
  content: "";
  transform: rotate(15deg);
}

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

.hero-kicker {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.75rem, 6.9vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .93;
}

.hero-copy h1 em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0;
  color: var(--text);
  font-size: clamp(.96rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 10px;
}

.hero-notes > span {
  display: inline-flex;
  padding: 8px 11px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(136, 91, 59, .1);
  border-radius: 999px;
  background: rgba(255, 253, 248, .62);
  color: #725F52;
  font-size: .65rem;
  font-weight: 700;
}

.hero-notes svg {
  width: 16px;
  color: var(--sage);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-right: -100px;
  transform: translateY(var(--parallax-shift, 0));
  transition: transform .12s linear;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow-sm);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s cubic-bezier(.2, .72, .2, 1);
}

.image-frame:hover img {
  transform: scale(1.035);
}

.hero-image {
  height: 650px;
  border: 10px solid rgba(255, 253, 248, .86);
  border-radius: 300px 300px 52px 160px;
  box-shadow: var(--shadow-lg);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  max-width: 220px;
  padding: 15px 17px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(118, 75, 48, .1);
  border-radius: 30px 30px 30px 6px;
  background: rgba(255, 250, 240, .91);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-note strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.floating-note span {
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.4;
}

.floating-note svg {
  color: var(--sage);
}

.note-top {
  top: 62px;
  left: -35px;
  display: block;
}

.note-top strong {
  color: var(--terracotta-deep);
  font-size: 1.2rem;
}

.note-bottom {
  right: 36px;
  bottom: 35px;
  border-radius: 8px 30px 30px 30px;
}

.proof-strip {
  padding: 0 0 22px;
  background: var(--paper);
}

.proof-inner {
  display: flex;
  min-height: 78px;
  padding: 18px 28px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  border: 1px solid rgba(74, 112, 116, .08);
  border-radius: 28px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--shadow-xs);
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-inner span {
  color: var(--terracotta-deep);
  font-weight: 800;
}

.proof-inner strong {
  font-size: .63rem;
}

.proof-inner i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mustard);
}

.split-heading {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.1fr .9fr;
}

.split-heading h2,
.section-heading h2,
.philosophy-copy h2,
.zigzag-copy h2,
.faq-intro h2,
.expertise-overlay h2,
.newsletter-card h2,
.final-cta h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
}

.split-heading > p,
.section-heading > p,
.philosophy-copy > p,
.zigzag-copy > p {
  color: var(--text);
}

.problem-solution {
  background: var(--paper);
}

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

.problem-card {
  display: flex;
  min-height: 340px;
  padding: 32px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 34px 34px 110px 34px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.problem-card:nth-child(2) {
  border-radius: 110px 34px 34px 34px;
  background: #F4D7C3;
}

.problem-card:nth-child(3) {
  border-radius: 34px 110px 34px 34px;
  background: var(--sand-soft);
}

.problem-card:hover {
  border-color: rgba(201, 102, 69, .24);
  box-shadow: var(--shadow-sm);
  transform: translateY(-8px);
}

.problem-card > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 800;
}

.problem-card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.problem-card p {
  margin-bottom: 24px;
  color: var(--text);
  font-size: .81rem;
}

.problem-card a {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-deep);
  font-size: .69rem;
  font-weight: 800;
}

.problem-card-accent {
  color: var(--ink);
  transform: none;
}

.problem-card-accent p,
.problem-card-accent a {
  color: var(--text);
}

.philosophy-section {
  position: relative;
  margin: 0 18px;
  overflow: hidden;
  border-radius: 180px 32px 180px 32px;
  background: linear-gradient(110deg, #F2D6BF, #F5E8D3);
}

.philosophy-section::after {
  position: absolute;
  right: -42px;
  bottom: -34px;
  width: 220px;
  height: 110px;
  border: 3px solid rgba(89, 96, 56, .18);
  border-radius: 100% 0;
  content: "";
  transform: rotate(-18deg);
}

.philosophy-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1.1fr .9fr;
}

.philosophy-grid .image-frame {
  height: 610px;
  border: 8px solid rgba(255, 255, 255, .72);
  border-radius: 260px 260px 40px 40px;
  box-shadow: var(--shadow-sm);
}

.philosophy-copy > p {
  margin-top: 20px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5F5147;
  font-size: .82rem;
  font-weight: 700;
}

.check-list svg {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  padding: 3px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--text);
}

.section-heading.align-left {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section-heading.align-left > p:last-child {
  margin-left: 0;
}

.categories-section {
  background: linear-gradient(180deg, var(--paper), #F7E4D1);
}

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

.category-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 36px 36px 132px 36px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.category-card::after {
  position: absolute;
  right: -42px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--mustard);
  content: "";
  opacity: .55;
  transition: transform .4s ease;
}

.category-card:nth-child(even)::after {
  background: var(--terracotta);
}

.category-card:nth-child(2n) {
  border-radius: 132px 36px 36px 36px;
}

.category-card:nth-child(3n) {
  border-radius: 36px 132px 36px 36px;
}

.category-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-8px);
}

.category-card:hover::after {
  transform: scale(1.2);
}

.category-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  justify-content: space-between;
}

.category-number {
  color: #91A0A2;
  font-family: var(--font-heading);
  font-size: .66rem;
  font-weight: 800;
}

.category-card h3,
.category-card p,
.card-link {
  position: relative;
  z-index: 1;
}

.category-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 600;
}

.category-card p {
  color: var(--text);
  font-size: .77rem;
}

.card-link {
  display: inline-flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
  color: var(--terracotta-deep);
  font-size: .67rem;
  font-weight: 800;
}

.benefits-section {
  background: var(--paper);
}

.zigzag {
  display: grid;
  margin-bottom: 105px;
  padding: clamp(24px, 4vw, 52px);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  border-radius: 58px 58px 180px 58px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  grid-template-columns: .88fr 1.12fr;
}

.zigzag:last-child {
  margin-bottom: 0;
  border-radius: 180px 58px 58px 58px;
  background: var(--sand-soft);
}

.zigzag > .image-frame {
  height: 540px;
  border-radius: 240px 240px 42px 42px;
  box-shadow: none;
}

.zigzag:last-child > .image-frame {
  border-radius: 42px 42px 240px 240px;
}

.zigzag-reverse {
  grid-template-columns: 1.12fr .88fr;
}

.zigzag-reverse .zigzag-copy {
  order: 2;
}

.zigzag-reverse > .image-frame {
  order: 1;
}

.zigzag-copy > p {
  margin-top: 20px;
}

.mini-grid {
  display: grid;
  margin: 28px 0;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.mini-grid div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--sand-soft);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--sage-deep);
  font-family: var(--font-heading);
  font-size: .92rem;
}

.mini-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
}

.process-section {
  margin: 0 18px;
  border-radius: 42px 180px 42px 180px;
  background: var(--terracotta-deep);
  color: var(--white);
}

.process-section .eyebrow {
  color: #F6DB9C;
}

.process-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .76);
}

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

.process-grid article {
  min-height: 285px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px 32px 92px 32px;
  background: rgba(255, 253, 248, .13);
}

.process-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  font-size: .67rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 11px;
  font-size: 1.5rem;
}

.process-grid p {
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
}

.stories-section {
  background: var(--paper);
}

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

.story-grid article {
  display: flex;
  min-height: 345px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 38px 38px 110px 38px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.story-grid article:nth-child(2) {
  border-radius: 110px 38px 38px 38px;
  background: var(--sand-soft);
}

.quote-mark {
  height: 45px;
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
}

.story-grid article > p {
  font-family: var(--font-heading);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.story-grid footer {
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.story-grid footer strong,
.story-grid footer span {
  display: block;
}

.story-grid footer strong {
  font-size: .72rem;
}

.story-grid footer span {
  color: var(--muted);
  font-size: .63rem;
}

.expertise-section {
  background: #F4E1CD;
}

.expertise-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: 1.45fr .55fr;
}

.expertise-feature {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 260px 260px 56px 56px;
}

.expertise-feature .image-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: none;
}

.expertise-overlay {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  max-width: 540px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 34px 34px 110px 34px;
  background: rgba(255, 250, 239, .89);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(15px);
}

.expertise-overlay p:not(.eyebrow) {
  margin: 14px 0 23px;
  color: var(--text);
}

.article-stack {
  display: grid;
  gap: 16px;
}

.article-stack a {
  display: flex;
  min-height: 215px;
  padding: 25px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 32px 32px 86px 32px;
  background: rgba(255, 253, 248, .72);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.article-stack a:hover {
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transform: translateX(-6px);
}

.article-stack a > span {
  margin-bottom: auto;
  color: var(--sage-deep);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-stack h3 {
  margin: 20px 0 7px;
  font-size: 1.35rem;
}

.article-stack p {
  color: var(--text);
  font-size: .7rem;
}

.newsletter-section {
  padding-top: 90px;
  background: var(--paper);
}

.newsletter-card {
  display: grid;
  padding: clamp(42px, 6vw, 78px);
  align-items: center;
  gap: 80px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 180px 44px 180px 44px;
  background: linear-gradient(125deg, #EFD49F 0%, #E6A982 54%, #DCE0B7 100%);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 1fr 1fr;
}

.newsletter-card > div > p:not(.eyebrow) {
  max-width: 510px;
  margin: 20px 0 28px;
  color: var(--text);
}

.newsletter-form,
.contact-form,
.stack-form {
  display: grid;
  gap: 10px;
}

.newsletter-form {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 36px 36px 100px 36px;
  background: rgba(255, 250, 239, .72);
  backdrop-filter: blur(12px);
}

label {
  font-size: .66rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, .92);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 102, 69, .13);
}

.consent-row {
  display: flex;
  margin: 7px 0;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .62rem;
  font-weight: 600;
  line-height: 1.5;
}

.consent-row input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
}

.consent-row a {
  color: var(--sage-deep);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  color: var(--sage-deep);
  font-size: .67rem;
  font-weight: 800;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: .72fr 1.28fr;
}

.faq-intro {
  position: sticky;
  top: 115px;
  padding: 35px;
  border-radius: 120px 34px 120px 34px;
  background: var(--sand-soft);
}

.faq-intro > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--text);
}

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

.accordion details {
  border-bottom: 1px solid var(--line-strong);
}

.accordion summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.3;
  list-style: none;
}

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

.accordion summary svg {
  padding: 4px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  transition: transform .25s ease;
}

.accordion details[open] summary svg {
  transform: rotate(180deg);
}

.accordion details > div {
  padding: 0 48px 28px 0;
  color: var(--text);
  font-size: .82rem;
}

.final-cta {
  margin: 0 18px 18px;
  border-radius: 46px 190px 46px 190px;
  background: linear-gradient(135deg, var(--sage-deep), #757B45);
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1.18fr .82fr;
}

.final-cta .eyebrow {
  color: #F4D58D;
}

.final-cta h2 {
  max-width: 720px;
}

.final-cta-grid > div:first-child > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .72);
}

.contact-preview {
  display: grid;
  padding: 32px;
  gap: 23px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px 34px 100px 34px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.contact-preview > span {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-preview svg {
  color: #F4D58D;
}

.contact-preview small,
.contact-preview a,
.contact-preview b {
  display: block;
}

.contact-preview small {
  color: rgba(255, 255, 255, .58);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-preview a,
.contact-preview b {
  font-size: .73rem;
  overflow-wrap: anywhere;
}

.interior-hero {
  padding-top: 45px;
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--terracotta-deep);
}

.interior-hero-grid {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: end;
}

.interior-hero-grid > .image-frame {
  grid-area: 1 / 1;
  height: 610px;
  border-radius: 280px 280px 58px 140px;
  box-shadow: none;
}

.interior-hero-grid > div:first-child {
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  margin: 0 0 24px 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 42px 42px 130px 42px;
  background: rgba(255, 250, 240, .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  grid-area: 1 / 1;
}

.interior-hero-grid h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
}

.interior-hero-grid > div:first-child > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 22px;
  color: var(--text);
  font-size: .93rem;
}

.blog-tools-section {
  background: var(--paper);
}

.blog-toolbar {
  display: flex;
  margin-bottom: 55px;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.search-field {
  display: flex;
  width: min(100%, 390px);
  min-height: 50px;
  padding: 0 15px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--sand-soft);
}

.search-field input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-chip {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .62rem;
  font-weight: 800;
  transition: background .25s ease, transform .25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: transparent;
  background: var(--terracotta-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.featured-editorial {
  display: grid;
  margin-bottom: 95px;
  padding: 24px;
  align-items: center;
  gap: 55px;
  border-radius: 60px 60px 180px 60px;
  background: var(--sand-soft);
  grid-template-columns: 1.25fr .75fr;
}

.featured-editorial .image-frame {
  height: 480px;
  border-radius: 220px 220px 38px 38px;
  box-shadow: none;
}

.featured-editorial h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.85rem);
}

.featured-editorial > div > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--text);
}

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

.article-card[hidden] {
  display: none;
}

.article-card > a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 38px 38px 110px 38px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .35s ease, box-shadow .35s ease;
}

.article-card > a:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.article-visual {
  display: flex;
  height: 205px;
  padding: 22px;
  align-items: flex-start;
  justify-content: space-between;
}

.article-visual > span:last-child {
  color: rgba(59, 45, 37, .35);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
}

.visual-1 {
  background: linear-gradient(135deg, var(--sage-soft), var(--sand));
}

.visual-2 {
  background: linear-gradient(135deg, var(--blue), #F5F8F7);
}

.visual-3 {
  background: linear-gradient(135deg, #F1E7E5, var(--sand-soft));
}

.visual-4 {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.article-body {
  padding: 25px;
}

.article-body > p {
  color: var(--sage-deep);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-body h3 {
  margin: 12px 0;
  font-size: 1.45rem;
}

.article-body > span {
  display: block;
  color: var(--text);
  font-size: .72rem;
}

.article-body b {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-size: .66rem;
}

.pagination {
  display: flex;
  margin-top: 58px;
  justify-content: center;
  gap: 8px;
}

.pagination a {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: .67rem;
  font-weight: 800;
}

.pagination a.is-current,
.pagination a:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.no-results {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--blue);
  text-align: center;
}

.recommended-section {
  background: #F4E1CD;
}

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

.recommended-card {
  display: flex;
  min-height: 300px;
  padding: 29px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 38px 38px 110px 38px;
  background: rgba(255, 253, 248, .78);
  box-shadow: var(--shadow-xs);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.recommended-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.recommended-card .topic-badge {
  align-self: flex-start;
}

.recommended-card h3 {
  margin: 38px 0 12px;
  font-size: 1.75rem;
}

.recommended-card p {
  color: var(--text);
  font-size: .74rem;
}

.recommended-card > span:last-child {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-size: .66rem;
  font-weight: 800;
}

.guide-content {
  background: var(--paper);
}

.guide-layout,
.legal-layout {
  display: grid;
  align-items: start;
  gap: 75px;
  grid-template-columns: 300px 1fr;
}

.guide-aside,
.legal-aside {
  position: sticky;
  top: 110px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 110px 32px 110px 32px;
  background: var(--sand-soft);
}

.guide-aside ol,
.legal-aside ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.guide-aside li,
.legal-aside li {
  border-bottom: 1px solid var(--line);
}

.guide-aside li a,
.legal-aside li a {
  display: block;
  padding: 9px 0;
  color: #4F6266;
  font-size: .65rem;
  font-weight: 700;
}

.aside-note {
  margin-top: 24px;
  padding: 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .75);
}

.aside-note strong {
  font-family: var(--font-heading);
  font-size: .95rem;
}

.aside-note p {
  margin-top: 6px;
  color: var(--text);
  font-size: .62rem;
}

.guide-main {
  display: grid;
  gap: 27px;
}

.guide-block {
  display: grid;
  padding: 40px;
  gap: 27px;
  border: 1px solid var(--line);
  border-radius: 40px 40px 120px 40px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  grid-template-columns: 58px 1fr;
  scroll-margin-top: 115px;
}

.guide-block:nth-child(even) {
  border-radius: 120px 40px 40px 40px;
  background: #F4D9C5;
}

.guide-index {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
}

.guide-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
}

.guide-block p {
  margin-bottom: 14px;
  color: var(--text);
}

.guide-block .check-list {
  margin-bottom: 0;
}

.topic-band {
  padding: 75px 0;
  background: var(--sage-deep);
  color: var(--white);
}

.topic-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.topic-band .eyebrow {
  color: var(--blue-deep);
}

.topic-band h2 {
  font-size: 2.45rem;
}

.topic-cloud {
  display: flex;
  max-width: 650px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.topic-cloud a {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
}

.topic-cloud a:hover {
  background: rgba(255, 255, 255, .12);
}

.about-story,
.contact-section,
.faq-page,
.legal-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
}

.about-grid > div:first-child h2 {
  margin-bottom: 24px;
  font-size: 3.7rem;
}

.about-grid > div:first-child p:not(.eyebrow) {
  margin-bottom: 19px;
  color: var(--text);
  font-size: .89rem;
}

.values-panel {
  padding: 36px;
  border-radius: 160px 42px 160px 42px;
  background: var(--sand-soft);
}

.values-panel > div {
  display: grid;
  padding: 21px 0;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
}

.values-panel > div:last-child {
  border-bottom: 0;
}

.values-panel > div span {
  color: var(--sage-deep);
  font-size: .65rem;
  font-weight: 800;
}

.values-panel h3 {
  font-size: 1.5rem;
}

.values-panel p {
  color: var(--text);
  font-size: .72rem;
  grid-column: 2;
}

.editorial-approach {
  margin: 0 18px;
  border-radius: 44px 170px 44px 170px;
  background: var(--terracotta-deep);
  color: var(--white);
}

.editorial-approach .eyebrow {
  color: #F5D38B;
}

.editorial-approach .section-heading > p:last-child {
  color: rgba(255, 255, 255, .78);
}

.location-section {
  background: var(--paper);
}

.location-card {
  display: grid;
  padding: 62px;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  border-radius: 160px 42px 160px 42px;
  background: var(--sand-soft);
  box-shadow: var(--shadow-xs);
  grid-template-columns: 1fr .8fr;
}

.location-card h2 {
  font-size: 3.3rem;
}

.location-card > div:first-child > p:not(.eyebrow) {
  margin: 19px 0 27px;
  color: var(--text);
}

.location-details {
  display: grid;
  gap: 16px;
}

.location-details span {
  display: flex;
  padding: 14px;
  align-items: center;
  gap: 11px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .65);
  overflow-wrap: anywhere;
}

.location-details svg {
  color: var(--sage-deep);
}

.contact-grid,
.faq-page-grid {
  display: grid;
  align-items: start;
  gap: 78px;
  grid-template-columns: .76fr 1.24fr;
}

.contact-info,
.faq-page-aside {
  position: sticky;
  top: 110px;
}

.contact-info h2 {
  font-size: 3.4rem;
}

.contact-info > p:not(.eyebrow) {
  margin: 20px 0 32px;
  color: var(--text);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list > a,
.contact-list > span {
  display: flex;
  padding: 15px;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.contact-list svg {
  color: var(--sage);
}

.contact-list small,
.contact-list b,
.contact-list em {
  display: block;
  overflow-wrap: anywhere;
}

.contact-list small {
  color: var(--muted);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-list b {
  font-size: .72rem;
}

.contact-list em {
  color: var(--muted);
  font-size: .57rem;
}

.contact-form {
  padding: 37px;
  border: 1px solid var(--line);
  border-radius: 48px 48px 150px 48px;
  background: var(--sand-soft);
  box-shadow: var(--shadow-xs);
}

.contact-form > div {
  display: grid;
  gap: 7px;
}

.contact-faq {
  background: var(--sand-soft);
}

.faq-page-aside {
  padding: 30px;
  border-radius: 120px 34px 120px 34px;
  background: var(--sand-soft);
}

.faq-page-aside h2 {
  font-size: 2.45rem;
}

.faq-page-aside > p:not(.eyebrow) {
  margin: 17px 0 25px;
  color: var(--text);
  font-size: .76rem;
}

.faq-page-aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-size: .66rem;
  font-weight: 800;
}

.disclaimer-band {
  padding: 70px 0;
  background: var(--terracotta-deep);
  color: var(--white);
}

.disclaimer-band .container > div {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 20px;
}

.disclaimer-band svg {
  width: 38px;
  height: 38px;
  color: #F2D187;
}

.disclaimer-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.disclaimer-band p {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
}

.legal-copy {
  max-width: 820px;
}

.legal-intro {
  margin-bottom: 45px;
  padding: 29px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 20px 20px 0;
  background: var(--sand-soft);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
}

.legal-copy article {
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 115px;
}

.legal-copy article h2 {
  margin-bottom: 22px;
  font-size: 2.15rem;
}

.legal-copy article h3 {
  margin: 19px 0 7px;
  color: var(--sage-deep);
  font-family: var(--font-heading);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-copy article p {
  color: var(--text);
  font-size: .82rem;
}

.site-footer {
  margin-top: 18px;
  padding: 78px 0 28px;
  border-radius: 96px 96px 0 0;
  background: #5A6038;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 1.55fr .8fr .8fr 1.3fr;
}

.text-logo-light {
  color: var(--white);
}

.text-logo-light::before {
  border-color: #F0CF7E;
  background: var(--terracotta);
}

.footer-brand > p {
  max-width: 390px;
  margin: 20px 0;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-contact > span {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  overflow-wrap: anywhere;
}

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

.footer-contact svg {
  width: 16px;
  margin-top: 3px;
  color: #F0CF7E;
}

.footer-bottom {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .64);
  font-size: .63rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-disclaimer {
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .55);
  font-size: .58rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  z-index: 350;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  padding: 22px;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 34px 34px 90px 34px;
  background: rgba(255, 250, 240, .94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto;
}

.cookie-banner h2 {
  font-size: 1.45rem;
}

.cookie-banner p:not(.eyebrow) {
  margin-top: 5px;
  color: var(--text);
  font-size: .67rem;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: .62rem;
}

.modal-shell {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(59, 45, 37, .66);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 550px);
  padding: 41px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 48px 48px 150px 48px;
  background: linear-gradient(135deg, var(--white), var(--sand-soft));
  box-shadow: var(--shadow-lg);
}

.modal-card h2 {
  font-size: 2.45rem;
}

.modal-card > p:not(.eyebrow) {
  margin: 15px 0 23px;
  color: var(--text);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2, .72, .2, 1);
}

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

.hero-visual.reveal.is-visible {
  transform: translateY(var(--parallax-shift, 0)) scale(1);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid {
    min-height: 680px;
  }

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

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

@media (max-width: 900px) {
  .section-pad {
    padding: 86px 0;
  }

  .hero-grid,
  .split-heading,
  .philosophy-grid,
  .zigzag,
  .expertise-grid,
  .newsletter-card,
  .faq-grid,
  .featured-editorial,
  .guide-layout,
  .legal-layout,
  .about-grid,
  .location-card,
  .contact-grid,
  .faq-page-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    margin-right: -26px;
  }

  .hero-image {
    height: 520px;
  }

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

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

  .zigzag-reverse .zigzag-copy,
  .zigzag-reverse > .image-frame {
    order: initial;
  }

  .faq-intro,
  .guide-aside,
  .legal-aside,
  .contact-info,
  .faq-page-aside {
    position: static;
  }

  .topic-band .container,
  .blog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-cloud {
    justify-content: flex-start;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1240px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    top: 0;
    padding: 0 10px;
  }

  .header-inner {
    min-height: 70px;
    padding-left: 17px;
  }

  .header-actions .btn,
  .header-search {
    display: none;
  }

  .hero-home {
    padding-top: 30px;
  }

  .hero-grid {
    width: min(100% - 20px, 1240px);
    padding: 33px 22px 22px;
    border-radius: 44px 44px 118px 44px;
  }

  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .hero-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual {
    margin-right: 0;
  }

  .hero-image {
    height: 390px;
    border-width: 5px;
    border-radius: 190px 190px 34px 78px;
  }

  .note-top {
    top: 18px;
    left: -4px;
  }

  .note-bottom {
    right: 12px;
    bottom: 15px;
  }

  .proof-inner {
    min-height: auto;
    padding: 22px;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 26px 26px 74px 26px;
    gap: 8px;
  }

  .proof-inner i {
    display: none;
  }

  .split-heading {
    margin-bottom: 36px;
    gap: 20px;
  }

  .split-heading h2,
  .section-heading h2,
  .philosophy-copy h2,
  .zigzag-copy h2,
  .faq-intro h2,
  .expertise-overlay h2,
  .newsletter-card h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

  .problem-grid,
  .category-grid,
  .process-grid,
  .story-grid,
  .blog-grid,
  .recommended-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-section,
  .process-section,
  .editorial-approach,
  .final-cta {
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 44px 100px 44px 100px;
  }

  .philosophy-grid .image-frame,
  .zigzag > .image-frame {
    height: 390px;
    border-radius: 180px 180px 32px 32px;
  }

  .zigzag {
    margin-bottom: 60px;
    padding: 22px;
    border-radius: 38px 38px 100px 38px;
  }

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

  .expertise-feature {
    min-height: 610px;
  }

  .expertise-overlay {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 24px;
  }

  .newsletter-card,
  .location-card {
    padding: 34px 22px;
    border-radius: 100px 38px 100px 38px;
  }

  .newsletter-form,
  .contact-form {
    padding: 22px;
  }

  .accordion summary {
    font-size: 1.08rem;
  }

  .accordion details > div {
    padding-right: 0;
  }

  .interior-hero {
    padding-top: 30px;
  }

  .interior-hero-grid {
    min-height: auto;
  }

  .interior-hero-grid > .image-frame {
    height: 390px;
    border-radius: 190px 190px 38px 84px;
  }

  .interior-hero-grid > div:first-child {
    position: relative;
    width: calc(100% - 24px);
    margin: -65px auto 0;
    padding: 25px;
    border-radius: 34px 34px 92px 34px;
    grid-area: auto;
  }

  .interior-hero-grid h1 {
    font-size: 3rem;
  }

  .featured-editorial {
    padding: 18px;
  }

  .featured-editorial .image-frame {
    height: 300px;
  }

  .guide-block {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .about-grid > div:first-child h2,
  .contact-info h2,
  .location-card h2 {
    font-size: 2.75rem;
  }

  .values-panel,
  .modal-card {
    padding: 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
