:root {
  --bg: #eef3f0;
  --bg-deep: #e2ebe6;
  --ink: #1a2a23;
  --ink-soft: #3d5248;
  --muted: #5f7368;
  --accent: #2f5d4a;
  --accent-hover: #244a3b;
  --line: rgba(26, 42, 35, 0.12);
  --surface: rgba(255, 255, 255, 0.62);
  --hero-glow: #c5d9ce;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
  --narrow: 680px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 8vw, 5.2rem);
  margin: 0.15em 0 0.25em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.muted {
  color: var(--muted);
}

.section-lead {
  color: var(--muted);
  margin: -0.25rem 0 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  touch-action: manipulation;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

a.btn.btn-primary,
a.btn.btn-primary:visited {
  color: #fff;
  text-decoration: none;
}

a.btn.btn-primary:hover {
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  border-color: rgba(26, 42, 35, 0.18);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: max(1rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right))
    1rem max(1.25rem, env(safe-area-inset-left));
  background: rgba(238, 243, 240, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(238, 243, 240, 0.94);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--ink) !important;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  margin: 0.35rem auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero — full-bleed atmosphere + portrait */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(3rem, 8vh, 5rem);
  overflow: hidden;
  color: #f4f8f6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
  filter: saturate(0.85) brightness(0.72);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      285deg,
      rgba(12, 28, 32, 0.78) 0%,
      rgba(12, 28, 32, 0.52) 48%,
      rgba(12, 28, 32, 0.35) 100%
    ),
    linear-gradient(to top, rgba(12, 28, 32, 0.62), transparent 50%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-1.5%, 1%);
  }
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-bottom: clamp(1rem, 4vh, 2.5rem);
  animation: riseIn 1s var(--ease) both;
}

.brand-mark {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9ddd2;
  margin: 0;
}

.hero h1 {
  color: #f7fbf8;
}

.hero-lead {
  max-width: 28ch;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 300;
  color: rgba(244, 248, 246, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .btn-ghost {
  color: #f4f8f6;
  border-color: rgba(244, 248, 246, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  animation: riseIn 1.15s var(--ease) 0.12s both;
}

.hero-photo {
  width: min(100%, 400px);
  margin-left: auto;
  margin-right: clamp(-0.5rem, 1vw, 1.25rem);
  align-self: end;
}

.photo-frame.hero-photo {
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.photo-frame.hero-photo img {
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: radial-gradient(
    ellipse 92% 96% at 58% 86%,
    #000 52%,
    rgba(0, 0, 0, 0.92) 64%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.15) 92%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 92% 96% at 58% 86%,
    #000 52%,
    rgba(0, 0, 0, 0.92) 64%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.15) 92%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  filter: saturate(0.95) brightness(1.02);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Photo frames */
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(160deg, #d5e3db, #b8cbc1);
  box-shadow: 0 30px 60px rgba(18, 32, 26, 0.25);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame:not(.has-photo) img.portrait {
  display: none;
}

.photo-frame.has-photo .photo-placeholder {
  display: none;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--ink-soft);
  padding: 1.5rem;
}

.photo-placeholder span {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.photo-placeholder small {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.photo-placeholder code {
  font-size: 0.8rem;
}

/* Pillars */
.pillars {
  padding: clamp(1.75rem, 3.5vh, 2.25rem) 0 0;
  background: linear-gradient(180deg, #f5f8f6, var(--bg));
}

.pillars + .split-band {
  margin-top: clamp(1rem, 2vh, 1.5rem);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.pillar h2 {
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 28ch;
}

.contact-city {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* Split band with stock photo */
.split-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: min(54vh, 520px);
}

.split-image {
  margin: 0;
  min-height: 300px;
  height: 100%;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #e7efe9;
}

.split-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 34ch;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vh, 6.5rem) 0;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.offer-aside {
  margin: 0;
  position: sticky;
  top: 5.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 70vh;
}

.offer-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

/* Accordion */
.acc-group + .acc-group {
  margin-top: 2rem;
}

.acc-label {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: center;
  color: var(--ink);
  margin: 0 0 1rem;
}

.acc-item {
  border-top: 1px solid var(--line);
}

.acc-item:last-child {
  border-bottom: 1px solid var(--line);
}

.acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.acc-item summary::-webkit-details-marker {
  display: none;
}

.acc-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}

.acc-item[open] summary::after {
  content: "–";
}

.acc-item summary:hover {
  color: var(--accent);
}

.acc-body {
  padding: 0 0 1.25rem;
}

.acc-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* Quote / first meeting band */
.quote-band {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 12vh, 8rem) 0;
  color: #f4f8f6;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.55);
  transform: scale(1.03);
}

.quote-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 26, 0.45),
    rgba(18, 32, 26, 0.62)
  );
}

.quote-inner .eyebrow {
  color: #c9ddd2;
}

.quote-inner h2 {
  color: #f7fbf8;
}

.quote-inner p:last-child {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 300;
  color: rgba(244, 248, 246, 0.9);
  max-width: 42ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.about-photo {
  aspect-ratio: 4 / 5;
  max-width: 400px;
  box-shadow: 0 24px 50px rgba(26, 42, 35, 0.12);
}

.about-copy p {
  color: var(--ink-soft);
}

.about-highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
}

.about-highlights li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.credentials {
  display: grid;
  gap: 0.65rem;
}

.cred-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.cred-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cred-panel summary::-webkit-details-marker {
  display: none;
}

.cred-panel summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--accent);
}

.cred-panel[open] summary::after {
  content: "–";
}

.cred-panel ul,
.cred-panel p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cred-panel ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.cred-panel li {
  position: relative;
  padding-left: 1rem;
}

.cred-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.pricing {
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(47, 93, 74, 0.06),
    transparent
  );
}

.price-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:first-child {
  border-top: 1px solid var(--line);
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.price-time {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-amount {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent);
}

.pricing-note {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-info address {
  font-style: normal;
  margin: 1.25rem 0;
}

.contact-info a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}

.contact-info a:not(.btn):hover {
  color: var(--accent);
}

.contact-info a.btn.btn-primary,
.contact-info a.btn.btn-primary:visited,
.contact-info a.btn.btn-primary:hover {
  color: #fff;
  text-decoration: none;
}

.hours-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.map-wrap {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}

.site-footer {
  padding: 2rem max(1.25rem, env(safe-area-inset-right)) max(2.5rem, env(safe-area-inset-bottom))
    max(1.25rem, env(safe-area-inset-left));
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(1.5rem, 4vh, 2rem) max(1rem, env(safe-area-inset-right))
      clamp(2rem, 5vh, 3rem) max(1rem, env(safe-area-inset-left));
    padding-top: max(1.25rem, env(safe-area-inset-top));
    text-align: center;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(12, 28, 32, 0.82) 0%,
        rgba(12, 28, 32, 0.68) 45%,
        rgba(12, 28, 32, 0.55) 100%
      ),
      linear-gradient(to top, rgba(12, 28, 32, 0.65), transparent 55%);
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-lead {
    max-width: 36ch;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 11.5rem);
    max-width: 100%;
  }

  .hero-photo {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .photo-frame.hero-photo img {
    -webkit-mask-image: radial-gradient(
      ellipse 94% 96% at 50% 88%,
      #000 54%,
      rgba(0, 0, 0, 0.5) 82%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 94% 96% at 50% 88%,
      #000 54%,
      rgba(0, 0, 0, 0.5) 82%,
      transparent 100%
    );
  }

  .section {
    padding: clamp(2.75rem, 7vh, 4rem) 0;
  }

  .split-band,
  .offer-layout,
  .about-grid,
  .contact-grid,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    gap: clamp(1rem, 3vw, 1.75rem);
  }

  .pillar p {
    max-width: none;
  }

  .split-copy p:last-child {
    max-width: none;
  }

  .offer-aside {
    position: static;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .about-photo {
    max-width: min(100%, 320px);
    margin-inline: auto;
  }

  .about-grid {
    text-align: left;
  }

  .split-band {
    min-height: 0;
  }

  .split-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem max(1.25rem, env(safe-area-inset-right)) 1.25rem
      max(1.25rem, env(safe-area-inset-left));
    background: rgba(238, 243, 240, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    max-height: calc(100dvh - 4rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem 0;
    min-height: 2.75rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .container.narrow {
    width: min(100% - 1.5rem, var(--narrow));
  }

  .price-list li {
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
  }

  .price-amount {
    margin-left: auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pillar p {
    max-width: 42ch;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.15rem;
    line-height: 1.25;
    max-width: 12rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .acc-item summary,
  .cred-panel summary {
    min-height: 3rem;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .contact-info h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-lead {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg img,
  .hero-content,
  .hero-visual,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
