@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/roboto-slab-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --brown: #3e2b26;
  --brown-deep: #281e1c;
  --brown-soft: #5a413a;
  --gold: #e7b622;
  --gold-dark: #b78900;
  --cream: #f7f6f1;
  --cream-deep: #eee9df;
  --white: #fffefb;
  --text: #615d5b;
  --text-dark: #332b28;
  --line: rgba(62, 43, 38, 0.16);
  --shadow: 0 26px 70px rgba(62, 43, 38, 0.13);
  --radius-large: 30px;
  --radius-medium: 18px;
  --container: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Roboto Slab", Georgia, serif;
}

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

html {
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--cream);
  background-image: linear-gradient(rgba(247, 246, 241, 0.94), rgba(247, 246, 241, 0.94)), url("../images/paper-texture.jpg");
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: var(--brown-deep);
  background: var(--gold);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brown-deep);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 1120px;
  font-size: clamp(4rem, 5.8vw, 5rem);
}

h1 em {
  font-weight: 500;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.65rem;
}

p {
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.eyebrow span::before {
  margin: 0 8px 0 1px;
  color: var(--gold-dark);
  content: "•";
}

.eyebrow-light {
  color: rgba(255, 254, 251, 0.76);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--brown-deep);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: 0.78rem;
}

.button-outline {
  color: var(--brown);
  background: transparent;
  border-color: var(--brown);
}

.text-link {
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.text-link:hover {
  color: var(--gold-dark);
}

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

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

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(62, 43, 38, 0.06);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 185px;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 31px);
}

.primary-navigation > a:not(.button) {
  position: relative;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  min-width: 72px;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--brown);
  background: transparent;
  border: 1px solid var(--brown);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(60px, 6vw, 82px) 0 clamp(88px, 10vw, 150px);
}

.hero::before {
  position: absolute;
  top: 60px;
  right: -220px;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(231, 182, 34, 0.14), rgba(231, 182, 34, 0) 70%);
  pointer-events: none;
}

.hero-inner {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow,
.hero-copy .button-row {
  justify-content: center;
}

.hero-copy h1 {
  margin-bottom: 30px;
}

.hero-lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-note {
  margin-top: 23px;
  color: var(--brown-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: min(100%, 960px);
  min-height: 510px;
  margin: 46px auto 0;
  padding: 0 300px 55px 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 118px;
  width: 47%;
  height: 82%;
  content: "";
  border: 1px solid var(--gold);
  border-radius: var(--radius-large);
}

.hero-image-frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

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

.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  display: grid;
  gap: 14px;
  width: 355px;
  min-height: 330px;
  align-content: center;
  padding: 42px 40px;
  color: var(--text);
  background: var(--white);
  border-top: 5px solid var(--gold);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(40, 30, 28, 0.18);
}

.hero-card strong {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.12;
}

.hero-card span {
  color: var(--text);
  font-size: 0.84rem;
}

.hero-card-label {
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card .text-link {
  justify-self: start;
}

.trust-strip {
  color: var(--white);
  background: var(--brown);
}

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

.trust-item {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 31px 20px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 254, 251, 0.72);
  font-size: 0.77rem;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(52px, 9vw, 140px);
}

.rich-copy {
  display: grid;
  gap: 24px;
  padding-top: 45px;
  color: var(--text-dark);
  font-size: 1.08rem;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 650px;
  font-size: 1.05rem;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  min-height: 335px;
  padding: 38px 34px;
  background: rgba(255, 254, 251, 0.76);
  border: 1px solid rgba(62, 43, 38, 0.1);
  border-radius: var(--radius-medium);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-card:hover {
  border-color: rgba(231, 182, 34, 0.75);
  box-shadow: 0 18px 42px rgba(62, 43, 38, 0.09);
  transform: translateY(-5px);
}

.offer-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 29px;
  object-fit: contain;
}

.offer-card h3 {
  margin-bottom: 16px;
}

.offer-card p {
  font-size: 0.91rem;
}

.dark-cta {
  overflow: hidden;
  color: rgba(255, 254, 251, 0.78);
  background: var(--brown-deep);
}

.dark-cta-inner {
  display: grid;
  min-height: 590px;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1fr);
  gap: 70px;
}

.dark-cta-copy {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.dark-cta h2,
.contact-section h2 {
  margin-bottom: 28px;
  color: var(--white);
}

.dark-cta-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 34px;
}

.dark-cta picture {
  align-self: stretch;
}

.dark-cta picture img {
  width: calc(100% + 140px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 15%, black 100%);
  mask-image: linear-gradient(to right, transparent 0, black 15%, black 100%);
}

.founder-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 130px);
}

.founder-image {
  position: relative;
  padding: 22px 0 0 22px;
}

.founder-image::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 70%;
  height: 65%;
  content: "";
  border: 1px solid var(--gold);
  border-radius: 24px;
}

.founder-image img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: 190px 24px 24px 24px;
  box-shadow: var(--shadow);
}

.founder-copy h2 {
  margin-bottom: 30px;
}

.founder-copy > p:not(.eyebrow) {
  margin-top: 20px;
}

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

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  min-height: 286px;
  padding: 34px;
  background: rgba(255, 254, 251, 0.85);
  border: 1px solid rgba(62, 43, 38, 0.12);
  border-radius: var(--radius-medium);
}

.price-card-featured {
  border-color: var(--gold);
  box-shadow: inset 0 5px 0 var(--gold);
}

.price-label {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 57px;
  margin-bottom: 22px;
}

.price {
  display: flex;
  min-height: 48px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 17px;
}

.price strong {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.price span {
  font-size: 0.75rem;
}

.price-card > p:last-child {
  font-size: 0.86rem;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 26px 30px;
  background: rgba(231, 182, 34, 0.13);
  border-radius: 14px;
}

.price-note p {
  font-size: 0.88rem;
}

.price-note p a {
  color: var(--brown);
  font-weight: 800;
}

.reviews-section {
  position: relative;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  position: relative;
  min-height: 290px;
  margin: 0;
  padding: 48px 35px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 150px 150px 20px 20px;
  text-align: center;
}

.review-card::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  content: "“";
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 0.65;
}

.review-card blockquote {
  margin: 0 0 22px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}

.review-card figcaption {
  color: var(--brown);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-section {
  padding-top: 0;
}

.rental-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(42px, 6vw, 76px);
  background: var(--gold);
  border-radius: var(--radius-large);
}

.rental-inner > div {
  max-width: 740px;
}

.rental-inner h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
}

.rental-inner .eyebrow::before {
  background: var(--brown);
}

.contact-section {
  padding: clamp(90px, 11vw, 145px) 0;
  color: rgba(255, 254, 251, 0.74);
  background: var(--brown);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.75fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact-grid > div:first-child > p:last-child {
  max-width: 630px;
  font-size: 1.02rem;
}

.contact-actions {
  display: grid;
  align-content: center;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: padding-left 180ms ease, border-color 180ms ease;
}

.contact-link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-link:hover {
  padding-left: 14px;
  border-color: var(--gold);
}

.contact-link span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 550;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.site-footer {
  color: rgba(255, 254, 251, 0.62);
  background: var(--brown-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 72px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 205px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 270px;
  font-size: 0.82rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  font-size: 0.78rem;
  text-decoration: none;
}

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

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

/* Legal and utility pages */
.subpage-header {
  padding: clamp(72px, 9vw, 125px) 0 75px;
  text-align: center;
}

.subpage-header .eyebrow {
  justify-content: center;
}

.subpage-header h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 6rem);
}

.subpage-header p:last-child {
  max-width: 720px;
  margin: 25px auto 0;
  font-size: 1rem;
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(45px, 8vw, 100px);
  padding-bottom: clamp(90px, 12vw, 150px);
}

.legal-content {
  padding: clamp(32px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: 0 20px 60px rgba(62, 43, 38, 0.07);
}

.legal-content h2 {
  margin: 50px 0 20px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 34px 0 14px;
  font-size: 1.35rem;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p,
.legal-content ol + p {
  margin-top: 16px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.legal-content li::marker {
  color: var(--gold-dark);
  font-weight: 800;
}

.legal-content strong {
  color: var(--text-dark);
}

.legal-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
  padding: 25px;
  background: rgba(231, 182, 34, 0.14);
  border: 1px solid rgba(183, 137, 0, 0.24);
  border-radius: var(--radius-medium);
}

.legal-aside h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-aside p,
.legal-aside a:not(.button) {
  font-size: 0.78rem;
}

.utility-page {
  display: grid;
  min-height: calc(100vh - 86px);
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.utility-page h1 {
  margin-bottom: 25px;
}

.utility-page p {
  max-width: 620px;
  margin: 0 auto 32px;
}

@media (max-width: 1024px) {
  .offer-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-cta-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
    gap: 35px;
  }

  .footer-top {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 165px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-navigation {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 76px);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    align-items: stretch;
    padding: 28px 20px 38px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(62, 43, 38, 0.16);
  }

  .primary-navigation.is-open {
    display: grid;
    align-content: start;
    gap: 0;
  }

  .primary-navigation > a:not(.button) {
    padding: 17px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-navigation .button {
    margin-top: 24px;
  }

  .primary-navigation > a:not(.button)::after {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .intro-grid,
  .founder-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .hero-image-frame {
    aspect-ratio: 4 / 3;
    border-radius: 2px;
  }

  .rich-copy {
    padding-top: 0;
  }

  .dark-cta-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dark-cta-copy {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 80px 0 45px;
  }

  .dark-cta picture {
    height: 420px;
  }

  .dark-cta picture img {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 22%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0, black 22%, black 100%);
  }

  .founder-image {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .founder-image img {
    min-height: 480px;
  }

  .contact-grid {
    gap: 55px;
  }

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

  .legal-aside {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.8rem, 11.8vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 86px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
  }

  .hero-lead {
    margin-bottom: 28px;
  }

  .button-row {
    align-items: stretch;
    gap: 18px;
  }

  .hero-copy .button-row,
  .dark-cta .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: auto;
  }

  .hero-visual {
    width: calc(100% - 44px);
    min-height: 0;
    margin-top: 20px;
    padding: 0;
  }

  .hero-visual::before {
    top: -12px;
    right: -7px;
    width: 66%;
    height: 55%;
  }

  .hero-image-frame {
    aspect-ratio: 3 / 2;
    border-radius: 2px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 28px);
    min-height: 0;
    margin: -18px auto 0;
    padding: 30px 27px;
    border-top-width: 4px;
  }

  .hero-card strong {
    font-size: 1.7rem;
  }

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

  .trust-item {
    padding: 26px 12px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 84px 0;
  }

  .intro-grid {
    gap: 34px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .offer-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
    padding: 30px 28px;
  }

  .offer-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .dark-cta-copy {
    width: min(calc(100% - 28px), var(--container));
    padding-top: 76px;
  }

  .dark-cta picture {
    height: 340px;
  }

  .founder-grid {
    gap: 52px;
  }

  .founder-image {
    padding: 14px 0 0 14px;
  }

  .founder-image img {
    min-height: 400px;
    border-radius: 135px 20px 20px 20px;
  }

  .price-card {
    min-height: 0;
    padding: 30px 27px;
  }

  .price-card h3 {
    min-height: 0;
  }

  .price-note,
  .rental-inner {
    display: grid;
    gap: 28px;
  }

  .price-note {
    padding: 24px;
  }

  .review-card {
    min-height: 0;
  }

  .rental-section {
    padding-top: 0;
  }

  .rental-inner {
    padding: 42px 27px;
    border-radius: 22px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

  .subpage-header {
    padding: 58px 0 55px;
  }

  .subpage-header h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .legal-layout {
    gap: 26px;
  }

  .legal-content {
    padding: 29px 23px;
  }

  .legal-aside .button {
    width: 100%;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .legal-aside,
  .button,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .subpage-header {
    padding: 0 0 28px;
    text-align: left;
  }

  .subpage-header .eyebrow {
    justify-content: flex-start;
  }

  .legal-layout {
    display: block;
    padding: 0;
  }

  .legal-content {
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
