:root {
  --font-heading: "Bricolage Grotesque", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --brand: #BC603E;
  --brand-dark: #8F3E27;
  --sage: #637346;
  --sage-dark: #334023;
  --gold: #CDA24C;
  --gold-soft: #F0DFC0;
  --cream: #F7F1E7;
  --olive: #E3E6D4;
  --light-sage: #D8DEC9;
  --beige: #EFE5D7;
  --white: #FFFCF6;
  --ink: #25261F;
  --muted: #6D6A60;
  --line: rgba(37, 38, 31, .15);
  --line-strong: rgba(37, 38, 31, .25);
  --shadow: 0 30px 85px rgba(43, 45, 34, .15);
  --shadow-soft: 0 16px 45px rgba(43, 45, 34, .1);
  --shadow-card: 0 12px 28px rgba(43, 45, 34, .075);
  --radius-lg: 38px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

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

p {
  margin: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 10px;
  padding: 11px 18px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .25s ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(188, 96, 62, .55);
}

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

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(37, 38, 31, .07);
}

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

.text-logo {
  display: inline-block;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.42rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}

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

.desktop-nav a {
  position: relative;
  color: #4d5b51;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  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: 10px;
}

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

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

.menu-button {
  display: none;
}

.mobile-nav {
  padding: 8px 20px 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav a {
  display: block;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.2;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .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(--brand);
  box-shadow: 0 10px 26px rgba(188, 96, 62, .25);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--sage);
  box-shadow: 0 10px 26px rgba(112, 140, 99, .22);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--sage-dark);
}

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

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

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

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

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

.topic-orange {
  background: #F8DCC8;
  color: #7B3818;
}

.topic-sage {
  background: var(--light-sage);
  color: #31513D;
}

.topic-olive {
  background: var(--olive);
  color: #485A36;
}

.topic-rose {
  background: #F4DCDC;
  color: #773A42;
}

.topic-cream {
  background: var(--cream);
  color: #645344;
}

.topic-blue {
  background: #DDE8EA;
  color: #31545C;
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: linear-gradient(135deg, var(--cream), #fff 55%, var(--olive));
}

.hero-home::before {
  position: absolute;
  top: -260px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(112, 140, 99, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(231, 236, 216, .26), 0 0 0 140px rgba(231, 236, 216, .16);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 690px;
}

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

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.6rem, 7vw, 6.9rem);
}

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

.hero-lead {
  max-width: 630px;
  margin: 28px 0;
  color: #56635a;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.85;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 20px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #56635a;
  font-size: .75rem;
  font-weight: 700;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

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

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

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

.hero-image {
  height: 590px;
  border-radius: 180px 28px 180px 28px;
  transform: rotate(1.5deg);
}

.floating-note {
  position: absolute;
  display: flex;
  max-width: 205px;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  display: block;
  font-size: .88rem;
}

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

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

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

.note-top strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.65rem;
}

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

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #738078;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

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

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

.split-heading {
  display: grid;
  margin-bottom: 55px;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.2fr .8fr;
}

.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.4rem, 4.2vw, 4.4rem);
}

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

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

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

.problem-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

.problem-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.problem-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
}

.problem-card h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

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

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

.problem-card-accent {
  background: var(--brand);
  color: var(--white);
  transform: translateY(-18px);
}

.problem-card-accent p,
.problem-card-accent a {
  color: rgba(255, 255, 255, .88);
}

.problem-card-accent > span {
  color: var(--brand-dark);
}

.philosophy-section {
  overflow: hidden;
  background: var(--olive);
}

.philosophy-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.philosophy-grid .image-frame {
  height: 630px;
  border-radius: 190px 28px 28px 28px;
}

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

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  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: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.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: var(--cream);
}

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

.category-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(37, 38, 31, .09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.category-card > div {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: space-between;
}

.category-number {
  color: #a3aaa4;
  font-size: .72rem;
  font-weight: 800;
}

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

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

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

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

.zigzag {
  display: grid;
  margin-bottom: 125px;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.zigzag:last-child {
  margin-bottom: 0;
}

.zigzag > .image-frame {
  height: 590px;
  border-radius: 28px 170px 28px 28px;
}

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

.zigzag-reverse > .image-frame {
  order: 1;
  border-radius: 170px 28px 28px 28px;
}

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

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

.mini-grid div {
  padding: 17px;
  border-radius: 16px;
  background: var(--cream);
}

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

.mini-grid strong {
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

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

.process-section {
  background: var(--sage-dark);
  color: var(--white);
}

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

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

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

.process-grid article {
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
}

.process-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  font-size: .76rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

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

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

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

.story-grid article {
  display: flex;
  min-height: 355px;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  height: 58px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
}

.story-grid article > p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.45;
}

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

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

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

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

.expertise-section {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  align-items: stretch;
  gap: 28px;
  grid-template-columns: 1.3fr .7fr;
}

.expertise-feature {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.expertise-feature .image-frame {
  position: absolute;
  inset: 0;
}

.expertise-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 520px;
  padding: 34px;
  border-radius: 22px;
  background: rgba(250, 246, 239, .93);
  backdrop-filter: blur(12px);
}

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

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

.article-stack a {
  display: flex;
  min-height: 215px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: transform .3s ease, background .3s ease;
}

.article-stack a:hover {
  background: var(--olive);
  transform: translateX(-6px);
}

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

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

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

.newsletter-section {
  padding-top: 0;
  background: var(--white);
}

.newsletter-card {
  display: grid;
  align-items: center;
  gap: 80px;
  padding: 72px;
  background: linear-gradient(125deg, var(--olive), var(--light-sage));
  grid-template-columns: 1fr 1fr;
}

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

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

.newsletter-form {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .74);
}

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

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(112, 140, 99, .15);
}

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

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

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

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

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .7fr 1.3fr;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
}

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

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

.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.45rem;
  line-height: 1.25;
  list-style: none;
}

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

.accordion summary svg {
  transition: transform .25s ease;
}

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

.accordion details > div {
  padding: 0 50px 27px 0;
  color: var(--muted);
  font-size: .88rem;
}

.final-cta {
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr .8fr;
}

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

.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: 34px;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .06);
}

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

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

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

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

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

.interior-hero {
  padding-top: 42px;
  background: linear-gradient(135deg, var(--cream), var(--white) 58%, var(--olive));
}

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

.breadcrumb a {
  color: var(--brand-dark);
}

.interior-hero-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: .9fr 1.1fr;
}

.interior-hero-grid h1 {
  font-size: clamp(3.1rem, 6.5vw, 6.4rem);
}

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

.interior-hero-grid .image-frame {
  height: 460px;
  border-radius: 150px 28px 28px 28px;
}

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

.blog-toolbar {
  display: flex;
  margin-bottom: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.search-field {
  display: flex;
  width: min(100%, 390px);
  min-height: 54px;
  padding: 0 16px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

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

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

.filter-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .68rem;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--sage);
  background: var(--olive);
}

.featured-editorial {
  display: grid;
  margin-bottom: 100px;
  align-items: center;
  gap: 55px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--olive);
  grid-template-columns: 1.2fr .8fr;
}

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

.featured-editorial h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

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

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

.article-card {
  min-width: 0;
}

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

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

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

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

.article-visual > span:last-child {
  color: rgba(37, 38, 31, .45);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.visual-1 {
  background: linear-gradient(135deg, var(--olive), #F6E2D3);
}

.visual-2 {
  background: linear-gradient(135deg, #E2EBDD, #EDF3E8 60%, #F0DCCB);
}

.visual-3 {
  background: linear-gradient(135deg, #F4DCDC, #EFE5D7);
}

.visual-4 {
  background: linear-gradient(135deg, #DDE8EA, var(--cream));
}

.article-body {
  padding: 25px;
}

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

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

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

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

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

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

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

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

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

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

.recommended-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

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

.recommended-card h3 {
  margin: 42px 0 13px;
  font-size: 2rem;
}

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

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

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

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

.guide-aside,
.legal-aside {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.guide-aside ol,
.legal-aside ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  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: #4f5c53;
  font-size: .71rem;
  font-weight: 700;
}

.aside-note {
  margin-top: 25px;
  padding: 18px;
  border-radius: 15px;
  background: var(--olive);
}

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

.aside-note p {
  margin-top: 7px;
  color: var(--muted);
  font-size: .67rem;
}

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

.guide-block {
  display: grid;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  gap: 28px;
  grid-template-columns: 60px 1fr;
  scroll-margin-top: 120px;
}

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

.guide-block h2 {
  margin-bottom: 19px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

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

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

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

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

.topic-band .eyebrow {
  color: #F5B98B;
}

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

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

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

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

.about-story {
  background: var(--white);
}

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

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

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

.values-panel {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--olive);
}

.values-panel > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid rgba(37, 38, 31, .12);
  gap: 15px;
  grid-template-columns: 44px 1fr;
}

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

.values-panel > div span {
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
}

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

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

.editorial-approach {
  background: var(--sage-dark);
  color: var(--white);
}

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

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

.location-card {
  display: grid;
  padding: 65px;
  align-items: center;
  gap: 70px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 1fr .8fr;
}

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

.location-card > div:first-child > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--muted);
}

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

.location-details span {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-wrap: anywhere;
}

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

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: .8fr 1.2fr;
}

.contact-info {
  position: sticky;
  top: 120px;
}

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

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

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

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

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

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

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

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

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

.contact-form {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

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

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

.faq-page {
  background: var(--white);
}

.faq-page-grid {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: .7fr 1.3fr;
}

.faq-page-aside {
  position: sticky;
  top: 120px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--olive);
}

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

.faq-page-aside > p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: .82rem;
}

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

.disclaimer-band {
  padding: 70px 0;
  background: var(--sage-dark);
  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: 40px;
  height: 40px;
  color: #F5B98B;
}

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

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

.legal-section {
  background: var(--white);
}

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

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

.legal-intro {
  margin-bottom: 46px;
  padding: 30px;
  border-left: 4px solid var(--brand);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.legal-copy article {
  margin-bottom: 55px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}

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

.legal-copy article h3 {
  margin: 20px 0 7px;
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-copy article p {
  color: #536057;
  font-size: .88rem;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--sage);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  grid-template-columns: 1.6fr .8fr .8fr 1.3fr;
}

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

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

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

.footer-grid h2 {
  margin-bottom: 19px;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  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, .78);
  font-size: .73rem;
  overflow-wrap: anywhere;
}

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

.footer-contact svg {
  width: 17px;
  margin-top: 3px;
}

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

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

.footer-disclaimer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .62);
  font-size: .63rem;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: min(100% - 40px, 900px);
  margin-inline: auto;
  padding: 23px;
  align-items: center;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(37, 38, 31, .28);
  grid-template-columns: 1fr auto;
}

.cookie-banner[hidden] {
  display: none;
}

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

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

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

.cookie-actions .btn {
  min-height: 43px;
  padding: 10px 16px;
  font-size: .68rem;
}

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

.modal-shell[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 37, 29, .72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

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

.modal-card > p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@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: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .philosophy-grid,
  .zigzag,
  .interior-hero-grid {
    gap: 50px;
  }

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

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

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

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

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

  .hero-visual {
    width: 92%;
    margin-left: auto;
  }

  .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));
  }

  .philosophy-grid .image-frame,
  .zigzag > .image-frame {
    height: 500px;
  }

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

  .faq-intro,
  .guide-aside,
  .contact-info,
  .faq-page-aside,
  .legal-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, 1180px);
  }

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

  .header-inner {
    min-height: 72px;
  }

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

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

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

  .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;
    gap: 10px;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image {
    height: 410px;
    border-radius: 90px 22px 90px 22px;
  }

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

  .note-bottom {
    right: -5px;
    bottom: 18px;
  }

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

  .proof-inner i {
    display: none;
  }

  .split-heading {
    margin-bottom: 35px;
    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.65rem;
  }

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

  .problem-card-accent {
    transform: none;
  }

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

  .zigzag {
    margin-bottom: 80px;
  }

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

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

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

  .newsletter-card,
  .location-card {
    padding: 35px 22px;
  }

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

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

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

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

  .breadcrumb {
    margin-bottom: 30px;
  }

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

  .interior-hero-grid .image-frame {
    height: 340px;
    border-radius: 90px 22px 22px 22px;
  }

  .featured-editorial {
    padding: 18px;
  }

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

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

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

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

  .footer-grid {
    gap: 36px;
    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%;
  }
}

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 650;
  letter-spacing: -.045em;
}

.container {
  width: min(1260px, calc(100% - 64px));
}

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

.reading-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  box-shadow: none;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 231, .9);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  box-shadow: 0 12px 34px rgba(43, 45, 34, .07);
}

.header-inner {
  min-height: 90px;
}

.text-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 750;
  letter-spacing: -.05em;
}

.text-logo::before {
  width: 22px;
  height: 22px;
  border-radius: 64% 36% 56% 44%;
  background: var(--gold);
  box-shadow: inset -5px -3px 0 rgba(143, 62, 39, .18);
  content: "";
  transform: rotate(18deg);
}

.desktop-nav {
  gap: clamp(18px, 2vw, 32px);
}

.desktop-nav a {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  bottom: -11px;
  height: 2px;
  background: var(--brand);
}

.header-search,
.menu-button {
  width: 46px;
  height: 46px;
  border-color: var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 252, 246, .55);
}

.header-search:hover,
.menu-button:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: rotate(4deg);
}

.mobile-nav {
  background: var(--cream);
}

.mobile-nav a {
  border-color: var(--line);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 650;
}

.btn {
  min-height: 54px;
  padding: 14px 25px;
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: transform .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 0 rgba(143, 62, 39, .16);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 8px 0 rgba(143, 62, 39, .18);
}

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

.btn-secondary:hover {
  border-color: var(--sage-dark);
  background: var(--olive);
  color: var(--sage-dark);
}

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

.btn-light {
  border-color: rgba(255, 252, 246, .42);
  background: rgba(255, 252, 246, .1);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--brand);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.topic-badge {
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.topic-orange {
  border-color: rgba(188, 96, 62, .25);
  background: #F2D8CC;
  color: #8F3E27;
}

.topic-sage {
  border-color: rgba(99, 115, 70, .25);
  background: #DCE2CE;
  color: #46572D;
}

.topic-olive {
  border-color: rgba(51, 64, 35, .2);
  background: var(--olive);
  color: var(--sage-dark);
}

.topic-rose {
  border-color: rgba(147, 80, 71, .2);
  background: #EDD5CF;
  color: #82483F;
}

.topic-cream {
  border-color: rgba(140, 102, 37, .18);
  background: var(--gold-soft);
  color: #79591F;
}

.topic-blue {
  border-color: rgba(85, 116, 119, .2);
  background: #DDE8E4;
  color: #456466;
}

.hero-home {
  position: relative;
  padding: 78px 0 138px;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 6%, rgba(205, 162, 76, .25), transparent 22rem),
    linear-gradient(180deg, #F7F1E7 0%, #F2E9DB 100%);
}

.hero-home::before {
  top: 54px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(51, 64, 35, .18);
  border-radius: 44% 56% 65% 35%;
  background: transparent;
  content: "";
  transform: rotate(22deg);
}

.hero-home::after {
  position: absolute;
  bottom: -125px;
  left: -90px;
  width: 300px;
  height: 260px;
  border-radius: 48% 52% 38% 62%;
  background: rgba(99, 115, 70, .12);
  content: "";
  transform: rotate(-24deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 730px;
  gap: clamp(40px, 6vw, 92px);
  grid-template-columns: 1.02fr .98fr;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 30px 0 40px;
}

.hero-copy::after {
  position: absolute;
  right: 26px;
  bottom: 18px;
  width: 150px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero-kicker {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: .73rem;
  letter-spacing: .05em;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(5.2rem, 8.4vw, 9.35rem);
  font-weight: 720;
  line-height: .82;
  letter-spacing: -.075em;
}

.hero-copy h1 em {
  display: inline-block;
  color: var(--brand);
  font-style: normal;
  transform: translateX(4.5vw);
}

.hero-lead {
  max-width: 620px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.hero-notes {
  margin-top: 36px;
  gap: 14px 24px;
}

.hero-notes span {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
}

.hero-notes svg {
  color: var(--brand);
}

.hero-visual {
  min-height: 680px;
  margin-right: -4vw;
}

.image-frame {
  overflow: hidden;
  border: 1px solid rgba(37, 38, 31, .08);
  background: var(--beige);
  box-shadow: var(--shadow-card);
}

.image-frame img {
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

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

.hero-image {
  height: 680px;
  border-radius: 42% 16% 42% 14% / 20% 44% 18% 46%;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-image::after {
  display: none;
}

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

.floating-note {
  min-width: 198px;
  padding: 18px 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 252, 246, .96);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.floating-note span {
  color: var(--muted);
  font-size: .67rem;
}

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

.note-top {
  top: 48px;
  right: auto;
  left: -48px;
  transform: rotate(-3deg);
}

.note-top strong {
  color: var(--brand);
  font-size: 1rem;
}

.note-bottom {
  right: 14px;
  bottom: 36px;
  transform: rotate(2deg);
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--gold);
}

.proof-inner {
  min-height: 94px;
  color: var(--ink);
}

.proof-inner > span,
.proof-inner strong {
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proof-inner i {
  width: 6px;
  height: 6px;
  background: var(--brand);
}

.split-heading {
  margin-bottom: 74px;
  gap: 100px;
  grid-template-columns: 1.25fr .65fr;
}

.split-heading h2,
.section-heading h2,
.zigzag-copy h2,
.faq-intro h2,
.philosophy-copy h2,
.final-cta h2 {
  font-size: clamp(3.3rem, 5.8vw, 6.25rem);
  font-weight: 680;
  line-height: .94;
}

.split-heading > p,
.section-heading > p:last-child {
  color: var(--muted);
}

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

.problem-grid {
  gap: 0;
  align-items: start;
}

.problem-card {
  position: relative;
  min-height: 390px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px 72px 28px 28px;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.problem-card:nth-child(2) {
  z-index: 2;
  margin: 46px -14px 0;
  border-radius: 72px 28px 72px 28px;
  transform: rotate(-1deg);
}

.problem-card:nth-child(3) {
  margin-top: -18px;
  transform: rotate(1deg);
}

.problem-card:hover {
  z-index: 4;
  box-shadow: var(--shadow);
  transform: translateY(-9px) rotate(0);
}

.problem-card > span {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.problem-card h3 {
  margin-top: auto;
  font-size: 2.05rem;
}

.problem-card p {
  color: var(--muted);
}

.problem-card a {
  color: var(--sage-dark);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.problem-card-accent {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--white);
}

.problem-card-accent p {
  color: rgba(255, 252, 246, .7);
}

.problem-card-accent a,
.problem-card-accent > span {
  color: var(--gold);
}

.philosophy-section {
  position: relative;
  padding: 158px 0;
  overflow: hidden;
  background: var(--olive);
}

.philosophy-section::after {
  position: absolute;
  top: 54px;
  right: -120px;
  width: 360px;
  height: 280px;
  border: 1px solid rgba(51, 64, 35, .18);
  border-radius: 55% 45% 35% 65%;
  content: "";
  transform: rotate(18deg);
}

.philosophy-grid {
  gap: clamp(70px, 9vw, 145px);
}

.philosophy-grid .image-frame {
  height: 700px;
  border-radius: 30% 12% 30% 10% / 14% 28% 16% 32%;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.philosophy-grid .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.philosophy-copy > p:not(.eyebrow) {
  color: #5E6650;
}

.check-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(51, 64, 35, .18);
}

.check-list svg {
  width: 25px;
  height: 25px;
  padding: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.categories-section {
  position: relative;
  background: var(--white);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 72px;
}

.category-grid {
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 320px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px 66px 26px 26px;
  background: var(--cream);
  box-shadow: none;
}

.category-card:nth-child(2),
.category-card:nth-child(5) {
  border-radius: 66px 26px 66px 26px;
}

.category-card:nth-child(3n) {
  margin-top: 28px;
}

.category-card::after {
  position: absolute;
  right: -48px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(205, 162, 76, .16);
  content: "";
}

.category-card:hover {
  border-color: var(--gold);
  background: #FFF8EC;
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px) rotate(-1deg);
}

.category-number {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.category-card h3 {
  margin-top: auto;
  font-size: 2.25rem;
}

.category-card p {
  color: var(--muted);
}

.card-link {
  color: var(--sage-dark);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.benefits-section {
  padding: 160px 0;
  background: #F0E6D8;
}

.zigzag {
  position: relative;
  min-height: 650px;
  margin-bottom: 140px;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: .88fr 1.12fr;
}

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

.zigzag::after {
  position: absolute;
  bottom: -72px;
  left: 36%;
  width: 180px;
  height: 1px;
  background: var(--brand);
  content: "";
}

.zigzag > .image-frame {
  height: 650px;
  border-radius: 18% 8% 22% 8% / 10% 18% 12% 24%;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.zigzag-reverse > .image-frame {
  border-radius: 8% 20% 8% 24% / 20% 10% 24% 10%;
  transform: rotate(-1.2deg);
}

.zigzag > .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zigzag-copy {
  max-width: 590px;
}

.zigzag-copy > p {
  color: var(--muted);
}

.mini-grid {
  gap: 12px;
}

.mini-grid div {
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px 42px 18px 18px;
  background: var(--white);
}

.mini-grid div:nth-child(2),
.mini-grid div:nth-child(3) {
  border-radius: 42px 18px 42px 18px;
}

.mini-grid strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.mini-grid span {
  color: var(--muted);
  font-size: .72rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 430px;
  height: 360px;
  border: 1px solid rgba(255, 252, 246, .14);
  border-radius: 42% 58% 36% 64%;
  content: "";
  transform: rotate(20deg);
}

.process-section .eyebrow {
  color: var(--gold);
}

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

.process-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 252, 246, .18);
}

.process-grid article {
  min-height: 310px;
  padding: 34px 30px;
  border-right: 1px solid rgba(255, 252, 246, .16);
  border-radius: 0;
  background: transparent;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article > span {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
}

.process-grid h3 {
  margin-top: auto;
  font-size: 2rem;
}

.process-grid p {
  color: rgba(255, 252, 246, .66);
}

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

.story-grid {
  gap: 0;
  align-items: start;
}

.story-grid article {
  position: relative;
  min-height: 420px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px 72px 28px 28px;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.story-grid article:nth-child(2) {
  z-index: 2;
  margin: 42px -12px 0;
  border-color: var(--gold);
  border-radius: 72px 28px 72px 28px;
  background: var(--gold-soft);
  transform: rotate(-1deg);
}

.story-grid article:nth-child(3) {
  margin-top: -20px;
  background: var(--olive);
  transform: rotate(1deg);
}

.quote-mark {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: .8;
}

.story-grid article > p {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 550;
  line-height: 1.48;
}

.story-grid footer {
  border-color: var(--line);
}

.story-grid footer span {
  color: var(--muted);
}

.expertise-section {
  background: var(--olive);
}

.expertise-grid {
  gap: 28px;
  grid-template-columns: 1.45fr .55fr;
}

.expertise-feature {
  min-height: 720px;
  border-radius: 34px 140px 34px 34px;
  box-shadow: var(--shadow);
  transform: rotate(-.6deg);
}

.expertise-feature .image-frame {
  height: 720px;
  border: 0;
  border-radius: inherit;
}

.expertise-overlay {
  right: 28px;
  bottom: 28px;
  left: auto;
  width: min(520px, calc(100% - 56px));
  padding: 35px;
  border: 1px solid rgba(255, 252, 246, .28);
  border-radius: 26px 62px 26px 26px;
  background: rgba(51, 64, 35, .88);
  backdrop-filter: blur(16px);
}

.expertise-overlay .eyebrow {
  color: var(--gold);
}

.expertise-overlay h2 {
  color: var(--white);
}

.expertise-overlay p:not(.eyebrow) {
  color: rgba(255, 252, 246, .72);
}

.article-stack {
  gap: 16px;
  padding-top: 30px;
}

.article-stack a {
  min-height: 216px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px 54px 22px 22px;
  background: var(--cream);
  box-shadow: none;
}

.article-stack a:nth-child(2) {
  margin-left: -42px;
  background: var(--white);
}

.article-stack a:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
  transform: translateX(-8px) rotate(-1deg);
}

.article-stack a > span {
  color: var(--brand);
  font-size: .65rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.article-stack h3 {
  font-size: 1.65rem;
}

.article-stack p {
  color: var(--muted);
}

.newsletter-section {
  position: relative;
  background: var(--white);
}

.newsletter-card {
  padding: 84px;
  overflow: hidden;
  border: 0;
  border-radius: 42px 150px 42px 42px;
  background:
    radial-gradient(circle at 90% 16%, rgba(205, 162, 76, .45), transparent 17rem),
    var(--brand);
  color: var(--white);
  box-shadow: var(--shadow);
}

.newsletter-card h2 {
  font-size: clamp(3.3rem, 5.4vw, 5.7rem);
}

.newsletter-card .eyebrow {
  color: var(--gold-soft);
}

.newsletter-card > div > p:not(.eyebrow) {
  color: rgba(255, 252, 246, .72);
}

.newsletter-form,
.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px 60px 24px 24px;
  background: rgba(255, 252, 246, .95);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

label {
  color: var(--ink);
  font-size: .67rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

input,
select,
textarea {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

textarea {
  min-height: 128px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(205, 162, 76, .16);
}

.consent-row {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: 0;
  text-transform: none;
}

.faq-section {
  background: #F0E6D8;
}

.faq-grid {
  gap: 100px;
  grid-template-columns: .7fr 1.3fr;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.accordion {
  border-top: 2px solid var(--ink);
}

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

.accordion summary {
  min-height: 94px;
  padding: 25px 4px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 650;
}

.accordion details > div {
  padding: 0 52px 30px 4px;
  color: var(--muted);
}

.accordion summary svg {
  color: var(--brand);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 520px;
  height: 420px;
  border: 1px solid rgba(255, 252, 246, .15);
  border-radius: 42% 58% 36% 64%;
  content: "";
  transform: rotate(18deg);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  gap: 104px;
}

.final-cta-grid > div:first-child > p:not(.eyebrow) {
  color: rgba(255, 252, 246, .7);
}

.contact-preview {
  border-top: 1px solid rgba(255, 252, 246, .2);
}

.contact-preview > span {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 252, 246, .2);
}

.contact-preview svg {
  color: var(--gold);
}

.contact-preview small {
  color: rgba(255, 252, 246, .5);
  letter-spacing: .1em;
}

.contact-preview b {
  color: var(--white);
  font-weight: 600;
}

.interior-hero {
  position: relative;
  padding: 42px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(205, 162, 76, .25), transparent 20rem),
    var(--cream);
}

.interior-hero::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 350px;
  height: 300px;
  border-radius: 45% 55% 36% 64%;
  background: rgba(99, 115, 70, .1);
  content: "";
  transform: rotate(22deg);
}

.breadcrumb {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.interior-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 540px;
  gap: clamp(58px, 8vw, 120px);
  grid-template-columns: .9fr 1.1fr;
}

.interior-hero-grid h1 {
  font-size: clamp(4.6rem, 7.8vw, 8rem);
  font-weight: 720;
  line-height: .86;
}

.interior-hero-grid > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.interior-hero-grid .image-frame {
  height: 540px;
  border-radius: 26% 10% 28% 8% / 12% 24% 14% 30%;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.blog-tools-section,
.guide-content,
.legal-section,
.contact-section {
  background: var(--white);
}

.blog-toolbar {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--ink);
}

.search-field {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
}

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

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .06em;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.featured-editorial {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px 110px 34px 34px;
  background: var(--olive);
  box-shadow: var(--shadow-card);
}

.featured-editorial .image-frame {
  height: 500px;
  border-radius: 28px 92px 28px 28px;
}

.featured-editorial h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.featured-editorial > div > p:not(.eyebrow) {
  color: var(--muted);
}

.blog-grid {
  gap: 18px;
  align-items: start;
}

.article-card:nth-child(3n+2) {
  margin-top: 52px;
}

.article-card > a {
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 24px 62px 24px 24px;
  background: var(--cream);
  box-shadow: none;
}

.article-card:nth-child(even) > a {
  border-radius: 62px 24px 62px 24px;
}

.article-card > a:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px) rotate(-1deg);
}

.article-visual {
  min-height: 195px;
  border-radius: inherit;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.visual-1 {
  background: linear-gradient(135deg, #D9E0C8, #AEBB8E);
}

.visual-2 {
  background: linear-gradient(135deg, #F0D5C7, #CF8C70);
}

.visual-3 {
  background: linear-gradient(135deg, #F2E4C6, #D6B466);
}

.visual-4 {
  background: linear-gradient(135deg, #DCE7E1, #9CB9B0);
}

.article-body {
  padding: 29px;
}

.article-body h3 {
  font-size: 1.8rem;
}

.article-body > p {
  color: var(--muted);
}

.article-body > span {
  color: var(--brand);
}

.pagination a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
}

.pagination a:hover,
.pagination a[aria-current="page"] {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.recommended-section {
  background: var(--olive);
}

.recommended-grid {
  align-items: start;
}

.recommended-card {
  min-height: 315px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 26px 68px 26px 26px;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.recommended-card:nth-child(2) {
  margin-top: 36px;
  border-radius: 68px 26px 68px 26px;
}

.recommended-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-7px) rotate(-1deg);
}

.recommended-card h3 {
  font-size: 2rem;
}

.recommended-card p {
  color: var(--muted);
}

.guide-layout,
.legal-layout {
  gap: 78px;
  grid-template-columns: 290px 1fr;
}

.guide-aside,
.legal-aside {
  top: 122px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 24px 58px 24px 24px;
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

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

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

.guide-aside a,
.legal-aside a {
  color: var(--muted);
}

.aside-note {
  border: 0;
  border-radius: 18px 42px 18px 18px;
  background: var(--gold-soft);
}

.guide-main {
  gap: 26px;
}

.guide-block {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 26px 72px 26px 26px;
  background: var(--cream);
  box-shadow: none;
}

.guide-block:nth-child(even) {
  margin-left: 42px;
  border-radius: 72px 26px 72px 26px;
  background: var(--olive);
}

.guide-index {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.guide-block h2 {
  font-size: 2.6rem;
}

.guide-block p {
  color: var(--muted);
}

.topic-band {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--white);
}

.topic-band::before {
  top: -90px;
  right: -80px;
  width: 320px;
  height: 270px;
  border: 1px solid rgba(255, 252, 246, .16);
  border-radius: 46% 54% 36% 64%;
  background: transparent;
}

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

.topic-band h2 {
  font-size: clamp(3.3rem, 5.5vw, 5.8rem);
}

.topic-cloud a {
  border: 1px solid rgba(255, 252, 246, .25);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
}

.topic-cloud a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.about-story,
.location-section {
  background: var(--olive);
}

.about-grid {
  gap: 92px;
}

.about-grid > div:first-child h2,
.contact-info h2,
.location-card h2 {
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
}

.about-grid > div:first-child p:not(.eyebrow),
.contact-info > p:not(.eyebrow),
.location-card > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.values-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.values-panel > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.values-panel > div:first-child {
  border-top: 2px solid var(--ink);
}

.values-panel > div span {
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
}

.editorial-approach {
  background: var(--sage-dark);
}

.editorial-approach .eyebrow {
  color: var(--gold);
}

.location-card {
  padding: 78px;
  border: 1px solid var(--line);
  border-radius: 38px 130px 38px 38px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.location-details span {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

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

.contact-grid {
  gap: 84px;
}

.contact-list {
  border-top: 2px solid var(--ink);
}

.contact-list > span {
  padding: 23px 0;
  border-bottom: 1px solid var(--line-strong);
}

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

.contact-list small {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form {
  padding: 44px;
  background: var(--cream);
}

.faq-page-grid {
  gap: 78px;
  grid-template-columns: 340px 1fr;
}

.faq-page-aside {
  top: 122px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px 66px 26px 26px;
  background: var(--gold-soft);
  box-shadow: var(--shadow-card);
}

.faq-page-aside > p:not(.eyebrow) {
  color: var(--muted);
}

.disclaimer-band {
  background: #E7D9C6;
}

.disclaimer-band .container > div {
  border: 1px solid var(--line);
  border-radius: 24px 62px 24px 24px;
  background: rgba(255, 252, 246, .68);
}

.disclaimer-band svg {
  color: var(--brand);
}

.legal-copy {
  gap: 22px;
}

.legal-intro,
.legal-copy article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px 62px 24px 24px;
  background: var(--cream);
  box-shadow: none;
}

.legal-intro {
  border-left: 5px solid var(--brand);
  background: var(--gold-soft);
}

.legal-copy article:nth-child(even) {
  margin-left: 26px;
  border-radius: 62px 24px 62px 24px;
}

.legal-copy article h2 {
  font-size: 2.3rem;
}

.legal-copy article h3 {
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
}

.legal-copy article p {
  color: var(--muted);
}

.site-footer {
  padding-top: 104px;
  border-top: 0;
  background: #2D361F;
  color: rgba(255, 252, 246, .7);
}

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

.text-logo-light::before {
  background: var(--gold);
}

.footer-grid {
  gap: 58px;
  grid-template-columns: 1.35fr .7fr .7fr 1.15fr;
}

.footer-brand > p {
  color: rgba(255, 252, 246, .62);
}

.footer-grid h2 {
  color: var(--gold);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-contact > span {
  color: rgba(255, 252, 246, .7);
}

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

.footer-contact svg {
  color: var(--gold);
}

.footer-bottom,
.footer-disclaimer {
  border-color: rgba(255, 252, 246, .15);
}

.footer-disclaimer {
  color: rgba(255, 252, 246, .54);
}

.cookie-banner {
  right: 24px;
  bottom: 24px;
  left: auto;
  width: min(590px, calc(100% - 48px));
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 26px 68px 26px 26px;
  background: rgba(255, 252, 246, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.cookie-banner p:not(.eyebrow) {
  color: var(--muted);
}

.cookie-actions {
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
}

.modal-shell {
  background: rgba(37, 38, 31, .5);
  backdrop-filter: blur(8px);
}

.modal-card {
  padding: 46px;
  border: 1px solid rgba(255, 252, 246, .5);
  border-radius: 28px 72px 28px 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1);
}

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

@media (max-width: 1100px) {
  .container {
    width: min(100% - 48px, 1040px);
  }

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

  .hero-grid {
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(4.8rem, 8.6vw, 7.4rem);
  }

  .hero-visual,
  .hero-image {
    height: 590px;
    min-height: 590px;
  }

  .newsletter-card {
    padding: 60px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

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

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

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

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

  .menu-button {
    display: grid;
  }

  .hero-home {
    padding: 54px 0 92px;
  }

  .hero-grid,
  .interior-hero-grid,
  .philosophy-grid,
  .zigzag,
  .zigzag-reverse,
  .faq-grid,
  .final-cta-grid,
  .expertise-grid,
  .guide-layout,
  .legal-layout,
  .contact-grid,
  .faq-page-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    font-size: clamp(4.6rem, 13vw, 7.4rem);
  }

  .hero-copy h1 em {
    transform: translateX(8vw);
  }

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

  .hero-visual,
  .hero-image {
    height: min(690px, 82vw);
    min-height: 520px;
  }

  .note-top {
    left: 16px;
  }

  .note-bottom {
    right: 16px;
  }

  .split-heading {
    gap: 26px;
    grid-template-columns: 1fr;
  }

  .problem-card:nth-child(2),
  .problem-card:nth-child(3) {
    margin: 18px 0 0;
    transform: none;
  }

  .category-card:nth-child(3n) {
    margin-top: 0;
  }

  .philosophy-grid .image-frame,
  .zigzag > .image-frame {
    height: min(670px, 86vw);
  }

  .zigzag,
  .zigzag-reverse {
    min-height: auto;
    margin-bottom: 88px;
    gap: 54px;
  }

  .zigzag-reverse .zigzag-copy,
  .zigzag-reverse > .image-frame {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 252, 246, .16);
  }

  .story-grid article:nth-child(2),
  .story-grid article:nth-child(3) {
    margin: 18px 0 0;
    transform: none;
  }

  .expertise-feature,
  .expertise-feature .image-frame {
    min-height: 640px;
    height: 640px;
  }

  .article-stack a:nth-child(2) {
    margin-left: 0;
  }

  .newsletter-card {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .article-card:nth-child(3n+2),
  .recommended-card:nth-child(2) {
    margin-top: 0;
  }

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

  .guide-block:nth-child(even),
  .legal-copy article:nth-child(even) {
    margin-left: 0;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

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

  .header-inner {
    min-height: 78px;
  }

  .text-logo {
    font-size: 1.25rem;
  }

  .header-search,
  .menu-button {
    width: 42px;
    height: 42px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.95rem, 17vw, 5.8rem);
  }

  .hero-copy h1 em {
    transform: translateX(0);
  }

  .hero-lead {
    font-size: .96rem;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual,
  .hero-image {
    height: 480px;
    min-height: 480px;
    border-radius: 30% 10% 30% 8% / 12% 26% 14% 30%;
  }

  .floating-note {
    min-width: 160px;
    padding: 14px 16px;
  }

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

  .note-bottom {
    right: 8px;
    bottom: 18px;
  }

  .proof-inner {
    padding: 24px 0;
    justify-content: flex-start;
  }

  .split-heading h2,
  .section-heading h2,
  .zigzag-copy h2,
  .faq-intro h2,
  .philosophy-copy h2,
  .final-cta h2 {
    font-size: clamp(2.9rem, 13vw, 4.35rem);
  }

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

  .problem-card,
  .category-card,
  .story-grid article {
    min-height: 325px;
    padding: 27px;
  }

  .philosophy-grid .image-frame,
  .zigzag > .image-frame {
    height: 480px;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 246, .16);
  }

  .expertise-feature,
  .expertise-feature .image-frame {
    min-height: 530px;
    height: 530px;
    border-radius: 26px 82px 26px 26px;
  }

  .expertise-overlay {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 25px;
  }

  .newsletter-card {
    padding: 36px 22px;
    border-radius: 28px 84px 28px 28px;
  }

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

  .interior-hero {
    padding-bottom: 76px;
  }

  .interior-hero-grid h1 {
    font-size: clamp(3.85rem, 16vw, 5.6rem);
  }

  .interior-hero-grid .image-frame,
  .featured-editorial .image-frame {
    height: 370px;
  }

  .featured-editorial {
    padding: 15px;
    border-radius: 24px 76px 24px 24px;
  }

  .guide-block,
  .legal-intro,
  .legal-copy article {
    padding: 27px;
  }

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

  .location-card {
    padding: 40px 25px;
    border-radius: 28px 82px 28px 28px;
  }

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

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

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

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