:root {
  --ink: #14221d;
  --ink-soft: #52605a;
  --paper: #f6f3ed;
  --white: #ffffff;
  --sage: #d9e1d4;
  --sage-deep: #234c3c;
  --sage-dark: #173a2e;
  --clay: #c86f4d;
  --clay-dark: #a94f31;
  --sand: #e8dfd0;
  --line: rgba(20, 34, 29, 0.14);
  --shadow: 0 22px 70px rgba(24, 43, 35, 0.12);
  --shadow-soft: 0 12px 40px rgba(24, 43, 35, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--sage-deep);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--clay-dark);
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  letter-spacing: -0.025em;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--sage-dark);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

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

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

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

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 34, 29, 0.06);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  color: var(--ink);
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 13px;
  place-items: center;
  transform: rotate(-3deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
  border-radius: 2px;
}

.brand-mark::before {
  width: 21px;
  height: 2px;
  transform: rotate(-38deg) translate(-1px, -2px);
}

.brand-mark::after {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  background: transparent;
  transform: translateY(5px);
}

.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  letter-spacing: -0.025em;
}

.brand-text span {
  color: var(--clay-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav .button,
.main-nav .button:hover {
  color: var(--white);
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 13px;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

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

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

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

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--sage-deep);
  border: 1px solid var(--sage-deep);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 10px 30px rgba(35, 76, 60, 0.2);
  transform: translateY(-2px);
}

.button.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button.light:hover {
  color: var(--ink);
  background: var(--paper);
}

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

.button.ghost:hover {
  color: var(--sage-deep);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

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

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay-dark);
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.lead {
  max-width: 750px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero {
  padding: 64px 0 54px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
}

.hero-grid > * {
  min-width: 0;
}

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

.hero-copy h1 {
  font-size: clamp(3rem, 5.6vw, 5.4rem);
}

.hero-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.hero-notes li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-notes li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--clay);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4px rgba(200, 111, 77, 0.14);
}

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

.hero-visual::before {
  position: absolute;
  top: -70px;
  right: -90px;
  width: 460px;
  height: 460px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

.hero-image-wrap {
  position: absolute;
  inset: 10px 0 38px 48px;
  overflow: hidden;
  border-radius: 180px 24px 24px 24px;
  box-shadow: var(--shadow);
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: min(320px, 72%);
  padding: 21px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.floating-card span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.trust-strip {
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--sage-dark);
}

.trust-grid {
  display: grid;
  align-items: center;
  gap: 18px;
  grid-template-columns: 1.25fr repeat(3, 1fr);
}

.trust-grid strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.trust-grid span {
  font-size: 0.86rem;
}

.section {
  padding: 108px 0;
}

.section.compact {
  padding: 76px 0;
}

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

.section.green {
  color: rgba(255, 255, 255, 0.83);
  background: var(--sage-dark);
}

.section.green h2,
.section.green h3,
.section.green h4,
.section.green .eyebrow {
  color: var(--white);
}

.section.green a:not(.button) {
  color: var(--white);
}

.section-head {
  display: flex;
  margin-bottom: 50px;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p {
  max-width: 520px;
  color: var(--ink-soft);
}

.section-head h2:last-child,
.section-head p:last-child {
  margin-bottom: 0;
}

.cards-3,
.cards-4,
.room-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

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

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

.info-card,
.room-card,
.step-card,
.faq-item,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.info-card,
.step-card,
.contact-card {
  padding: 30px;
}

.info-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  border-color: rgba(35, 76, 60, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.icon-tile {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--sage-deep);
  background: var(--sage);
  border-radius: 15px;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.info-card p,
.room-card p,
.step-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.split {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split.top {
  align-items: start;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.image-panel::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  z-index: -1;
  width: 52%;
  height: 48%;
  background-image: radial-gradient(var(--clay) 1.3px, transparent 1.3px);
  background-size: 12px 12px;
  content: "";
  opacity: 0.35;
}

.check-list,
.plain-list,
.footer-links {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 50%;
  content: "✓";
  place-items: center;
  font-size: 0.74rem;
  font-weight: 800;
}

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

.room-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.room-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.room-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
  opacity: 0.75;
}

.room-card:nth-child(2n)::after {
  background: var(--sand);
}

.room-card:nth-child(3n)::after {
  background: rgba(200, 111, 77, 0.18);
}

.room-number {
  display: block;
  margin-bottom: 50px;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.room-card .text-link {
  position: absolute;
  bottom: 28px;
  left: 30px;
  z-index: 2;
}

.steps {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  position: relative;
  z-index: 1;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
}

.quote-block {
  padding: 42px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: var(--radius-xl);
}

.quote-block blockquote {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.quote-block cite {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-style: normal;
}

.cta-panel {
  position: relative;
  display: grid;
  padding: 58px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--sage-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-items: center;
  gap: 40px;
  grid-template-columns: 1.3fr 0.7fr;
}

.cta-panel::after {
  position: absolute;
  top: -110px;
  right: -75px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 76px 0 70px;
  background: linear-gradient(135deg, var(--paper), #edf0e8);
  border-bottom: 1px solid var(--line);
}

.page-hero .breadcrumb {
  margin-bottom: 25px;
}

.breadcrumb {
  display: flex;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  opacity: 0.45;
}

.breadcrumb a {
  color: inherit;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 42px;
  grid-template-columns: 1.35fr 0.65fr;
}

.page-hero-aside {
  padding: 25px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.page-hero-aside p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 270px;
}

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

.article-content > section {
  padding-top: 20px;
  margin-bottom: 72px;
  scroll-margin-top: 110px;
}

.article-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.article-content h3 {
  margin-top: 34px;
}

.article-content p,
.article-content li {
  color: #33413b;
}

.article-content li {
  margin-bottom: 9px;
}

.article-content a {
  font-weight: 700;
}

.article-intro {
  padding: 32px;
  margin-bottom: 50px;
  background: var(--sage);
  border-radius: var(--radius-lg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.55;
}

.toc {
  position: sticky;
  top: 112px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.toc strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
}

.toc li {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

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

.toc a:hover {
  color: var(--clay-dark);
}

.callout {
  padding: 30px;
  margin: 38px 0;
  background: #fffaf5;
  border: 1px solid rgba(200, 111, 77, 0.28);
  border-left: 5px solid var(--clay);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.callout.green {
  background: #eef4ed;
  border-color: rgba(35, 76, 60, 0.22);
  border-left-color: var(--sage-deep);
}

.callout h3,
.callout h4 {
  margin-top: 0;
}

.data-table-wrap {
  margin: 30px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.data-table th,
.data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--white);
  background: var(--sage-deep);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table td {
  font-size: 0.91rem;
}

.calculator {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(35, 76, 60, 0.09);
}

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

.result-box {
  display: none;
  padding: 24px;
  margin-top: 24px;
  background: var(--sage);
  border-radius: var(--radius-md);
}

.result-box.visible {
  display: block;
}

.result-box strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  padding: 23px 28px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  list-style: none;
}

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

.faq-item summary::after {
  float: right;
  color: var(--clay-dark);
  content: "+";
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-list {
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 20px;
}

.contact-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list address {
  color: var(--ink);
  font-size: 1rem;
  font-style: normal;
  text-decoration: none;
}

.site-footer {
  padding: 74px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: #102820;
}

.footer-grid {
  margin-bottom: 58px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}

.footer-about {
  max-width: 360px;
}

.site-footer .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer .brand-mark {
  color: var(--sage-dark);
  background: var(--sage);
}

.site-footer h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: inherit;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 550ms ease, transform 550ms ease;
}

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

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

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

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

@media (max-width: 1060px) {
  .menu-toggle {
    display: grid !important;
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 2;
    flex: 0 0 46px;
  }

  .nav-wrap {
    position: relative;
    padding-right: 62px;
  }

  .nav-wrap .brand {
    min-width: 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: auto;
    bottom: auto;
    left: 50%;
    display: flex;
    width: 100vw;
    height: calc(100dvh - 82px);
    padding: 30px 20px 50px;
    background: var(--paper);
    opacity: 0;
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav a {
    width: 100%;
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .main-nav a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    width: fit-content;
    padding-inline: 24px;
    margin-top: 22px;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 750;
  }

  .hero-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }

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

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

  .hero-image-wrap {
    inset: 10px 0 38px 80px;
  }

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

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

  .split {
    gap: 45px;
  }

  .article-layout {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 230px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: 100%;
    padding-inline: 24px;
  }

  .nav-wrap {
    min-height: 72px;
    padding-left: 24px;
    padding-right: 86px;
  }

  .menu-toggle {
    top: 13px;
    right: 24px;
  }

  .main-nav {
    top: 100%;
    height: calc(100dvh - 72px);
  }

  .hero {
    padding: 52px 0 68px;
  }

  .page-hero {
    padding: 58px 0 62px;
  }

  .hero-copy h1,
  .page-hero h1 {
    margin-bottom: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-notes {
    margin-top: 30px;
  }

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

  .hero-image-wrap {
    inset: 5px 0 35px 30px;
    border-radius: 110px 20px 20px 20px;
  }

  .floating-card {
    width: min(300px, 82%);
  }

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

  .trust-grid strong {
    grid-column: 1 / -1;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 36px;
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .cards-3,
  .split,
  .page-hero-grid,
  .article-layout,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 36px;
  }

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

  .article-layout {
    gap: 0;
  }

  .toc {
    position: relative;
    top: auto;
    margin-bottom: 45px;
    grid-row: 1;
  }

  .article-content {
    grid-row: 2;
  }

  .cta-panel {
    padding: 40px 30px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    padding-inline: 20px;
  }

  .nav-wrap {
    padding-left: 20px;
    padding-right: 78px;
  }

  .menu-toggle {
    right: 20px;
  }

  h1,
  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .brand-text {
    font-size: 1.07rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-actions .button,
  .hero-actions .button.ghost {
    width: 100%;
  }

  .hero-grid {
    display: block;
    width: 100%;
  }

  .hero {
    padding: 42px 0 60px;
  }

  .page-hero {
    padding: 46px 0 52px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy .lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1,
  .hero-copy .lead {
    overflow-wrap: break-word;
  }

  .hero-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    min-height: 390px;
    margin-top: 48px;
  }

  .hero-image-wrap {
    inset: 0 0 38px 10px;
    border-radius: 76px 18px 18px 18px;
  }

  .floating-card {
    padding: 17px;
  }

  .cards-3,
  .cards-4,
  .room-grid,
  .steps,
  .form-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid strong {
    grid-column: auto;
  }

  .room-card {
    min-height: 310px;
  }

  .page-hero {
    padding: 52px 0;
  }

  .page-hero-aside {
    padding: 20px;
  }

  .article-intro,
  .callout,
  .calculator,
  .quote-block {
    padding: 24px;
  }

  .article-content > section {
    margin-bottom: 52px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

  .footer-links a,
  .contact-list a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  h1,
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand {
    gap: 9px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .info-card,
  .step-card,
  .contact-card,
  .room-card {
    padding: 24px;
  }

  .cta-panel {
    padding: 32px 22px;
  }

  .cta-actions .button {
    width: 100%;
  }
}
