@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600;1,700&display=swap");

:root {
  --paper: #f4f1e7;
  --card: #fcfaf3;
  --ink: #163e27;
  --ink-soft: #52705a;
  --line: #c8d0bd;
  --leaf: #d4e6bc;
  --lime: #82c72d;
  --lime-light: #b6e55d;
  --white: #fcfaf3;
  --shadow: rgba(24, 72, 43, .11);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, video { display: block; max-width: 100%; }

.site-noise::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: .045;
  pointer-events: none;
  position: fixed;
  z-index: 50;
}
.paper-grid {
  background-image: linear-gradient(rgba(38, 92, 47, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 92, 47, .055) 1px, transparent 1px);
  background-size: 28px 28px;
}
.leaf-blob { border-radius: 58% 42% 68% 32% / 39% 57% 43% 61%; }
.container { margin-inline: auto; max-width: 1280px; }
.eyebrow {
  color: var(--ink-soft);
  font: 500 10px/1 var(--mono);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lime); }
.display { font-family: var(--display); }
.muted { color: var(--ink-soft); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.site-header {
  background: rgba(244, 241, 231, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 40;
}
.header-inner { align-items: center; display: flex; height: 76px; justify-content: space-between; padding: 0 40px; }
.logo { align-items: center; display: inline-flex; gap: 12px; }
.logo-mark {
  align-items: center;
  background: var(--lime);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  height: 44px;
  justify-items: center;
  transition: transform .2s ease;
  width: 44px;
}
.logo:hover .logo-mark { transform: translateY(-2px); }
.logo-name { font-size: 15px; font-weight: 800; letter-spacing: .11em; line-height: 1; }
.logo-sub { color: var(--ink-soft); display: block; font-size: 10px; font-weight: 700; letter-spacing: .36em; margin-top: 5px; }
.nav { align-items: center; display: flex; gap: 32px; }
.nav a, .header-call { color: var(--ink-soft); font-size: 13px; font-weight: 700; transition: color .2s ease; }
.nav a:hover, .header-call:hover { color: var(--ink); }
.header-actions { align-items: center; display: flex; gap: 12px; }
.header-call { align-items: center; color: var(--ink); display: inline-flex; gap: 8px; padding: 8px 12px; }
.mobile-menu-button { background: transparent; border: 0; cursor: pointer; display: none; padding: 8px; }
.mobile-menu { background: var(--card); border-top: 1px solid var(--line); display: none; padding: 12px 20px 20px; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { border-radius: 12px; display: block; font-size: 15px; font-weight: 700; padding: 13px 12px; }
.mobile-menu a:hover { background: var(--leaf); }
.mobile-call { background: var(--ink); color: var(--white); display: flex !important; gap: 8px; margin-top: 8px; }

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  padding: 14px 20px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--lime); color: var(--ink); }
.button.primary:hover { background: var(--lime-light); }
.button.light { background: var(--white); color: var(--ink); }
.button.outline { border: 1px solid rgba(22, 62, 39, .24); color: var(--ink); margin-top: 24px; }
.button.outline:hover { background: var(--leaf); }

.hero { overflow: hidden; position: relative; }
.hero::after { background: var(--leaf); border-radius: 58% 42% 68% 32% / 39% 57% 43% 61%; content: ""; height: 320px; opacity: .6; position: absolute; right: -96px; top: 0; width: 320px; }
.hero-grid { align-items: center; display: grid; gap: 80px; grid-template-columns: 1.05fr .95fr; padding: 80px 40px 96px; position: relative; z-index: 1; }
.hero-kicker { align-items: center; display: flex; gap: 12px; margin-bottom: 28px; }
.hero-kicker::before { background: var(--lime); content: ""; height: 1px; width: 40px; }
.hero h1 { font-size: clamp(3.1rem, 7.2vw, 6.9rem); letter-spacing: -.075em; line-height: .91; margin: 0; max-width: 720px; }
.hero h1 .accent { color: var(--lime); font-family: var(--display); font-style: italic; font-weight: 600; letter-spacing: -.06em; }
.hero-copy { color: var(--ink-soft); font-size: 18px; line-height: 1.8; margin: 32px 0 0; max-width: 530px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.direct-call { align-items: center; border: 1px solid rgba(22, 62, 39, .2); border-radius: 999px; display: inline-flex; font-size: 13px; font-weight: 800; gap: 8px; padding: 13px 20px; transition: background .2s ease; }
.direct-call:hover { background: var(--leaf); }
.hero-proof { color: var(--ink-soft); display: flex; flex-wrap: wrap; font-size: 12px; font-weight: 700; gap: 12px 28px; margin-top: 48px; }
.hero-proof span { align-items: center; display: inline-flex; gap: 8px; }
.check { color: var(--lime); font-size: 18px; font-weight: 800; }
.poster-wrap { margin-left: auto; max-width: 500px; position: relative; width: 100%; }
.poster-wrap::before { border: 1px solid rgba(22, 62, 39, .15); border-radius: 999px; content: ""; height: 144px; left: -20px; position: absolute; top: 40px; width: 48px; }
.poster-frame { background: var(--ink); border: 14px solid var(--ink); border-radius: 30px; box-shadow: 18px 18px 0 var(--lime); overflow: hidden; position: relative; }
.poster-frame img { aspect-ratio: .7; height: 100%; object-fit: cover; width: 100%; }
.poster-caption { background: linear-gradient(transparent, rgba(22, 62, 39, .86)); bottom: 0; color: var(--lime); font: 10px var(--mono); left: 0; letter-spacing: .18em; padding: 70px 20px 20px; position: absolute; right: 0; text-transform: uppercase; }
.float-note { align-items: center; animation: float 6s ease-in-out infinite; background: var(--card); border: 1px solid var(--line); border-radius: 16px; bottom: -22px; box-shadow: 0 12px 30px var(--shadow); display: flex; gap: 12px; left: -12px; padding: 12px; position: absolute; }
.float-note-icon { align-items: center; background: var(--leaf); border-radius: 12px; display: grid; height: 40px; justify-items: center; width: 40px; }
.float-note p { font-size: 12px; font-weight: 800; line-height: 1.35; margin: 0; padding-right: 8px; }
.float-note p span { color: var(--ink-soft); }

.trust-strip { background: var(--ink); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { align-items: center; border-right: 1px solid rgba(252, 250, 243, .15); display: flex; gap: 12px; padding: 20px 40px; }
.trust-item:last-child { border-right: 0; }
.round-icon { align-items: center; background: var(--lime); border-radius: 50%; color: var(--ink); display: grid; flex: 0 0 40px; height: 40px; justify-items: center; width: 40px; }
.trust-item span:last-child { font-size: 13px; font-weight: 800; }

.section { padding: 112px 40px; }
.section-heading h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -.05em; line-height: 1.04; margin: 16px 0 0; }
.section-heading h2 .accent, .about-hero h1 .accent, .privacy-hero h1 .accent { color: var(--lime); font-family: var(--display); font-style: italic; font-weight: 600; }
.services-grid { display: grid; gap: 96px; grid-template-columns: .78fr 1.22fr; }
.services-intro p { color: var(--ink-soft); font-size: 15px; line-height: 1.85; margin: 24px 0 0; max-width: 390px; }
.category-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.category-card { background: var(--card); border: 1px solid #d5dbc9; border-radius: 16px; display: flex; flex-direction: column; min-height: 190px; padding: 20px; position: relative; transition: box-shadow .25s ease, transform .25s ease; }
.category-card:hover { box-shadow: 0 16px 35px rgba(24, 72, 43, .09); transform: translateY(-4px); }
.category-card:first-child { align-items: center; flex-direction: row; grid-column: span 2; min-height: 140px; padding: 28px; }
.category-top { align-items: flex-start; display: flex; justify-content: space-between; }
.category-icon { align-items: center; background: var(--leaf); border-radius: 15px; display: grid; height: 48px; justify-items: center; transition: background .2s ease; width: 48px; }
.category-card:hover .category-icon { background: var(--lime); }
.category-number { color: var(--ink-soft); font: 10px var(--mono); }
.category-copy { margin-top: 32px; }
.category-card:first-child .category-copy { margin: 0 auto 0 24px; }
.category-copy h3 { font-size: 18px; margin: 0; }
.category-copy p { color: var(--ink-soft); font-size: 13px; margin: 6px 0 0; }
.arrow-circle { align-items: center; border: 1px solid var(--line); border-radius: 50%; bottom: 20px; display: grid; height: 32px; justify-items: center; position: absolute; right: 20px; width: 32px; }
.category-card:first-child .arrow-circle { bottom: 28px; right: 28px; }
.category-card:hover .arrow-circle { background: var(--lime); border-color: var(--lime); }

.process { background: rgba(212, 230, 188, .45); }
.process-top { align-items: end; display: flex; gap: 20px; justify-content: space-between; }
.process-top p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin: 0; max-width: 260px; }
.process-grid { border-top: 1px solid rgba(22, 62, 39, .16); display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; }
.process-step { border-right: 1px solid rgba(22, 62, 39, .16); padding: 28px 28px 0; }
.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: 0; }
.process-meta { align-items: center; color: var(--ink-soft); display: flex; font: 12px var(--mono); justify-content: space-between; }
.process-step h3 { font-size: 18px; margin: 40px 0 8px; }
.process-step p { color: var(--ink-soft); font-size: 13px; line-height: 1.75; margin: 0; max-width: 230px; }

.gallery { background: var(--paper); }
.gallery-top { align-items: end; display: flex; gap: 20px; justify-content: space-between; }
.gallery-top p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin: 0; max-width: 260px; }
.gallery-grid { display: grid; grid-auto-rows: 205px; gap: 12px; grid-template-columns: repeat(4, 1fr); margin-top: 48px; }
.gallery-item { background: var(--ink); border: 0; border-radius: 16px; cursor: pointer; overflow: hidden; padding: 0; position: relative; text-align: left; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img, .gallery-item video { height: 100%; object-fit: cover; transition: transform .5s ease; width: 100%; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.05); }
.gallery-item::after { background: linear-gradient(transparent, rgba(0, 0, 0, .7)); bottom: 0; content: ""; height: 55%; left: 0; pointer-events: none; position: absolute; right: 0; }
.gallery-caption { bottom: 0; color: var(--white); left: 0; padding: 16px; position: absolute; right: 0; z-index: 1; }
.gallery-caption strong { display: block; font-size: 14px; }
.gallery-caption span { color: rgba(252, 250, 243, .72); display: block; font-size: 10px; letter-spacing: .16em; margin-top: 5px; text-transform: uppercase; }
.video-badge { align-items: center; background: rgba(22, 62, 39, .85); border-radius: 50%; color: var(--lime); display: grid; height: 36px; justify-items: center; left: 16px; position: absolute; top: 16px; width: 36px; z-index: 2; }
.media-note { align-items: flex-start; border: 1px dashed var(--line); border-radius: 12px; color: var(--ink-soft); display: flex; font-size: 12px; gap: 12px; line-height: 1.6; margin-top: 20px; padding: 14px 16px; }
.media-note strong { color: var(--ink); }
.mono { font-family: var(--mono); font-size: 11px; }

.contact { background: var(--ink); color: var(--white); overflow: hidden; position: relative; }
.contact::after { background: var(--lime); border-radius: 58% 42% 68% 32% / 39% 57% 43% 61%; content: ""; height: 320px; opacity: .1; position: absolute; right: -80px; top: -80px; width: 320px; }
.contact-grid { display: grid; gap: 96px; grid-template-columns: .9fr 1.1fr; position: relative; z-index: 1; }
.contact h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); letter-spacing: -.05em; line-height: 1.02; margin: 16px 0 0; max-width: 620px; }
.contact h2 .accent { color: var(--lime); font-family: var(--display); font-style: italic; }
.contact-copy { color: rgba(252, 250, 243, .7); font-size: 16px; line-height: 1.75; margin: 24px 0 0; max-width: 430px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact .button.outline { border-color: rgba(252, 250, 243, .28); color: var(--white); margin-top: 0; }
.contact .button.outline:hover { background: rgba(252, 250, 243, .1); }
.address { align-items: flex-start; color: rgba(252, 250, 243, .62); display: flex; font-size: 13px; gap: 9px; line-height: 1.7; margin-top: 38px; max-width: 330px; }
.inquiry-card { background: var(--card); border-radius: 24px; box-shadow: 12px 12px 0 rgba(182, 229, 93, .25); color: var(--ink); padding: 28px; }
.inquiry-head { align-items: flex-start; display: flex; justify-content: space-between; }
.inquiry-head h3 { font-size: 26px; letter-spacing: -.04em; margin: 10px 0 0; }
.inquiry-box { background: rgba(212, 230, 188, .35); border: 1px dashed var(--line); border-radius: 16px; margin-top: 28px; padding: 32px 20px; text-align: center; }
.inquiry-icon { align-items: center; background: var(--ink); border-radius: 50%; color: var(--lime); display: grid; height: 48px; justify-items: center; margin: 0 auto; width: 48px; }
.inquiry-box strong { display: block; margin-top: 16px; }
.inquiry-box p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin: 8px auto 0; max-width: 380px; }
.pending { align-items: center; background: var(--card); border-radius: 999px; color: var(--ink-soft); display: inline-flex; font-size: 11px; font-weight: 800; gap: 8px; margin-top: 18px; padding: 8px 14px; }
.inquiry-tip { align-items: flex-start; background: rgba(212, 230, 188, .55); border-radius: 12px; color: var(--ink-soft); display: flex; font-size: 12px; gap: 10px; line-height: 1.65; margin-top: 20px; padding: 14px; }

.site-footer { background: var(--ink); border-top: 1px solid rgba(252, 250, 243, .15); color: var(--white); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.3fr 1fr 1fr; padding: 56px 40px; }
.footer-grid .logo { color: var(--white); }
.footer-grid .logo-sub { color: rgba(252, 250, 243, .6); }
.footer-copy { color: rgba(252, 250, 243, .68); font-size: 13px; line-height: 1.8; margin: 24px 0 0; max-width: 390px; }
.footer-phone { color: var(--lime); display: inline-flex; font-size: 18px; font-weight: 800; gap: 10px; margin-top: 22px; }
.footer-label { color: var(--lime); font: 10px var(--mono); letter-spacing: .2em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 13px; margin-top: 16px; }
.footer-links a, .footer-find { color: rgba(252, 250, 243, .72); font-size: 13px; line-height: 1.7; }
.footer-links a:hover { color: var(--lime); }
.footer-find { display: flex; gap: 9px; margin-top: 16px; }
.footer-meta { border-top: 1px solid rgba(252, 250, 243, .15); color: rgba(252, 250, 243, .48); display: flex; font-size: 11px; gap: 12px; justify-content: space-between; padding: 20px 40px; }

.page-hero { padding: 96px 40px; }
.about-hero h1, .privacy-hero h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -.07em; line-height: .92; margin: 20px 0 0; max-width: 800px; }
.about-hero-inner { align-items: end; display: grid; gap: 40px; grid-template-columns: 1fr .7fr; }
.page-lead { color: var(--ink-soft); font-size: 18px; line-height: 1.8; margin: 0; max-width: 430px; }
.values-section { background: var(--ink); color: var(--white); padding: 96px 40px; }
.values-grid { align-items: center; display: grid; gap: 96px; grid-template-columns: .7fr 1fr; }
.founder-wrap { margin: auto; max-width: 370px; position: relative; }
.founder-wrap::before { border: 1px solid rgba(182, 229, 93, .4); border-radius: 28px; content: ""; inset: -12px; position: absolute; }
.founder-wrap img { aspect-ratio: .79; border-radius: 22px; object-fit: cover; object-position: top; position: relative; width: 100%; }
.values-quote { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.04em; line-height: 1.05; margin: 20px 0 0; }
.values-list { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.values-list span { color: var(--lime); font: 10px var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.values-list p { color: rgba(252, 250, 243, .66); font-size: 13px; line-height: 1.7; margin: 8px 0 0; }
.about-details { padding-bottom: 112px; padding-top: 112px; }
.details-grid { display: grid; gap: 96px; grid-template-columns: .8fr 1.2fr; }
.details-grid h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -.05em; line-height: 1.04; margin: 16px 0 0; }
.detail-cards { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.detail-card { background: var(--card); border: 1px solid #d5dbc9; border-radius: 16px; padding: 24px; }
.detail-card h3 { font-size: 18px; margin: 32px 0 0; }
.detail-card p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin: 8px 0 0; }
.privacy-hero { padding-bottom: 80px; }
.privacy-article { padding: 0 40px 112px; }
.privacy-inner { margin: auto; max-width: 900px; }
.notice { background: rgba(212, 230, 188, .45); border: 1px solid rgba(130, 199, 45, .5); border-radius: 16px; color: var(--ink); font-size: 13px; line-height: 1.7; padding: 18px; }
.legal-copy { color: var(--ink-soft); font-size: 15px; line-height: 1.85; }
.legal-copy h2, .legal-copy h3 { color: var(--ink); letter-spacing: -.04em; line-height: 1.2; }
.legal-copy h2 { font-size: 32px; margin: 48px 0 14px; }
.legal-copy h3 { font-size: 21px; margin: 28px 0 8px; }
.legal-copy p { margin: 10px 0; }
.legal-copy a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 3px; }

.lightbox { align-items: center; background: rgba(22, 62, 39, .88); display: flex; inset: 0; justify-content: center; padding: 20px; position: fixed; z-index: 100; }
.lightbox[hidden] { display: none; }
.lightbox-content { background: var(--card); border-radius: 16px; max-height: 90vh; max-width: min(720px, 100%); padding: 8px; position: relative; }
.lightbox-content img, .lightbox-content video { border-radius: 12px; max-height: 82vh; object-fit: contain; width: auto; }
.lightbox-close { align-items: center; background: var(--ink); border: 0; border-radius: 50%; color: var(--white); cursor: pointer; display: grid; height: 36px; justify-items: center; position: absolute; right: 16px; top: 16px; width: 36px; z-index: 1; }
.not-found { min-height: 50vh; padding: 120px 40px; text-align: center; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
@media (max-width: 900px) {
  .header-inner, .section, .page-hero, .values-section, .privacy-article { padding-left: 24px; padding-right: 24px; }
  .nav, .header-actions { display: none; }
  .mobile-menu-button { display: block; }
  .hero-grid, .services-grid, .contact-grid, .values-grid, .details-grid, .about-hero-inner { gap: 48px; grid-template-columns: 1fr; }
  .hero-grid { padding: 64px 24px 88px; }
  .poster-wrap { margin: 0 auto; max-width: 470px; }
  .trust-item { padding: 18px 24px; }
  .gallery-grid { grid-auto-rows: 180px; }
  .footer-grid { padding-left: 24px; padding-right: 24px; }
  .footer-meta { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 620px) {
  .header-inner { height: 68px; padding-left: 20px; padding-right: 20px; }
  .logo-mark { height: 40px; width: 40px; }
  .logo-name { font-size: 13px; }
  .hero-grid { padding: 54px 20px 72px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5.4rem); }
  .hero-copy { font-size: 16px; line-height: 1.7; }
  .poster-frame { border-width: 10px; border-radius: 24px; }
  .float-note, .poster-wrap::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(252, 250, 243, .15); border-right: 1px solid rgba(252, 250, 243, .15); padding: 16px 20px; }
  .trust-item:nth-child(even) { border-right: 0; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 0; }
  .section, .values-section { padding-bottom: 76px; padding-top: 76px; }
  .section-heading h2, .details-grid h2 { font-size: 2.7rem; }
  .category-grid, .detail-cards, .values-list { grid-template-columns: 1fr; }
  .category-card:first-child { align-items: flex-start; flex-direction: column; grid-column: auto; min-height: 190px; padding: 20px; }
  .category-card:first-child .category-copy { margin: 32px 0 0; }
  .category-card:first-child .arrow-circle { bottom: 20px; right: 20px; }
  .process-top, .gallery-top { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .process-step, .process-step:first-child { border-bottom: 1px solid rgba(22, 62, 39, .16); border-right: 0; padding: 24px 0; }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 26px; }
  .gallery-grid { grid-auto-rows: 150px; grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-grid, .values-grid, .details-grid { gap: 48px; }
  .contact { padding: 76px 20px; }
  .inquiry-card { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 44px; padding-top: 44px; }
  .footer-meta { align-items: flex-start; flex-direction: column; padding: 16px 20px; }
  .page-hero { padding: 68px 20px; }
  .privacy-article { padding: 0 20px 76px; }
  .values-section { padding-left: 20px; padding-right: 20px; }
  .founder-wrap { max-width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}