:root {
  --black: #11100d;
  --black-soft: #181612;
  --ink: #181611;
  --ivory: #f7f2e8;
  --ivory-deep: #ede3d1;
  --paper: #fbf8f1;
  --gold: #c6aa6d;
  --gold-deep: #8c764d;
  --line: rgba(24, 22, 17, 0.16);
  --white-line: rgba(247, 242, 232, 0.18);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --serif-display: Didot, "Bodoni 72", "Bodoni 72 Display", "Times New Roman", serif;
  --nav-size: clamp(0.72rem, 0.82vw, 0.98rem);
  --nav-weight: 500;
  --nav-spacing: 0.28em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 3.8vw, 48px) var(--gutter);
  color: var(--ivory);
  mix-blend-mode: normal;
}

.brand,
.nav-links a,
.proof-strip dt,
.hero-whatsapp {
  font-size: var(--nav-size);
  font-weight: var(--nav-weight);
  line-height: 1;
  letter-spacing: var(--nav-spacing);
  text-transform: uppercase;
}

.brand {
  justify-self: start;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 3.4vw, 54px);
  color: rgba(247, 242, 232, 0.78);
}

.nav-links a,
.brand {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.brand:hover {
  color: var(--gold);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: #030302;
}

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

.hero-media img {
  position: absolute;
  top: -12svh;
  left: 50%;
  width: auto;
  height: min(112svh, 1080px);
  max-width: none;
  opacity: 1;
  object-fit: contain;
  transform: translateX(-50%);
  filter: saturate(0.86) contrast(1.18) brightness(0.96);
  mask-image: radial-gradient(ellipse 58% 76% at 50% 48%, #000 50%, rgba(0, 0, 0, 0.86) 64%, transparent 88%);
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse 26% 48% at 50% 36%, rgba(247, 242, 232, 0.06), transparent 62%),
    linear-gradient(90deg, rgba(3, 3, 2, 0.96) 0%, rgba(3, 3, 2, 0.1) 42%, rgba(3, 3, 2, 0.16) 58%, rgba(3, 3, 2, 0.97) 100%),
    linear-gradient(180deg, rgba(3, 3, 2, 0.18) 0%, rgba(3, 3, 2, 0) 43%, rgba(3, 3, 2, 0.92) 100%);
}

.hero-frame {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: clamp(104px, 13vh, 150px) var(--gutter) clamp(34px, 5vh, 56px);
}

.hero-copy {
  align-self: end;
  width: min(1220px, 100%);
  min-width: 0;
}

.hero-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(5rem, 8.35vw, 10.05rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.58);
  white-space: nowrap;
}

.hero-line {
  width: min(820px, 100%);
  margin: clamp(10px, 1.3vh, 14px) 0 0;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: clamp(1.28rem, 1.42vw, 1.72rem);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.2vh, 34px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid rgba(247, 242, 232, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  color: var(--ivory);
}

.button.secondary:hover {
  border-color: var(--ivory);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  min-width: 0;
}

.proof-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(34px, 5.2vw, 84px);
  width: min(820px, 100%);
  min-height: 34px;
  margin: 0;
  padding: 0;
}

.proof-strip::before {
  display: none;
}

.proof-strip div {
  min-width: 0;
  padding: 0;
  background: transparent;
}

.proof-strip div + div {
  position: relative;
}

.proof-strip div + div::before {
  content: "";
  position: absolute;
  left: calc(clamp(34px, 5.2vw, 84px) / -2);
  top: 50%;
  width: 1px;
  height: 18px;
  background: var(--gold);
  transform: translateY(-50%);
}

.proof-strip dt {
  margin: 0;
  color: rgba(247, 242, 232, 0.88);
}

.proof-strip dd {
  display: none;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.hero-whatsapp img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.hero-whatsapp:hover {
  background: var(--gold);
  color: var(--black);
}

.section {
  padding: clamp(82px, 11vw, 148px) var(--gutter);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro,
.about {
  background: var(--paper);
}

.intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(3rem, 4.85vw, 5.25rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: var(--serif-display);
  font-size: clamp(1.75rem, 2vw, 2.32rem);
  font-weight: 400;
  line-height: 1.02;
}

.intro h2,
.section-heading h2,
.feature-copy h2,
.about-copy h2,
.contact h2 {
  font-size: clamp(3rem, 4.85vw, 5.25rem);
}

.intro-copy {
  color: rgba(24, 22, 17, 0.76);
  font-size: clamp(1.02rem, 1.34vw, 1.2rem);
}

.intro-copy p,
.about-copy p:not(.section-label),
.feature-copy p:not(.section-label) {
  margin: 0;
}

.intro-copy p + p,
.about-copy p:not(.section-label) + p {
  margin-top: 18px;
}

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

.section-heading {
  width: 100%;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.service-grid {
  --service-gap: 22px;
  --service-peek: 60px;
  --service-right-offset: 71px;
  display: grid;
  gap: var(--service-gap);
  overflow: visible;
}

.service-row {
  display: flex;
  align-items: stretch;
  gap: var(--service-gap);
  overflow-x: clip;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 0fr;
  flex: 0 0 calc((100% - var(--service-gap)) / 2);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.72);
  color: var(--ink);
  transition:
    background 220ms ease,
    color 220ms ease,
    grid-template-rows 260ms ease,
    min-height 260ms ease,
    flex-basis 260ms ease,
    margin-left 260ms ease;
}

.service-card.is-wide {
  flex-basis: calc(100% - var(--service-peek) - var(--service-gap));
  border-color: var(--gold-deep);
  background: var(--black);
  color: var(--ivory);
}

.service-card.is-closing {
  border-color: var(--line);
  background: rgba(251, 248, 241, 0.72);
  color: var(--ink);
}

.service-row.is-right-open .service-card:first-child {
  margin-left: calc(-50% + var(--service-right-offset));
}

.service-card.is-expanded {
  grid-template-rows: auto 1fr;
  min-height: 620px;
}

.service-card-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 310px;
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-card-icon {
  position: absolute;
  top: clamp(24px, 2.5vw, 34px);
  right: clamp(24px, 2.5vw, 34px);
  width: 24px;
  height: 24px;
  color: var(--gold-deep);
  transition: color 220ms ease, transform 260ms ease;
}

.service-card-icon::before,
.service-card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.service-card-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-card.is-wide .service-card-icon {
  color: var(--gold);
  transform: rotate(45deg);
}

.service-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(560px, calc(100% - 42px));
  gap: 0;
}

.service-card.is-wide .service-card-copy {
  width: min(920px, calc(100% - 42px));
}

.service-card-number {
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card.is-wide .service-card-number {
  color: var(--gold);
}

.service-card-copy strong {
  max-width: 500px;
  min-height: 2em;
  margin-top: 34px;
  font-family: var(--serif-display);
  font-size: clamp(2rem, 2.8vw, 3.15rem);
  font-weight: 400;
  line-height: 1;
}

.service-card-summary {
  max-width: 510px;
  min-height: 4.5em;
  margin-top: 18px;
  color: rgba(24, 22, 17, 0.68);
  font-size: clamp(0.96rem, 1.08vw, 1.1rem);
  line-height: 1.5;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 170ms ease, transform 190ms ease;
}

.service-card.is-wide .service-card-summary {
  max-width: 760px;
  color: rgba(247, 242, 232, 0.74);
}

.service-card.is-wide:not(.is-expanded) .service-card-summary,
.service-card.is-opening .service-card-summary,
.service-card.is-closing .service-card-summary {
  opacity: 0;
  transform: translateY(12px);
}

.service-card-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  min-height: 0;
  padding: 0 clamp(26px, 3vw, 40px);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: opacity 180ms ease 120ms, transform 200ms ease 120ms;
}

.service-card.is-expanded:not(.is-opening):not(.is-closing) .service-card-details {
  padding-bottom: clamp(28px, 3vw, 42px);
  opacity: 1;
  transform: translateY(0);
}

.service-card.is-closing .service-card-details {
  opacity: 0;
  transform: translateY(12px);
}

.service-detail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 242, 232, 0.26);
}

.service-detail > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail p {
  margin: 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: 0.88rem;
  line-height: 1.52;
}

.service-detail > strong {
  color: var(--ivory);
  font-family: var(--serif-display);
  font-size: clamp(1.32rem, 1.6vw, 1.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.service-detail-price strong {
  color: var(--ivory);
  font-family: var(--serif-display);
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 820px;
  color: var(--ivory);
  background: var(--black);
}

.feature-image {
  min-height: 560px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: grayscale(1) contrast(1.08);
}

.feature-copy {
  align-self: center;
  padding: clamp(70px, 8.8vw, 124px) var(--gutter);
}

.feature-copy h2 {
  max-width: 720px;
}

.feature-copy > p:not(.section-label) {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(247, 242, 232, 0.74);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
}

.feature-list {
  display: grid;
  width: min(560px, 100%);
  margin-top: 48px;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.feature-list p {
  display: flex;
  align-items: center;
  height: 72px;
  margin: 0;
  padding: 0;
  color: rgba(247, 242, 232, 0.86);
}

.feature-list p:not(:last-child) {
  border-bottom: 1px solid var(--white-line);
}

.portrait-stack {
  position: relative;
  min-height: clamp(520px, 60vw, 720px);
}

.portrait-main,
.portrait-secondary {
  position: absolute;
  object-fit: cover;
  background: var(--black);
}

.portrait-main {
  top: 0;
  left: 0;
  width: min(72%, 430px);
  aspect-ratio: 0.72;
  object-position: 50% 28%;
}

.portrait-secondary {
  right: 0;
  bottom: 0;
  width: min(46%, 290px);
  aspect-ratio: 0.72;
  object-position: 50% 26%;
  border: 10px solid var(--paper);
}

.about-copy {
  align-self: center;
}

.about-copy p:not(.section-label) {
  max-width: 590px;
  color: rgba(24, 22, 17, 0.72);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
}

.about-copy h2 {
  margin-bottom: 28px;
}

.contact {
  color: var(--ivory);
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact h2 {
  line-height: 1.05;
}

.contact-actions {
  display: grid;
  gap: 0;
}

.contact-link {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 64px;
  padding: 0 0;
  border-bottom: 1px solid var(--white-line);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-link:first-child {
  border-top: 1px solid var(--white-line);
}

.contact-link:hover {
  color: var(--gold);
  border-color: rgba(198, 170, 109, 0.48);
}

.contact-link span {
  color: var(--gold);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link strong {
  min-width: 0;
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow-wrap: normal;
}

.contact-link:hover strong {
  color: var(--gold);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px var(--gutter);
  color: rgba(247, 242, 232, 0.7);
  background: var(--black);
  font-size: 0.82rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }

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

  .nav-links {
    display: none;
  }

  .brand {
    position: relative;
    z-index: 80;
  }

  .menu-toggle {
    position: relative;
    z-index: 80;
    display: block;
    justify-self: end;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ivory);
    appearance: none;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 6px));
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 6px));
  }

  .menu-toggle[aria-expanded="true"]::before {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    min-height: 100svh;
    padding: calc(88px + env(safe-area-inset-top)) 24px
      calc(44px + env(safe-area-inset-bottom));
    background:
      linear-gradient(rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.96)),
      url("assets/studio-white-jacket.jpeg") 50% 18% / auto 82% no-repeat;
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .mobile-nav-links a {
    margin-block: 10px;
    color: var(--ivory);
    font-family: var(--serif-display);
    font-size: clamp(2.25rem, 8vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
  }

  .mobile-nav-links a:hover {
    color: var(--gold);
  }

  .mobile-nav-contact {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .menu-toggle:focus-visible,
  .mobile-nav a:focus-visible {
    outline: 1px solid rgba(247, 242, 232, 0.58);
    outline-offset: 3px;
  }

  .hero-media img {
    top: 7svh;
    left: 50%;
    height: min(72svh, 680px);
    transform: translateX(-50%);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 16, 13, 0.94), rgba(17, 16, 13, 0.48) 50%, rgba(17, 16, 13, 0.94)),
      linear-gradient(180deg, rgba(17, 16, 13, 0.12), rgba(17, 16, 13, 0.26) 42%, rgba(17, 16, 13, 0.95));
  }

  .proof-strip {
    gap: 28px;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-whatsapp {
    justify-self: start;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-row {
    overflow-x: visible;
  }

  .service-row.is-right-open .service-card:first-child {
    margin-left: 0;
  }

  .service-card,
  .service-card.is-wide,
  .service-card.is-expanded {
    min-height: auto;
    flex-basis: auto;
  }

  .service-card {
    grid-template-rows: auto 0fr;
  }

  .service-card.is-expanded {
    grid-template-rows: auto 1fr;
  }

  .service-card-toggle {
    min-height: 330px;
  }

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

  .feature-band {
    min-height: 0;
  }

  .feature-image {
    min-height: 540px;
  }

  .feature-copy {
    padding-top: 78px;
    padding-bottom: 86px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand,
  .nav-links a {
    font-size: 0.66rem;
  }

  .hero-media img {
    top: 4svh;
    left: 50%;
    height: 52svh;
    transform: translateX(-50%);
  }

  .hero-shade {
    background: transparent;
  }

  .hero-frame {
    grid-template-rows: 1fr auto;
    padding-top: 76px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15.2vw, 4.8rem);
    line-height: 0.86;
    white-space: normal;
  }

  .hero-line {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    min-height: 32px;
  }

  .proof-strip div {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 10px;
  }

  .proof-strip div:first-child {
    padding-left: 0;
  }

  .proof-strip div:last-child {
    padding-right: 0;
  }

  .proof-strip div + div::before {
    display: none;
  }

  .proof-strip div + div {
    border-left: 1px solid var(--gold);
  }

  .proof-strip dt {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
  }

  .hero-whatsapp {
    width: 100%;
    height: 52px;
    min-height: 52px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  h2 {
    font-size: clamp(2.38rem, 13vw, 3.8rem);
  }

  .feature-image {
    min-height: 430px;
  }

  .feature-list p {
    height: auto;
    min-height: 72px;
    padding: 20px 0;
  }

  .service-card-toggle {
    min-height: 350px;
    padding: 24px 20px;
  }

  .service-card-copy strong {
    min-height: 2em;
    margin-top: 28px;
    font-size: 2.1rem;
  }

  .service-card-summary {
    font-size: 0.94rem;
  }

  .service-card-details {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 20px;
  }

  .service-card.is-expanded:not(.is-opening):not(.is-closing) .service-card-details {
    padding-bottom: 24px;
  }

  .portrait-stack {
    min-height: auto;
  }

  .portrait-main {
    position: relative;
    width: min(78%, 320px);
  }

  .portrait-secondary {
    display: none;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-link strong {
    font-size: 0.72rem;
    white-space: normal;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-kicker,
  .section-label {
    font-size: 0.67rem;
  }

  .proof-strip dd {
    font-size: 0.78rem;
  }
}

@media (max-width: 350px) {
  .proof-strip div {
    padding-right: 7px;
    padding-left: 7px;
  }
}
