:root {
  --bg: #f3eee5;
  --bg-soft: #faf6ef;
  --paper: rgba(255, 252, 246, 0.82);
  --paper-strong: #fffaf4;
  --ink: #2f322d;
  --muted: #62675f;
  --line: rgba(62, 90, 65, 0.14);
  --olive: #3e5a41;
  --terracotta: #a0715a;
  --shadow: 0 28px 80px rgba(53, 62, 49, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(238, 211, 188, 0.65), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(176, 192, 161, 0.32), transparent 26%),
    linear-gradient(180deg, #f9f4ee 0%, #f2ebe3 56%, #eee7de 100%);
}

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

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

.page-shell {
  padding: clamp(14px, 2vw, 24px);
  overflow-x: clip;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px 12px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(251, 246, 240, 0.62);
  box-shadow: 0 12px 28px rgba(53, 62, 49, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #fff4e7 0%, #fff4e7 22%, transparent 24%),
    linear-gradient(135deg, var(--terracotta), #d9b28b);
  box-shadow: 0 0 0 7px rgba(255, 249, 241, 0.9);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.25rem;
  color: var(--muted);
}

.brand-text strong {
  color: var(--ink);
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 1.2rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 251, 246, 0.9);
  box-shadow: 0 8px 18px rgba(53, 62, 49, 0.08);
  color: var(--ink);
}

.section {
  margin-top: clamp(26px, 3vw, 36px);
  opacity: 1;
  transform: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: clamp(14px, 2.2vw, 24px);
  align-items: center;
  padding-top: clamp(14px, 2.2vw, 24px);
}

.hero-copy,
.hero-visual,
.split-copy,
.gallery-copy,
.format-copy,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.50rem;
  color: var(--olive);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.85rem, 4.6vw, 5rem);
  max-width: none;
  line-height: 1.01;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  max-width: 18ch;
  line-height: 1.03;
}

h3 {
  font-size: 1.7rem;
}

p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}

.hero-lead {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #3e5a41, #58715c);
  color: #fffaf5;
  box-shadow: 0 12px 26px rgba(62, 90, 65, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.76);
  color: var(--ink);
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-facts li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-photo-card {
  width: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 550px;
  max-height: 620px;
  object-fit: cover;
  object-position: center center;
}

.floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 248, 240, 0.94);
  border: 1px solid rgba(89, 72, 52, 0.12);
  box-shadow: 0 18px 34px rgba(74, 54, 33, 0.16);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--terracotta);
}

.floating-note strong {
  line-height: 1.4;
  font-size: 1.25rem;
}

.intro-card,
.format-panel,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(252, 247, 239, 0.76));
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.intro-band > .eyebrow {
  margin: 0;
  text-align: center;
}

.intro-band .intro-card {
  width: 100%;
}

.section-eyebrow {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 0;
}

.intro-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 194, 161, 0.3), transparent 65%);
  pointer-events: none;
}

.intro-quote {
  max-width: none;
  font-family: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  justify-items: center;
  text-align: center;
}

.section-head.compact {
  gap: 8px;
  margin-bottom: 16px;
}

.requests-head {
  gap: 6px;
}

.requests-head .eyebrow {
  margin-bottom: 0;
}

.section-head h2 + p {
  max-width: 75ch;
}

.section-head h2,
.split-copy h2,
.gallery-copy h2,
.contact-copy h2,
.format-copy h2 {
  max-width: none;
  text-wrap: balance;
}

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

.request-card,
.credential-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.72);
  backdrop-filter: blur(10px);
  min-height: 220px;
}

.request-card h3,
.credential-card h3 {
  margin-bottom: 12px;
}

.accent-card {
  background: linear-gradient(180deg, rgba(117, 124, 101, 0.12), rgba(170, 109, 79, 0.08));
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.approach-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.approach-photo {
  width: min(100%, 560px);
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy {
  display: grid;
  gap: 18px;
}

.split-copy .eyebrow,
.contact-copy .eyebrow {
  width: 100%;
  text-align: left;
}

.about-section {
  align-items: center;
  row-gap: 12px;
  column-gap: clamp(24px, 4vw, 42px);
}

.about-visual {
  display: flex;
  justify-content: flex-start;
  padding-left: clamp(24px, 2vw, 36px);
}

.about-photo-card {
  width: min(100%, 620px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 680px;
  object-fit: cover;
  object-position: center center;
}

.soft-principles div {
  background: rgba(255, 248, 241, 0.78);
}

.principles {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.principles div {
  padding: 18px 20px;
  border-left: 3px solid rgba(110, 117, 96, 0.55);
  background: rgba(255, 252, 248, 0.7);
  border-radius: 0 18px 18px 0;
}

.principles strong {
  display: block;
  margin-bottom: 6px;
}

.credential-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110, 117, 96, 0.1);
  color: var(--olive);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.docs-section {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.docs-section > * {
  min-width: 0;
}

.docs-head {
  gap: 8px;
  margin-bottom: 12px;
}

.docs-head .eyebrow {
  margin-bottom: 2px;
}

.docs-head h2 {
  margin-bottom: 2px;
}

.docs-head h2 + p {
  max-width: 84ch;
}

.docs-carousel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.docs-stage {
  position: relative;
  min-width: 0;
}

.docs-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  min-width: 0;
}

.docs-viewport::-webkit-scrollbar {
  display: none;
}

.docs-track {
  display: flex;
  min-width: 0;
}

.doc-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: block;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(249, 244, 237, 0.84));
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.doc-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  min-width: 0;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(62, 90, 65, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.doc-frame img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(53, 62, 49, 0.12);
}

.doc-frame-portrait {
  min-height: 560px;
}

.doc-frame-landscape {
  min-height: 360px;
}

.docs-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62, 90, 65, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(53, 62, 49, 0.12);
  z-index: 3;
}

.docs-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.docs-nav-prev {
  left: 14px;
}

.docs-nav-next {
  right: 14px;
}

.docs-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  scrollbar-width: none;
}

.docs-thumbs::-webkit-scrollbar {
  display: none;
}

.doc-thumb {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(62, 90, 65, 0.12);
  background: rgba(255, 252, 247, 0.84);
  text-align: left;
  color: var(--ink);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.doc-thumb:hover,
.doc-thumb:focus-visible,
.doc-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(62, 90, 65, 0.3);
  box-shadow: 0 14px 28px rgba(53, 62, 49, 0.1);
}

.doc-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.doc-thumb span {
  font-size: 1.25rem;
  line-height: 1.35;
}

.format-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.format-section,
.contact-section {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.format-section .format-panel,
.contact-section .contact-card {
  width: 100%;
}

.format-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.format-copy h2 {
  margin-bottom: 8px;
}

.format-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.format-list div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid var(--line);
}

.format-list dt {
  font-weight: 700;
  color: var(--ink);
}

.format-list dd {
  margin: 0;
  color: var(--muted);
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
}

.gallery-copy {
  display: grid;
  gap: 16px;
}

.gallery-copy h2 {
  max-width: none;
  margin-bottom: 14px;
}

.gallery-visual {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  width: 100%;
  padding-left: clamp(28px, 2.2vw, 40px);
}

.gallery-stack {
  position: relative;
  width: min(100%, 620px);
  min-height: 560px;
}

.gallery-tall {
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid rgba(255, 252, 247, 0.92);
  box-shadow: 0 18px 34px rgba(53, 62, 49, 0.16);
}

.gallery-support,
.contact-support {
  max-width: 60ch;
}

.contact-support {
  margin: 0 auto;
}

.contact-card {
  display: grid;
  gap: 22px;
}

.contact-copy {
  display: grid;
  gap: 14px;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.contact-copy h2 {
  max-width: none;
  margin-bottom: 14px;
}

.contact-actions {
  justify-content: center;
  align-items: center;
}

.contact-note,
.footer-note {
  color: var(--muted);
  font-size: 1.25rem;
}

.contact-note {
  max-width: 42rem;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.78);
  border: 1px solid var(--line);
  text-align: center;
}

.contact-note code,
.footer-note code {
  padding: 0.14rem 0.42rem;
  border-radius: 0.45rem;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 1.25em;
}

.button.is-disabled {
  opacity: 0.52;
  pointer-events: none;
}

.site-footer {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding: 26px 0 10px;
  border-top: 1px solid rgba(62, 90, 65, 0.14);
  text-align: center;
}

.site-footer > p:first-child {
  color: var(--ink);
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--ink);
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(44, 41, 37, 0.24);
  text-underline-offset: 3px;
}

.policy-body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(238, 211, 188, 0.42), transparent 30%),
    linear-gradient(180deg, #faf6f0 0%, #f1e9de 100%);
}

.policy-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 24px 44px;
}

.policy-header {
  display: grid;
  gap: 16px;
  padding: 12px 0 24px;
}

.policy-back {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.88);
  color: var(--ink);
}

.policy-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow);
}

.policy-meta {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 241, 0.78);
  border: 1px solid var(--line);
}

.policy-section {
  display: grid;
  gap: 10px;
}

.policy-section h2 {
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  max-width: none;
}

.policy-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.policy-list li + li {
  margin-top: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .request-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header {
    position: static;
  }

  .hero,
  .split-section,
  .gallery-section,
  .format-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split-copy,
  .format-copy {
    max-width: 720px;
  }

  .hero-visual,
  .about-visual,
  .gallery-visual,
  .gallery-copy {
    max-width: 720px;
    width: 100%;
  }

  .about-visual {
    justify-content: center;
    padding-left: 0;
  }

  .hero-visual,
  .approach-visual {
    justify-content: center;
  }

  .hero-photo-card {
    max-width: 640px;
  }

  .approach-visual {
    max-width: 720px;
  }

  .approach-photo {
    width: 100%;
    max-width: 720px;
  }

  .doc-slide {
    padding: 24px;
  }

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

  .doc-frame-portrait {
    min-height: 500px;
  }
}

@media (max-width: 780px) {
  .page-shell {
    padding: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 18px 18px;
    border-radius: 30px;
  }

  .site-header::before {
    inset: 0;
    border-radius: 30px;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-mark {
    box-shadow: 0 0 0 5px rgba(255, 249, 241, 0.9);
  }

  .brand-text {
    align-items: center;
    gap: 6px;
    font-size: 1.02rem;
  }

  .brand-text > span {
    line-height: 1.28;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px 18px;
    font-size: 1.04rem;
  }

  .policy-shell {
    padding: 20px 16px 36px;
  }

  .policy-card {
    padding: 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.3rem);
    line-height: 0.98;
  }

  h2,
  .gallery-copy h2,
  .contact-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero {
    padding-top: 12px;
    row-gap: 12px;
  }

  h1,
  h2,
  h3,
  .intro-quote {
    overflow-wrap: break-word;
  }

  .intro-quote {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

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

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

  .hero-facts li {
    text-align: center;
  }

  .hero-copy,
  .section-head,
  .split-copy,
  .gallery-copy,
  .format-copy,
  .contact-copy,
  .intro-card,
  .gallery-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .split-copy,
  .gallery-copy,
  .format-copy,
  .contact-copy,
  .section-head,
  .intro-card {
    justify-items: center;
    text-align: center;
  }

  .hero-copy > p,
  .split-copy > p,
  .gallery-copy > p,
  .format-copy > p,
  .contact-copy > p,
  .section-head > p {
    margin-inline: auto;
    max-width: 34rem;
  }

  .split-copy .eyebrow,
  .contact-copy .eyebrow {
    text-align: center;
  }

  .split-copy h2,
  .gallery-copy h2,
  .format-copy h2,
  .contact-copy h2,
  .hero-copy h1 {
    margin-inline: auto;
  }

  .gallery-visual {
    padding-left: 0;
  }

  .gallery-stack {
    width: 100%;
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .gallery-tall,
  .gallery-overlay {
    width: 100%;
    max-width: none;
  }

  .gallery-overlay {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .floating-note {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  .request-grid,
  .credential-grid,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .approach-photo {
    aspect-ratio: 4 / 5;
    max-width: none;
  }

  .request-card,
  .credential-card {
    min-height: auto;
  }

  .doc-slide {
    padding: 22px;
  }

  .doc-frame,
  .doc-frame-portrait,
  .doc-frame-landscape {
    min-height: auto;
  }

  .doc-copy h3 {
    font-size: clamp(1.55rem, 5vw, 2rem);
  }

  .docs-nav {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }

  .docs-nav-prev {
    left: 10px;
  }

  .docs-nav-next {
    right: 10px;
  }

  .docs-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
  }

  .doc-thumb {
    flex: 0 0 190px;
  }

  .format-list div {
    grid-template-columns: 1fr;
  }

  .gallery-tall {
    width: 100%;
    min-height: 420px;
    max-height: 620px;
  }

  .intro-card,
  .format-panel,
  .contact-card,
  .policy-card {
    padding: 22px;
  }

  .nav-cta {
    width: auto;
    margin: 2px auto 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 12px;
  }

  .site-header {
    gap: 12px;
    padding: 14px 16px 16px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand-text strong {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

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

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .intro-quote {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    font-size: 0.94rem;
    line-height: 1.2;
    text-align: center;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .nav-cta {
    flex-basis: 100%;
    width: fit-content;
    margin-top: 2px;
    padding: 10px 18px;
  }

  .hero-photo-card {
    border-radius: 30px;
  }

  .hero-visual {
    display: block;
  }

  .hero {
    column-gap: 22px;
    row-gap: 12px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(1.32rem, 5.9vw, 1.8rem);
    line-height: 1.08;
  }

  h2,
  .gallery-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.7rem, 8.2vw, 2.3rem);
  }

  .request-card,
  .credential-card,
  .policy-meta,
  .contact-note {
    padding: 20px;
  }

  .doc-slide {
    gap: 18px;
    padding: 16px;
  }

  .doc-frame {
    padding: 10px;
    border-radius: 22px;
  }

  .docs-nav {
    width: 38px;
    height: 38px;
    margin-top: -19px;
  }

  .doc-thumb {
    flex-basis: 168px;
  }

}

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

  .section {
    animation: none;
  }

  .button {
    transition: none;
  }
}
