:root {
  --bg: #fdfcf8;
  --ink: #332d27;
  --muted: #786f66;
  --line: #e4ded5;
  --paper: #f5f1eb;
  --accent: #ede3ce;
  --gold: #9a7130;
  --gold-light: #c7ad76;
  --danger: #b74235;
  --success: #476c50;
  --nav-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .01em;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(100% - 32px, 1216px); margin-inline: auto; }
.section { padding: 128px 0; }
.section--paper { background: var(--paper); }
.section--gallery { background: #f9f6ef; overflow: hidden; }
.eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 28px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; }
.eyebrow::after { flex: 1; height: 1px; background: var(--line); content: ""; }
.display { margin: 0; font-family: "Cormorant Garamond", "Noto Serif JP", Georgia, serif; font-weight: 300; font-size: clamp(42px, 5vw, 72px); line-height: 1.05; letter-spacing: .01em; }
.display em { color: var(--gold); font-style: italic; }
.serif { font-family: "Noto Serif JP", "Cormorant Garamond", Georgia, serif; }
.muted { color: var(--muted); }
.section-divider { height: 1px; margin-top: 128px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Navigation */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--nav-height); transition: background .3s ease, box-shadow .3s ease, border .3s ease; }
.site-header.is-scrolled { background: rgba(253,252,248,.94); border-bottom: 1px solid var(--line); box-shadow: 0 2px 14px rgba(51,45,39,.04); backdrop-filter: blur(12px); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; height: 62px; transition: opacity .2s ease; }
.brand:hover img { opacity: .72; }
.nav-links { display: flex; align-items: center; gap: 29px; }
.nav-links a, .nav-contact, .footer-nav a { color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; transform: scaleX(0); transform-origin: left; background: var(--gold); content: ""; transition: transform .24s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-contact { margin-left: 8px; padding: 11px 18px; border: 1px solid var(--ink); color: var(--ink); transition: background .2s ease, color .2s ease; }
.nav-contact:hover { background: var(--ink); color: var(--bg); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 22px; height: 1px; margin: 5px auto; background: currentColor; content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; display: flex; min-height: 100svh; align-items: center; overflow: hidden; background: var(--bg); }
.hero::before { position: absolute; inset: 0; z-index: 0; opacity: .04; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 80px 80px; content: ""; }
.hero-image { position: absolute; z-index: 0; inset: 0 0 0 auto; width: 45%; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.hero-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg), transparent 45%, var(--bg)); content: ""; }
.hero .container { position: relative; z-index: 1; padding-top: var(--nav-height); }
.hero-content { max-width: 820px; }
.hero .eyebrow { width: min(100%, 580px); margin-bottom: 36px; }
.hero .eyebrow::after { display: none; }
.hero .eyebrow::before { width: 48px; height: 1px; background: var(--gold); content: ""; }
.hero-title { margin: 0; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: clamp(54px, 8vw, 104px); font-weight: 300; line-height: .98; letter-spacing: .02em; }
.hero-title em { display: block; color: var(--gold); font-style: italic; }
.hero-lead { margin: 30px 0 40px; color: var(--muted); font-family: "Noto Serif JP", serif; font-size: clamp(16px, 2vw, 20px); letter-spacing: .08em; }
.hero-description { max-width: 540px; margin: 0 0 40px; color: var(--muted); font-size: 15px; line-height: 2; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 30px; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: 12px; font-weight: 500; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: background .25s ease, color .25s ease, border .25s ease; }
.button:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.button--quiet { min-height: auto; padding: 8px 0; border: 0; color: var(--muted); }
.button--quiet:hover { background: transparent; color: var(--ink); }
.button--quiet::after { width: 24px; height: 1px; margin-left: 10px; background: currentColor; content: ""; }
.scroll-cue { position: absolute; bottom: 36px; left: 50%; display: grid; gap: 5px; color: var(--muted); font-size: 9px; letter-spacing: .25em; text-align: center; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue::after { content: "↓"; font-size: 18px; animation: cue 1.8s infinite; }
@keyframes cue { 50% { transform: translateY(6px); } }

/* About and profile */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(56px, 11vw, 150px); }
.about-copy p { max-width: 570px; margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 2.05; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-card { min-height: 157px; padding: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.stat-number { margin-bottom: 6px; font-family: "Cormorant Garamond", serif; font-size: 42px; font-weight: 300; line-height: 1; }
.stat-label { margin-bottom: 4px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.stat-sub { color: var(--muted); font-size: 12px; }
.quote { margin-top: 42px; padding: 28px 30px; border-left: 2px solid var(--gold-light); background: var(--accent); }
.quote p { margin: 0 0 15px; font-family: "Noto Serif JP", "Cormorant Garamond", serif; font-size: 17px; font-style: italic; line-height: 2; }
.quote cite { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-style: normal; letter-spacing: .15em; }
.quote cite::before { width: 24px; height: 1px; background: var(--gold); content: ""; }
.profile-head { margin-bottom: 64px; }
.profile-name { margin: 0 0 10px; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: clamp(44px, 5vw, 66px); font-weight: 300; line-height: 1; }
.profile-name span { color: var(--gold); font-size: .52em; font-style: italic; }
.profile-meta { color: var(--muted); font-size: 11px; letter-spacing: .18em; }
.profile-grid { display: grid; grid-template-columns: 3fr 2fr; gap: clamp(42px, 7vw, 94px); }
.profile-copy p { margin: 0 0 20px; color: var(--muted); font-family: "Noto Serif JP", serif; font-size: 15px; line-height: 2.05; }
.profile-copy strong { color: var(--ink); font-weight: 500; }
.portrait { position: relative; overflow: hidden; aspect-ratio: 4 / 5; margin-bottom: 24px; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.role { padding: 6px 11px; border: 1px solid var(--line); color: var(--gold); font-size: 10px; letter-spacing: .1em; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 80px 0 90px; }
.profile-stat { padding-top: 22px; border-top: 1px solid var(--line); }
.profile-stat .stat-number { color: var(--gold); }
.timeline { display: grid; grid-template-columns: 160px 1fr; border-top: 1px solid var(--line); }
.timeline-row { display: contents; }
.timeline-year, .timeline-content { padding: 28px 0; border-bottom: 1px solid var(--line); }
.timeline-year { color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 22px; }
.timeline-content h3 { margin: 0 0 8px; font-family: "Noto Serif JP", serif; font-size: 16px; font-weight: 500; }
.timeline-content p { margin: 0; color: var(--muted); font-size: 14px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service { position: relative; min-height: 100%; padding: 45px 42px; overflow: hidden; background: var(--bg); }
.service::before { position: absolute; inset: 0; z-index: 0; opacity: 0; background: center / cover var(--service-image); content: ""; transition: opacity .5s ease; }
.service::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--gold); content: ""; transition: transform .4s ease; }
.service:hover::before { opacity: .055; }
.service:hover::after { transform: scaleX(1); }
.service > * { position: relative; z-index: 1; }
.service-number { position: absolute; top: 28px; right: 35px; color: var(--line); font-family: "Cormorant Garamond", serif; font-size: 50px; font-weight: 300; }
.service-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 29px; border: 1px solid var(--line); color: var(--gold); font-size: 21px; }
.service h3 { margin: 0 0 3px; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: 27px; font-weight: 400; line-height: 1.2; }
.service-title-ja { margin: 0 0 21px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .14em; }
.service-copy { min-height: 200px; margin: 0 0 26px; color: var(--muted); font-size: 14px; line-height: 2; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { padding: 4px 9px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.ve-table-wrap { margin: 25px 0; overflow-x: auto; border: 1px solid var(--line); }
.ve-label { margin: 0 0 9px; color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.ve-table { width: 100%; border-collapse: collapse; font-size: 11px; white-space: nowrap; }
.ve-table th, .ve-table td { padding: 10px 11px; border-bottom: 1px solid var(--line); text-align: right; }
.ve-table th:first-child, .ve-table td:first-child { text-align: left; }
.ve-table th { color: var(--muted); background: var(--accent); font-weight: 400; }
.ve-table td:nth-child(3), .ve-table td:nth-child(4) { color: var(--gold); font-weight: 600; }
.ve-table small { display: block; color: var(--muted); font-size: 9px; }
.ve-note { margin: 9px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }

/* Books */
.book-list { display: grid; gap: 80px; }
.book { display: grid; grid-template-columns: 224px 1fr; gap: 48px; align-items: start; }
.book + .book { padding-top: 80px; border-top: 1px solid var(--line); }
.book-cover-wrap { position: relative; width: min(100%, 224px); }
.book-cover { overflow: hidden; box-shadow: 7px 10px 27px rgba(32,25,20,.28); }
.book-cover img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.book-badge { position: absolute; right: -12px; bottom: -12px; padding: 4px 9px; background: var(--gold); color: var(--bg); font-size: 9px; letter-spacing: .08em; }
.book-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-bottom: 16px; color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.book-meta span:last-child { color: var(--muted); }
.book h3 { margin: 0 0 8px; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: clamp(23px, 3vw, 33px); font-weight: 400; line-height: 1.2; }
.book-subtitle { margin: 0 0 2px; color: var(--muted); font-family: "Noto Serif JP", serif; font-size: 14px; }
.book-series { margin: 0 0 8px; color: var(--gold); font-size: 11px; }
.book-en { margin: 0 0 24px; color: var(--muted); font-family: "Cormorant Garamond", serif; font-size: 14px; font-style: italic; }
.book-copy { max-width: 740px; margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 11px; font-weight: 500; letter-spacing: .15em; text-decoration: none; }
.text-link:hover { border-color: var(--gold); color: var(--gold); }
.text-link::after { content: "↗"; }

/* Gallery */
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 40px; }
.gallery-intro { max-width: 390px; margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { padding: 8px 15px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; font-weight: 500; letter-spacing: .14em; cursor: pointer; }
.filter.is-active, .filter:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.camera-bar { display: flex; align-items: center; gap: 12px; margin: 0 0 62px; padding: 13px 16px; border: 1px solid var(--line); background: rgba(255,255,255,.65); color: var(--muted); font-size: 12px; }
.camera-bar::before { color: var(--gold); content: "◉"; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 32px; }
.gallery-col { display: grid; gap: 32px; }
.gallery-col:nth-child(2) { padding-top: 40px; }
.gallery-col:nth-child(3) { padding-top: 14px; }
.polaroid { position: relative; padding: 11px 11px 34px; border: 0; background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.17); cursor: zoom-in; transform: rotate(var(--rotate)); transition: transform .3s ease, box-shadow .3s ease; }
.polaroid:hover { z-index: 3; box-shadow: 0 14px 36px rgba(0,0,0,.25); transform: translateY(-7px) rotate(0); }
.polaroid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.polaroid-title { display: block; overflow: hidden; margin-top: 9px; color: #5c5853; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: 13px; font-style: italic; line-height: 1.3; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.polaroid-meta { display: block; margin-top: 2px; color: #aaa39a; font-size: 8px; letter-spacing: .12em; text-align: center; }
.gallery-note { margin: 75px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.lightbox { position: fixed; z-index: 200; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(22,20,17,.94); }
.lightbox.is-open { display: flex; }
.lightbox-inner { position: relative; width: min(100%, 720px); padding: 16px 16px 54px; background: #fff; box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.lightbox-inner img { width: 100%; max-height: 68vh; object-fit: contain; }
.lightbox-title { margin: 12px 0 0; color: #4d4944; font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: 22px; font-style: italic; text-align: center; }
.lightbox-meta { margin: 2px 0 0; color: #aaa39a; font-size: 9px; letter-spacing: .15em; text-align: center; }
.lightbox-close { position: absolute; top: -15px; right: -15px; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 50%; background: #fff; color: #333; font-size: 20px; cursor: pointer; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(48px, 9vw, 115px); }
.contact-copy { margin: 0 0 35px; color: var(--muted); font-family: "Noto Serif JP", serif; font-size: 15px; line-height: 2; }
.contact-list { display: grid; gap: 23px; }
.contact-item { display: grid; grid-template-columns: 38px 1fr; gap: 14px; }
.contact-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); color: var(--gold); font-size: 15px; }
.contact-label { margin: 0 0 1px; color: var(--muted); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.contact-value { margin: 0; color: var(--ink); font-size: 14px; }
.contact-sub { margin: 1px 0 0; color: var(--muted); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; letter-spacing: .17em; }
.required { color: var(--gold); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; transition: border .2s ease; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #aaa39a; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 11px; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px); white-space: nowrap !important; }

/* Footer */
.site-footer { color: var(--bg); background: #332d27; }
.footer-accent { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); opacity: .4; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 72px 0 58px; }
.footer-logo { height: 92px; margin: 0 0 16px; filter: brightness(0) invert(1); opacity: .85; }
.footer-copy { max-width: 285px; margin: 0; color: rgba(253,252,248,.6); font-family: "Noto Serif JP", serif; font-size: 13px; line-height: 2; }
.footer-location { display: flex; align-items: center; gap: 10px; margin-top: 27px; color: rgba(253,252,248,.5); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.footer-location::before { width: 24px; height: 1px; background: var(--gold); content: ""; }
.footer-heading { margin: 0 0 20px; color: rgba(253,252,248,.42); font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.footer-nav { display: grid; gap: 8px; }
.footer-nav a { color: rgba(253,252,248,.64); font-size: 13px; letter-spacing: 0; text-transform: none; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { color: rgba(253,252,248,.58); font-size: 13px; }
.footer-contact p { margin: 0 0 7px; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(253,252,248,.42); font-size: 10px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: inherit; text-decoration: none; }

/* Confirmation and result pages */
.form-page { display: grid; min-height: 100svh; place-items: center; padding: 130px 16px 50px; background: var(--paper); }
.form-card { width: min(100%, 760px); padding: clamp(28px, 6vw, 64px); border: 1px solid var(--line); background: var(--bg); }
.form-card .display { margin-bottom: 20px; }
.alert { margin: 20px 0; padding: 14px 16px; border-left: 3px solid var(--danger); background: #f9eeeb; color: #7e3028; font-size: 14px; }
.alert--success { border-color: var(--success); background: #eff5ee; color: #3d5b44; }
.confirmation-list { margin: 30px 0; border-top: 1px solid var(--line); }
.confirmation-row { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.confirmation-row dt { color: var(--muted); font-size: 11px; letter-spacing: .12em; }
.confirmation-row dd { margin: 0; white-space: pre-wrap; word-break: break-word; }
.confirmation-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

@media (max-width: 960px) {
  :root { --nav-height: 76px; }
  .section { padding: 92px 0; }
  .nav-links, .nav-contact { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: fixed; z-index: 90; inset: var(--nav-height) 0 0; padding: 34px 32px; background: var(--bg); }
  .mobile-nav.is-open { display: block; }
  .mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: "Cormorant Garamond", "Noto Serif JP", serif; font-size: 30px; text-decoration: none; }
  .hero-image { width: 58%; opacity: .78; }
  .about-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-copy { min-height: auto; }
  .book { grid-template-columns: 180px 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 40px, 1216px); }
  .section { padding: 76px 0; }
  .brand img { height: 55px; }
  .hero { min-height: 720px; }
  .hero-image { width: 100%; opacity: .5; }
  .hero-image::after { background: linear-gradient(90deg, var(--bg) 0%, rgba(253,252,248,.62) 50%, var(--bg) 100%); }
  .hero-title { font-size: clamp(49px, 15vw, 70px); }
  .scroll-cue { bottom: 22px; }
  .display { font-size: 41px; }
  .stats-grid { gap: 12px; }
  .stat-card { min-height: 138px; padding: 18px; }
  .stat-number { font-size: 34px; }
  .profile-stats { gap: 14px; margin: 56px 0 68px; }
  .profile-stat .stat-number { font-size: 31px; }
  .profile-stat .stat-label { letter-spacing: .08em; }
  .timeline { grid-template-columns: 90px 1fr; }
  .timeline-year { font-size: 18px; }
  .timeline-content { padding-left: 12px; }
  .service { padding: 38px 30px; }
  .book-list { gap: 54px; }
  .book, .book + .book { grid-template-columns: 1fr; gap: 32px; padding-top: 54px; }
  .book:first-child { padding-top: 0; }
  .book-cover-wrap { width: 170px; margin-inline: auto; }
  .gallery-head { align-items: start; flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gallery-col { gap: 18px; }
  .gallery-col:nth-child(3) { display: none; }
  .gallery-col:nth-child(2) { padding-top: 28px; }
  .camera-bar { align-items: flex-start; margin-bottom: 42px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; padding: 55px 0 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .confirmation-row { grid-template-columns: 1fr; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
