@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --ink: #143a3d;
  --ink-deep: #0c292c;
  --teal: #1d6d70;
  --teal-soft: #dcefed;
  --cream: #fbf8f0;
  --warm: #f5eee1;
  --coral: #ee765a;
  --sun: #f4c65c;
  --line: rgba(20, 58, 61, .14);
  --muted: #5e7071;
  --shadow: 0 18px 50px rgba(10, 44, 47, .12);
  --radius: 22px;
  --container: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; }
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section.warm { background: var(--warm); }
.section.teal { background: var(--teal); color: #fff; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 48px; }
.section-head h2, .copy-title, .page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 14px 0 0;
}
.section-head h2 { max-width: 680px; font-size: clamp(2.45rem, 5vw, 4.5rem); }
.section-head > p { max-width: 350px; color: var(--muted); margin: 0; }
.teal .section-head > p { color: rgba(255,255,255,.78); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,248,240,.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background .2s, box-shadow .2s, border-color .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 30px rgba(12,41,44,.07); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.045em; font-size: 1.2rem; }
.brand-mark { width: 30px; height: 30px; position: relative; display: grid; place-items: center; border: 2px solid var(--teal); border-radius: 50% 50% 50% 10%; transform: rotate(-35deg); }
.brand-mark::after { content: ''; width: 10px; height: 2px; background: var(--coral); transform: rotate(35deg); }
.brand strong { color: var(--teal); }
.nav-links { display: flex; gap: 3px; align-items: center; }
.nav-links a { border-radius: 100px; padding: 9px 12px; font-size: .88rem; font-weight: 600; color: #355355; transition: .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-soft); }
.nav-action, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border: 0; border-radius: 999px;
  color: #fff; background: var(--teal); font-size: .88rem; font-weight: 700;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav-action:hover, .button:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(20,58,61,.18); }
.button.light { background: #fff; color: var(--teal); }
.button.light:hover { background: var(--sun); color: var(--ink-deep); }
.button.outline { background: transparent; border: 1px solid rgba(255,255,255,.65); color: #fff; }
.button.outline:hover { background: #fff; color: var(--teal); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; background: transparent; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; }
.menu-button svg { width: 20px; height: 20px; }

/* Home */
.hero { position: relative; overflow: hidden; min-height: min(760px, calc(100vh - 76px)); display: grid; align-items: center; padding: 96px 0 80px; background: var(--ink-deep); color: #fff; }
.hero::before { content: ''; position: absolute; right: -15vw; bottom: -38vw; width: 82vw; height: 82vw; max-width: 900px; max-height: 900px; border: 1px solid rgba(244,198,92,.33); border-radius: 50%; box-shadow: 0 0 0 70px rgba(244,198,92,.05), 0 0 0 140px rgba(244,198,92,.03); }
.hero::after { content: ''; position: absolute; top: -30px; left: 56%; width: 24vw; height: 130%; background: linear-gradient(135deg, transparent 46%, rgba(255,255,255,.08) 46.2%, rgba(255,255,255,.08) 47.4%, transparent 47.6%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: clamp(35px, 8vw, 110px); align-items: end; }
.hero h1 { max-width: 780px; margin: 18px 0 23px; font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: clamp(4rem, 9.2vw, 8.6rem); line-height: .84; letter-spacing: -.075em; }
.hero h1 em { color: #84d9cf; font-style: normal; }
.hero-lead { max-width: 565px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.8vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-side { display: grid; gap: 18px; padding-bottom: 20px; }
.hero-note { padding: 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.06); backdrop-filter: blur(5px); }
.hero-note span { display: block; color: var(--sun); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-note p { margin: 8px 0 0; font-family: 'Fraunces', Georgia, serif; font-size: 1.42rem; line-height: 1.12; }
.hero-orbit { display: flex; justify-content: flex-end; gap: 8px; align-items: center; color: rgba(255,255,255,.65); font-size: .78rem; }
.hero-orbit i { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); display: inline-block; }

.impact-strip { position: relative; z-index: 3; margin-top: -1px; background: var(--sun); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 28px 31px; border-right: 1px solid rgba(20,58,61,.18); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.06em; line-height: 1; }
.stat span { display: block; margin-top: 7px; color: rgba(12,41,44,.77); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(35px, 9vw, 140px); align-items: start; }
.about-marker { padding: 42px; min-height: 430px; display: flex; align-items: end; border-radius: var(--radius); background: var(--teal); color: #fff; position: relative; overflow: hidden; }
.about-marker::before, .about-marker::after { content: ''; position: absolute; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.about-marker::before { width: 420px; height: 420px; top: -238px; right: -160px; }
.about-marker::after { width: 210px; height: 210px; bottom: -100px; left: -95px; }
.about-marker span { position: relative; z-index: 1; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: .85; letter-spacing: -.075em; }
.about-copy { padding-top: 13px; }
.copy-title { max-width: 680px; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.about-copy > p { max-width: 690px; margin: 28px 0; color: var(--muted); font-size: 1.1rem; }
.value-list { display: grid; gap: 14px; list-style: none; padding: 0; margin: 35px 0 0; }
.value-list li { display: flex; gap: 13px; align-items: center; font-weight: 700; }
.value-list i { flex: 0 0 26px; width: 26px; height: 26px; display: grid; place-items: center; color: var(--teal); border: 1px solid var(--teal); border-radius: 50%; font-style: normal; font-size: .75rem; }

.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.project-card { display: flex; flex-direction: column; min-height: 360px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fffdfa; transition: transform .25s, box-shadow .25s, border-color .25s; }
.project-card:hover { transform: translateY(-6px); border-color: rgba(29,109,112,.43); box-shadow: var(--shadow); }
.project-image, .image-placeholder { position: relative; height: 182px; overflow: hidden; background: linear-gradient(135deg, #d9ece9, #f4eadc); }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder { display: grid; place-items: center; border-bottom: 1px solid var(--line); color: var(--teal); }
.image-placeholder::before, .profile-placeholder::before { content: '+'; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.4rem; font-weight: 400; }
.image-placeholder span { position: absolute; bottom: 13px; left: 15px; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.project-card-content { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 21px; }
.project-kicker { color: var(--coral); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-card h3 { margin: 9px 0; font-family: 'Fraunces', Georgia, serif; font-size: 1.42rem; line-height: 1.05; letter-spacing: -.045em; }
.project-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; color: var(--teal); font-size: .82rem; font-weight: 700; }
.card-link::after { content: '→'; font-size: 1.1rem; transition: transform .2s; }
.project-card:hover .card-link::after { transform: translateX(4px); }
.all-projects-link { margin-top: 31px; }

.involvement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.action-card { min-height: 330px; padding: 31px; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.action-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
.action-number { color: var(--sun); font-family: 'Fraunces', Georgia, serif; font-size: 1.55rem; }
.action-card h3 { margin: auto 0 11px; font-family: 'Fraunces', Georgia, serif; font-size: 2rem; line-height: .98; letter-spacing: -.04em; }
.action-card p { margin: 0; color: rgba(255,255,255,.74); }
.action-card a { margin-top: 22px; color: var(--sun); font-weight: 700; font-size: .84rem; }

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.event-card { display: flex; gap: 20px; padding: 24px; border-top: 2px solid var(--teal); background: #fffdfa; }
.event-date { flex: 0 0 100px; color: var(--coral); font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.event-card h3 { margin: 0; font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; letter-spacing: -.035em; line-height: 1; }
.event-card p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }

/* Inner pages */
.page-hero { padding: clamp(74px, 11vw, 145px) 0 clamp(55px, 8vw, 96px); position: relative; overflow: hidden; background: var(--teal); color: #fff; }
.page-hero::before { content: ''; position: absolute; right: -9vw; top: -15vw; width: 45vw; height: 45vw; border: 1px solid rgba(244,198,92,.65); border-radius: 50%; box-shadow: 0 0 0 45px rgba(244,198,92,.06); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 750px; font-size: clamp(3.6rem, 7vw, 7rem); }
.page-hero p { max-width: 620px; margin: 24px 0 0; color: rgba(255,255,255,.83); font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--sun); }

.filter-row { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 0 0 30px; }
.filter-chip { padding: 9px 14px; color: var(--teal); border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .76rem; font-weight: 700; transition: .2s; }
.filter-chip:hover, .filter-chip.active { color: #fff; background: var(--teal); border-color: var(--teal); }
.project-grid.full { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.project-grid.full .project-card { min-height: 385px; }
.project-grid.full .project-image, .project-grid.full .image-placeholder { height: 205px; }

.project-detail-hero { padding: 62px 0 0; background: var(--warm); }
.back-link { display: inline-flex; gap: 9px; align-items: center; color: var(--teal); font-weight: 700; font-size: .84rem; }
.back-link:hover { color: var(--coral); }
.detail-lead { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(35px, 8vw, 120px); padding: 58px 0; align-items: end; }
.detail-lead h1 { max-width: 700px; margin: 12px 0 0; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.2rem, 6.5vw, 6.7rem); line-height: .88; letter-spacing: -.07em; }
.detail-lead > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.detail-visual { height: min(58vw, 520px); min-height: 320px; border-radius: var(--radius) var(--radius) 0 0; }
.detail-visual .image-placeholder, .detail-visual img { width: 100%; height: 100%; }
.detail-visual .image-placeholder { background: linear-gradient(135deg, #bfded8, #e5cfa9); border: 0; border-radius: var(--radius) var(--radius) 0 0; }
.detail-visual img { object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.project-body { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(38px, 8vw, 126px); }
.facts { align-self: start; padding: 26px; border: 1px solid var(--line); background: #fffdfa; }
.fact { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.fact:last-child { border-bottom: 0; }
.fact span { color: var(--muted); }
.fact strong { text-align: right; }
.project-story h2 { margin: 0 0 20px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.055em; }
.project-story p { max-width: 690px; color: var(--muted); font-size: 1.05rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.gallery-grid > * { min-height: 190px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.member-card { min-height: 358px; padding: 28px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--line); background: #fffdfa; border-radius: 18px; transition: .25s; }
.member-card:hover { border-color: rgba(29,109,112,.42); box-shadow: var(--shadow); transform: translateY(-5px); }
.member-card:nth-child(3n + 2) { background: var(--teal-soft); }
.member-card:nth-child(3n) { background: #f4e5c8; }
.profile-placeholder, .member-photo { width: 92px; height: 92px; overflow: hidden; display: grid; place-items: center; border: 1px solid rgba(20,58,61,.28); border-radius: 50%; color: var(--teal); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-role { margin-top: auto; color: var(--coral); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.member-card h3 { margin: 7px 0 8px; font-family: 'Fraunces', Georgia, serif; font-size: 1.75rem; line-height: 1; letter-spacing: -.04em; }
.member-card h3.role-only { font-size: 1.45rem; }
.member-card p { margin: 0; color: var(--muted); font-size: .89rem; }

.involvement-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.involvement-page-grid .action-card { color: var(--ink); min-height: 390px; border-color: var(--line); background: #fffdfa; }
.involvement-page-grid .action-card:nth-child(2) { background: var(--teal); color: #fff; }
.involvement-page-grid .action-card:nth-child(2) p { color: rgba(255,255,255,.77); }
.involvement-page-grid .action-card:nth-child(2) a { color: var(--sun); }
.involvement-page-grid .action-card p { color: var(--muted); }
.involvement-page-grid .action-card a { color: var(--teal); }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { padding: 28px 28px 31px 0; margin-right: 28px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--coral); font-size: .78rem; font-weight: 700; letter-spacing: .1em; }
.process-step h3 { margin: 11px 0 8px; font-family: 'Fraunces', Georgia, serif; font-size: 1.7rem; letter-spacing: -.04em; line-height: 1; }
.process-step p { margin: 0; color: var(--muted); font-size: .89rem; }

.contact-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(37px, 8vw, 128px); align-items: start; }
.contact-intro h2 { margin: 15px 0 18px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(3rem, 5vw, 5rem); line-height: .9; letter-spacing: -.067em; }
.contact-intro > p { max-width: 430px; color: var(--muted); }
.contact-meta { margin-top: 35px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.contact-meta a, .contact-meta span { color: var(--teal); font-weight: 700; font-size: .92rem; }
.contact-form { padding: clamp(26px, 4vw, 46px); background: var(--teal); color: #fff; border-radius: var(--radius); }
.contact-form h3 { margin: 0 0 7px; font-family: 'Fraunces', Georgia, serif; font-size: 2.15rem; letter-spacing: -.04em; line-height: 1; }
.contact-form > p { margin: 0 0 28px; color: rgba(255,255,255,.76); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { color: rgba(255,255,255,.75); font-size: .73rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid rgba(255,255,255,.3); border-radius: 10px; outline: none; color: #fff; background: rgba(255,255,255,.09); }
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--sun); background: rgba(255,255,255,.16); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.55); }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.61); font-size: .76rem; }
.form-result { min-height: 22px; margin: 12px 0 0; color: var(--sun); font-size: .84rem; font-weight: 700; }
.calendar-note { margin-top: 21px; padding: 19px 21px; background: var(--teal-soft); color: var(--ink); font-size: .9rem; }

/* Footer */
.site-footer { overflow: hidden; padding: 66px 0 22px; background: var(--ink-deep); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.25fr .68fr .68fr; gap: 35px; padding-bottom: 52px; }
.footer-brand .brand { color: #fff; font-size: 1.45rem; }
.footer-brand .brand strong { color: #9be0d7; }
.footer-brand .brand-mark { border-color: #9be0d7; }
.footer-brand p { max-width: 380px; margin: 18px 0 0; color: rgba(255,255,255,.67); }
.footer-col h3 { margin: 7px 0 17px; color: var(--sun); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.48); font-size: .76rem; }
.footer-rule { height: 1px; width: 85px; margin-top: 21px; background: var(--coral); }

/* Motion and responsive */
.reveal { opacity: 0; transform: translateY(15px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; transition-duration: .001ms !important; } }
@media (max-width: 930px) {
  .nav-links { position: fixed; inset: 76px 0 auto; display: grid; gap: 3px; padding: 18px 24px 24px; background: var(--cream); border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .25s; box-shadow: 0 15px 35px rgba(12,41,44,.1); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 12px; }
  .nav-action { display: none; }
  .menu-button { display: grid; place-items: center; }
  .hero-grid, .about-grid, .detail-lead, .project-body, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: 690px; }
  .hero-side { grid-template-columns: 1fr 1fr; padding: 0; }
  .about-marker { min-height: 280px; }
  .project-grid, .project-grid.full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .detail-visual { height: 450px; }
}
@media (max-width: 610px) {
  :root { --container: min(100% - 36px, 1160px); }
  .section { padding: 70px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head > p { margin-top: 18px; }
  .hero { min-height: 660px; padding: 72px 0 55px; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5.4rem); }
  .hero-side { grid-template-columns: 1fr; }
  .hero-note:last-child { display: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { padding: 23px 16px; border-bottom: 1px solid rgba(20,58,61,.18); }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .project-grid, .project-grid.full, .team-grid, .involvement-grid, .involvement-page-grid, .event-grid, .gallery-grid { grid-template-columns: 1fr; }
  .project-card, .project-grid.full .project-card { min-height: 350px; }
  .project-image, .image-placeholder, .project-grid.full .project-image, .project-grid.full .image-placeholder { height: 210px; }
  .action-card { min-height: 270px; }
  .process { grid-template-columns: 1fr; }
  .process-step { margin: 0; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 17px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span + span { display: block; margin-top: 6px; }
  .detail-visual { height: 320px; }
  .event-card { display: block; }
  .event-card h3 { margin-top: 9px; }
}
