@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --navy: #10264a;
  --navy-2: #1b3b64;
  --ink: #172842;
  --muted: #5f6b80;
  --cream: #fbf5ed;
  --cream-2: #fffaf4;
  --line: #ead8c4;
  --gold: #df972e;
  --gold-2: #ffd074;
  --blue: #cfe8f6;
  --blue-2: #edf8ff;
  --peach: #ffdccc;
  --coral: #ff7d58;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 43, 71, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(207, 232, 246, 0.55) 0 130px, transparent 131px),
    radial-gradient(circle at 90% 14%, rgba(255, 220, 204, 0.5) 0 160px, transparent 161px),
    radial-gradient(circle at 20% 72%, rgba(255, 208, 116, 0.18) 0 180px, transparent 181px),
    linear-gradient(180deg, #fffaf4 0%, #fbf5ed 46%, #f7fbff 100%);
  color: var(--ink);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(110deg, transparent 0 48%, rgba(16, 38, 74, 0.035) 48% 49%, transparent 49%),
    radial-gradient(circle, rgba(223, 151, 46, 0.12) 1px, transparent 1.5px);
  background-size: 180px 180px, 28px 28px;
}

body.nav-open {
  overflow: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 28px, 1360px);
  margin: 0 auto;
  padding: 20px 0 14px;
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 2px;
  min-width: max-content;
  color: var(--navy);
}

.brand span,
h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.brand span {
  position: relative;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
}

.brand span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.main-nav a:not(.nav-cta):hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.nav-cta::after {
  content: "↗";
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

main {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 7%, rgba(207, 232, 246, 0.34), transparent 24%),
    radial-gradient(circle at 12% 33%, rgba(255, 220, 204, 0.28), transparent 20%),
    linear-gradient(120deg, var(--cream-2), #fff);
}

.section-band,
.split-section,
.connect-ways,
.notice,
.bring,
.contact {
  padding: clamp(36px, 5vw, 76px) clamp(24px, 6vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 4.6vw, 68px);
  align-items: center;
  min-height: 590px;
  padding-top: clamp(32px, 4.4vw, 56px);
  padding-bottom: clamp(30px, 4vw, 46px);
  background:
    radial-gradient(circle at 4% 4%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 76% 12%, rgba(255, 220, 204, 0.32), transparent 24%),
    radial-gradient(circle at 93% 46%, rgba(207, 232, 246, 0.4), transparent 16%),
    linear-gradient(110deg, var(--cream-2), #fff 58%, #fff5e7);
}

.hero h1 {
  position: relative;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(3.35rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
}

.name-mark {
  position: relative;
  display: inline-block;
}

.hero h2 {
  max-width: 560px;
  margin: 0;
  color: #c67a16;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  font-weight: 700;
  line-height: 1.06;
}

.eyebrow {
  color: var(--gold);
}

.hero p {
  max-width: 560px;
  margin: 0 0 22px;
  color: #1f2d46;
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 700;
  line-height: 1.48;
}

.hero-note {
  max-width: 590px;
  margin-top: 18px;
}

.hero-note p {
  margin-bottom: 0;
}

.tags,
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 18px;
}

.tags span,
.focus-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.tags svg {
  width: 15px;
  height: 15px;
  color: var(--navy-2);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.hero .button {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 0.98rem;
}

.button-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.5rem;
  line-height: 1;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button .linkedin-logo {
  width: 20px;
  height: 20px;
  color: currentColor;
  fill: currentColor;
  stroke: none;
}

.button:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(11, 39, 76, 0.22);
}

.secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-portrait {
  display: block;
  width: min(110%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(16, 38, 74, 0.12));
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 26px;
  color: #152641;
  font-size: clamp(0.86rem, 0.94vw, 1rem);
  font-weight: 800;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
}

.hero-meta span + span::before {
  content: "·";
  margin: 0 16px;
  color: #8a93a3;
}

.hero-meta img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.glance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
  padding: clamp(18px, 2.4vw, 30px) clamp(24px, 6vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(223, 151, 46, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.3), #fffaf4);
}

.glance-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: clamp(38px, 3.6vw, 54px) minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(9px, 0.95vw, 14px);
  padding: clamp(12px, 1.4vw, 18px);
  border: 1px solid rgba(234, 216, 196, 0.62);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(26, 43, 71, 0.07);
}

.glance-card img {
  justify-self: center;
  width: clamp(34px, 3.15vw, 48px);
  height: clamp(34px, 3.15vw, 48px);
  object-fit: contain;
}

.glance-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.24rem);
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(100deg, #fff7ed, #fffaf5 55%, #fff);
}

.section-copy .eyebrow,
.eyebrow {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.33rem;
  font-weight: 700;
}

.section-copy h2,
.section-heading h2,
.bring h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-copy p {
  color: #31415a;
  font-size: 1.05rem;
  font-weight: 600;
}

.callout,
.quote-line {
  border: 1px solid #efbd78;
  border-left: 4px solid var(--gold);
  padding: 15px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy) !important;
  font-weight: 850 !important;
}

.image-panel {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vienna-image {
  background: #f7e7d3;
}

.vienna-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: 48% 50%;
}

.centered {
  text-align: center;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.looking {
  position: relative;
  background:
    radial-gradient(circle at 88% 6%, rgba(207, 232, 246, 0.26), transparent 20%),
    linear-gradient(180deg, #fff, #fffaf4);
}

.feature-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.mini-grid article,
.resonates,
.notice article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 249, 0.72));
  box-shadow: 0 14px 34px rgba(16, 38, 74, 0.045);
}

.feature-card {
  min-height: 286px;
  padding: 22px 18px;
  text-align: center;
}

.feature-card h3,
.notice h3,
.resonates h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  font-weight: 700;
  line-height: 1.07;
}

.feature-card p,
.notice p,
.resonates p {
  margin: 0;
  color: #31415a;
  font-size: 0.94rem;
  font-weight: 610;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
}

.feature-card:nth-child(2) .icon,
.feature-card:nth-child(5) .icon {
  background: #ffe0d3;
}

.feature-card:nth-child(3) .icon {
  background: #ffe3a5;
}

.icon svg {
  width: 39px;
  height: 39px;
  stroke-width: 1.5;
}

.connect-ways {
  position: relative;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 220, 204, 0.52), transparent 18%),
    linear-gradient(100deg, var(--blue-2), #fff9f0);
}

.mini-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.36fr);
  gap: 28px;
  margin-top: 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.mini-grid article {
  min-height: 132px;
  padding: 18px 14px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.mini-grid article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  color: var(--navy-2);
}

.mini-grid article svg {
  width: 32px;
  height: 32px;
  color: var(--navy-2);
  stroke-width: 1.45;
}

.resonates {
  padding: 24px;
  background: #fff8f0;
}

.story {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 220, 204, 0.24), transparent 22%),
    linear-gradient(120deg, #f4fbff, #fffaf3);
}

.office-image {
  position: relative;
  background: linear-gradient(140deg, #f7e2d1, #fff 46%, #dbe9e5);
}

.desk {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 38px;
  height: 32px;
  border-radius: 16px;
  background: #d7a473;
}

.doctor-small {
  position: absolute;
  left: 28%;
  bottom: 70px;
  width: 112px;
  height: 168px;
  border-radius: 48px 48px 14px 14px;
  background:
    radial-gradient(circle at 51% 33%, #f4bf9d 0 32px, transparent 33px),
    linear-gradient(90deg, transparent 0 18%, #1f2e45 18% 80%, transparent 80%);
}

.doctor-small::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  width: 80px;
  height: 118px;
  border-radius: 50% 50% 30% 40%;
  background: linear-gradient(90deg, #b9783d, #e4a866);
  z-index: -1;
}

.laptop {
  position: absolute;
  right: 16%;
  bottom: 70px;
  width: 160px;
  height: 110px;
  transform: skewX(-7deg);
  border-radius: 8px;
  background: #dfe8ef;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.45);
}

.anatomy-model {
  position: absolute;
  left: 13%;
  bottom: 76px;
  width: 70px;
  height: 86px;
  border: 5px solid #c96d55;
  border-top: 0;
  border-radius: 0 0 45px 45px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

figure {
  margin: 0;
}

.gallery-image {
  display: block;
  aspect-ratio: 1.2;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 28%, #f6c59e 0 22px, transparent 23px),
    linear-gradient(160deg, #e8d5c3, #f7fbff 48%, #193455 48%);
  box-shadow: 0 16px 40px rgba(23, 48, 83, 0.12);
}

.gallery-image.speaking { background: linear-gradient(135deg, #c99869, #f8ede0 42%, #1b3150 42%); }
.gallery-image.clinical { background: linear-gradient(135deg, #f7f4ed, #dcefe9 52%, #f6c09a 52%); }
.gallery-image.exchange { background: linear-gradient(135deg, #d7e9f2, #f8dccd 48%, #243757 48%); }
.gallery-image.purpose { background: linear-gradient(135deg, #f7c8ad, #fff 45%, #1b3150 45%); }
.gallery-image.reading { background: linear-gradient(135deg, #e9d3bd, #f9fbff 44%, #d7a473 44%); }

figcaption {
  margin-top: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.notice {
  background:
    radial-gradient(circle at 6% 18%, rgba(255, 220, 204, 0.32), transparent 18%),
    #fff7ee;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.notice article {
  padding: 22px 18px;
}

.notice span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffe1d5;
  color: var(--navy);
}

.notice span svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.55;
}

.notice article:nth-child(even) span {
  background: var(--blue);
}

.bring {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 68%, rgba(207, 232, 246, 0.25), transparent 18%),
    linear-gradient(110deg, #fff8ee, #fff);
}

.book-art {
  position: relative;
  min-height: 210px;
}

.vase {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 88px;
  height: 104px;
  border: 3px solid #d3b293;
  border-radius: 14px 14px 48px 48px;
}

.vase::before {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 102px;
  width: 2px;
  height: 86px;
  background: #d3b293;
  box-shadow: -26px -4px 0 #d3b293, 28px -14px 0 #d3b293;
}

.books {
  position: absolute;
  right: 8px;
  bottom: 32px;
  width: 150px;
  height: 28px;
  border: 3px solid #c4a58a;
  border-radius: 10px;
  box-shadow: 0 -34px 0 -3px #fff8ee, 0 -34px 0 0 #c4a58a, -12px -68px 0 -3px #fff8ee, -12px -68px 0 0 #c4a58a;
}

.focus-tags {
  margin-top: 18px;
}

.bring-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 26px;
  color: #31415a;
  font-weight: 650;
}

li::before {
  content: "⊙";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 212, 125, 0.17), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(207, 232, 246, 0.12), transparent 20%),
    linear-gradient(120deg, #071d3b, #0d315c);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 4.3vw, 4.7rem);
}

.contact p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 610;
}

.gold {
  background: linear-gradient(120deg, #ffc45d, #ffdc8b);
  color: #071d3b;
}

.dark-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.quick {
  margin: 28px 0 10px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-link img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 1;
  transition: transform 180ms ease;
}

.social-link::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 3;
  padding: 6px 9px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: opacity 150ms ease, transform 150ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  border-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.social-link:hover img,
.social-link:focus-visible img {
  transform: scale(1.04);
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
}

label span {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.82);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 7px;
  background: rgba(1, 18, 40, 0.22);
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

input,
select {
  min-height: 42px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

select option {
  color: var(--ink);
}

.full {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: linear-gradient(120deg, #ffc45d, #ffdc8b);
  color: #071d3b;
}

.submit-button::after {
  content: "→";
  margin-left: 14px;
  font-size: 1.4rem;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-2) !important;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 14px;
    font-size: 0.78rem;
  }

  .feature-grid.five,
  .mini-grid,
  .notice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .glance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
    z-index: 30;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 25;
    display: grid;
    gap: 0;
    padding: 96px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 244, 0.98);
    transform: translateY(-110%);
    transition: transform 220ms ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav-cta {
    width: max-content;
    margin-top: 10px;
    padding: 0 24px !important;
  }

  .hero,
  .split-section,
  .mini-layout,
  .bring,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-copy {
    display: contents;
  }

  .hero-visual {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero h2 {
    order: 3;
  }

  .hero-copy > p {
    order: 4;
  }

  .hero-note {
    order: 5;
  }

  .hero .actions {
    order: 6;
    justify-content: center;
  }

  .hero-meta {
    order: 7;
    justify-content: center;
  }

  .hero-visual {
    min-height: 0;
    width: 100%;
  }

  .story .image-panel {
    order: -1;
  }

  .book-art {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 22px, 1360px);
  }

  main {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .section-band,
  .split-section,
  .glance,
  .connect-ways,
  .notice,
  .bring,
  .contact {
    padding: 34px 18px;
  }

  .hero h1 {
    margin-top: 8px;
    font-size: 3.25rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero-visual {
    margin-top: 6px;
  }

  .hero-portrait {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .hero p,
  .hero-note,
  .hero h2 {
    max-width: 100%;
  }

  .hero-meta {
    gap: 10px 0;
  }

  .hero-meta span + span::before {
    margin: 0 10px;
  }

  .feature-grid.five,
  .glance,
  .mini-grid,
  .notice-grid,
  .gallery,
  .bring-list {
    grid-template-columns: 1fr;
  }

  .glance-card {
    min-height: 86px;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .feature-card {
    min-height: auto;
  }

  .image-panel {
    min-height: 260px;
  }

  .actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
