:root {
  --ivory: #fffdf8;
  --bone: #efede8;
  --linen: #ded6cc;
  --sand: #cdbba7;
  --brass: #5f7f55;
  --olive: #5f7f55;
  --olive-dark: #334034;
  --plum: #6a555d;
  --walnut: #805336;
  --chocolate: #3f2f34;
  --wood: #2c2520;
  --ink: #3f3034;
  --muted: #75656b;
  --line: rgba(106, 85, 93, 0.18);
  --shadow: 0 24px 70px rgba(63, 48, 52, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ivory);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid rgba(251, 248, 241, 0.18);
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  color: var(--chocolate);
  background: rgba(251, 248, 241, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
  height: 62px;
  min-width: 118px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark,
.site-footer .brand-logo-dark {
  display: block;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.header-link {
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a::after,
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.site-nav a:hover::after,
.header-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 120px;
  color: var(--ivory);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27, 17, 10, 0.82) 0%, rgba(27, 17, 10, 0.54) 42%, rgba(27, 17, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(27, 17, 10, 0.28) 0%, rgba(27, 17, 10, 0.12) 46%, rgba(27, 17, 10, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding-bottom: clamp(28px, 5vw, 62px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d9e4c9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: 78px;
}

h2 {
  margin-bottom: 0;
  font-size: 62px;
}

h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(251, 248, 241, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  background: var(--olive);
  color: var(--ivory);
  border-color: var(--olive);
}

.hero .button-primary,
.final-cta .button-primary {
  background: var(--ivory);
  color: var(--chocolate);
  border-color: var(--ivory);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(251, 248, 241, 0.62);
  background: rgba(251, 248, 241, 0.08);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(251, 248, 241, 0.18);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(880px, 100%);
  border: 1px solid rgba(251, 248, 241, 0.26);
  background: rgba(36, 23, 15, 0.38);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(251, 248, 241, 0.22);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.hero-panel p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 13px;
}

.intro {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.intro-copy {
  padding-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p + p {
  margin-top: 22px;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--bone);
}

.story-card {
  box-shadow: var(--shadow);
  background: var(--ivory);
}

.story-card img {
  aspect-ratio: 1.18 / 1;
}

.story-caption {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 0;
}

.story-caption p,
.story-text p {
  margin: 0;
  color: var(--muted);
}

.story-text h2 {
  margin-bottom: 24px;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.services {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.74);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: #fffdf8;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card span,
.process-step span {
  display: block;
  margin-bottom: 34px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

.pricing {
  background: var(--ivory);
}

.pricing-table {
  border-top: 2px solid rgba(106, 85, 93, 0.55);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) 110px minmax(280px, 1.2fr) minmax(160px, 0.54fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row:hover {
  background: linear-gradient(90deg, rgba(95, 127, 85, 0.07), rgba(239, 237, 232, 0));
}

.pricing-name {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.pricing-name span {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.pricing-name h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.pricing-time {
  color: var(--plum);
  font-size: 15px;
  font-weight: 700;
}

.pricing-row p {
  margin: 0;
  color: var(--muted);
}

.pricing-price {
  justify-self: end;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--wood);
  color: var(--ivory);
}

.benefits-image {
  height: clamp(580px, 58vw, 720px);
  align-self: center;
  overflow: hidden;
  background: transparent;
}

.benefits-image img {
  transform: scale(1.035);
  object-position: center;
}

.benefits-content h2 {
  margin-bottom: 34px;
}

.benefits-content .section-kicker {
  color: #d9e4c9;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(251, 248, 241, 0.16);
  color: rgba(251, 248, 241, 0.82);
}

.benefit-list li::before {
  content: "";
  position: relative;
  display: block;
  width: 20px;
  height: 1px;
  margin-top: 13px;
  background: #d9e4c9;
}

.process {
  background: var(--bone);
}

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

.process-step {
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(106, 85, 93, 0.16);
  background: rgba(255, 253, 248, 0.56);
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--olive);
  opacity: 0.8;
}

.process-step:hover {
  background: var(--ivory);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(63, 48, 52, 0.1);
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.1vw, 32px);
}

.process-step span {
  margin-bottom: 42px;
  color: var(--plum);
}

.audience {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  background: var(--ivory);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-item {
  min-height: 128px;
  display: flex;
  align-items: center;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.audience-item:hover {
  background: var(--chocolate);
  color: var(--ivory);
}

.founder {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: var(--bone);
}

.founder-photo {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.5);
  pointer-events: none;
}

.founder-photo img {
  object-position: center top;
}

.founder-content {
  max-width: 860px;
}

.founder-content h2 {
  margin-bottom: 12px;
  color: var(--chocolate);
}

.founder-role {
  margin-bottom: 28px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.founder-facts div {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.founder-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.founder-facts p,
.founder-text p {
  margin: 0;
  color: var(--muted);
}

.founder-text {
  display: grid;
  gap: 18px;
  max-width: 760px;
  font-size: 17px;
}

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

.testimonial-card {
  padding: clamp(30px, 5vw, 58px);
  background: var(--ivory);
  border: 1px solid var(--line);
}

blockquote {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.05;
}

cite {
  color: var(--muted);
  font-style: normal;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background: var(--ivory);
}

.faq-intro p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.faq-item {
  border: 1px solid var(--line);
  background: var(--bone);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
  background: #f1eee8;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 28px 64px 18px 28px;
  color: var(--chocolate);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--olive);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 64px 28px 28px;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(rgba(36, 23, 15, 0.88), rgba(36, 23, 15, 0.88)),
    url("./assets/home-staging-scandi-bedroom.jpg") center / cover;
  color: var(--ivory);
}

.final-cta .section-kicker {
  color: #d9e4c9;
}

.cta-content h2 {
  margin-bottom: 24px;
}

.cta-content > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(251, 248, 241, 0.78);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  color: rgba(251, 248, 241, 0.86);
}

.contact-lines a {
  width: fit-content;
  border-bottom: 1px solid rgba(251, 248, 241, 0.42);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: rgba(251, 248, 241, 0.09);
  border: 1px solid rgba(251, 248, 241, 0.22);
  backdrop-filter: blur(22px);
}

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

.contact-form span {
  color: rgba(251, 248, 241, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(251, 248, 241, 0.28);
  border-radius: 0;
  background: rgba(251, 248, 241, 0.1);
  color: var(--ivory);
  padding: 14px 14px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(251, 248, 241, 0.44);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d9e4c9;
  background: rgba(251, 248, 241, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #d9e4c9;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(251, 248, 241, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.form-note a {
  color: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid rgba(251, 248, 241, 0.32);
}

.form-status.is-error {
  color: #f0b8a8;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  color: var(--chocolate);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links a {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-page {
  background: var(--ivory);
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px clamp(20px, 5vw, 72px) 80px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-article {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: #fffdf8;
}

.legal-article h1 {
  color: var(--chocolate);
  font-size: 62px;
}

.legal-article h2 {
  margin: 38px 0 16px;
  color: var(--chocolate);
  font-size: 34px;
}

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

.legal-article ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.legal-updated {
  margin-bottom: 32px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 700;
}

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

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.5%, -1.2%, 0);
  }
}

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(251, 248, 241, 0.98);
    color: var(--chocolate);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-link {
    display: none;
  }

  .intro-grid,
  .visual-story,
  .benefits,
  .audience,
  .founder,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

  .pricing-row {
    grid-template-columns: minmax(220px, 0.9fr) 100px minmax(240px, 1fr);
  }

  .pricing-price {
    grid-column: 3;
    justify-self: start;
    color: var(--olive);
  }

  .benefits-image {
    height: clamp(460px, 72vw, 560px);
    width: min(100%, 620px);
    justify-self: center;
  }

  .founder-photo {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    width: 100px;
    height: 56px;
    min-width: 100px;
  }

  .section {
    padding-inline: 18px;
  }

  .hero {
    min-height: 96svh;
    padding-top: 118px;
  }

  .hero-inner {
    padding-top: 0;
    padding-bottom: 122px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(27, 17, 10, 0.48) 0%, rgba(27, 17, 10, 0.52) 35%, rgba(27, 17, 10, 0.86) 100%),
      linear-gradient(90deg, rgba(27, 17, 10, 0.64), rgba(27, 17, 10, 0.12));
  }

  .hero-media img {
    object-position: 56% center;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 28px;
  }

  .audience-item {
    font-size: 32px;
  }

  .founder-photo {
    min-height: 520px;
  }

  .founder-lead {
    font-size: 28px;
  }

  .founder-facts {
    grid-template-columns: 1fr;
  }

  blockquote {
    font-size: 34px;
  }

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

  .hero-panel,
  .section-top,
  .testimonials,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .hero-panel div + div {
    border-left: 0;
    border-top: 1px solid rgba(251, 248, 241, 0.22);
  }

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

  .pricing-table {
    display: grid;
    gap: 12px;
    border-top: 0;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.62);
  }

  .pricing-price {
    grid-column: auto;
    justify-self: start;
    width: 100%;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--line);
    color: var(--olive-dark);
  }

  .pricing-name {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 18px 18px 14px;
  }

  .pricing-name h3 {
    font-size: 19px;
  }

  .pricing-name span {
    font-size: 26px;
  }

  .pricing-time {
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    color: var(--plum);
    font-size: 14px;
  }

  .pricing-row p {
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.55;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .process-list {
    gap: 10px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 16px;
    padding: 20px;
  }

  .process-step::before {
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
  }

  .process-step span {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 30px;
  }

  .process-step h3 {
    margin: 0 0 8px;
    font-size: 25px;
  }

  .process-step p {
    font-size: 15px;
    line-height: 1.55;
  }

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

  .footer-links {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .section {
    padding-block: 68px;
  }

  .hero {
    padding-top: 122px;
    padding-bottom: 12px;
  }

  .hero-inner {
    padding-bottom: 124px;
  }

  .hero-copy,
  .cta-content > p,
  .intro-copy {
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  blockquote {
    font-size: 30px;
  }

  .founder-photo {
    min-height: 430px;
  }

  .founder-facts span {
    font-size: 36px;
  }

  .faq-item summary {
    padding: 22px 56px 14px 20px;
  }

  .faq-item summary::after {
    top: 18px;
    right: 20px;
  }

  .faq-item p {
    padding: 0 20px 22px;
    font-size: 16px;
  }

  .legal-article {
    padding: 24px 18px;
  }

  .legal-article h1 {
    font-size: 40px;
  }

  .legal-article h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }
}
