:root {
  --navy: #14243a;
  --navy-deep: #0d192a;
  --navy-soft: #263d59;
  --gold: #b78b47;
  --gold-light: #d9bd87;
  --cream: #f8f4ec;
  --paper: #fffdf9;
  --blush: #eadbd5;
  --ink: #202733;
  --muted: #66707b;
  --line: rgba(20, 36, 58, 0.14);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --shadow: 0 28px 70px rgba(18, 30, 47, 0.13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus { top: 16px; }

.shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad { padding: 118px 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.23em;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.48;
  letter-spacing: 0.04em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 36, 58, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 28px rgba(20, 36, 58, 0.08);
}

.header-inner {
  width: min(1380px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 286px;
}

.wordmark-logo {
  width: 286px;
  height: auto;
  flex: 0 0 auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 36px);
  color: #344153;
  font-size: 0.86rem;
  font-weight: 600;
}

.global-nav a {
  position: relative;
  white-space: nowrap;
}

.global-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after { right: 0; }

.nav-contact {
  padding: 11px 20px;
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
  transition: color 180ms ease, background 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--navy);
  background: transparent;
}

.menu-button { display: none; }

.hero {
  min-height: 820px;
  padding-top: 88px;
  display: grid;
  grid-template-columns: minmax(420px, 45%) 1fr;
  background: var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(620px, calc(100% - 72px));
  margin-left: max(32px, calc((100vw - 1380px) / 2));
  padding: 88px 40px 88px 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  left: -27%;
  top: 50%;
  border: 1px solid rgba(183, 139, 71, 0.25);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  line-height: 1.34;
  letter-spacing: 0.06em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: #4f5b68;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 27, 44, 0.16);
}

.button-primary {
  min-width: 184px;
  color: white;
  background: var(--navy);
}

.text-link {
  padding: 8px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span { margin-left: 7px; }

.launch-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 42px 0 0;
  color: #6d747d;
  font-size: 0.78rem;
}

.launch-note span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(183, 139, 71, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 732px;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 244, 236, 0.32), transparent 22%), linear-gradient(0deg, rgba(13, 25, 42, 0.18), transparent 38%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  min-width: 280px;
  padding: 18px 22px;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.9);
  border-left: 2px solid var(--gold);
  backdrop-filter: blur(10px);
}

.hero-caption span,
.hero-caption strong { display: block; }
.hero-caption span { color: var(--gold); font: 700 0.68rem Georgia, serif; letter-spacing: 0.18em; }
.hero-caption strong { margin-top: 3px; font-family: var(--serif); font-size: 1rem; font-weight: 500; letter-spacing: 0.08em; }

.trust-bar { color: white; background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.08); }
.trust-bar-inner { width: min(1380px, calc(100% - 64px)); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar p { position: relative; min-height: 112px; margin: 0; padding: 24px 24px 22px 54px; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-bar p:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
.trust-bar p > span { position: absolute; left: 20px; top: 27px; color: var(--gold-light); font: 0.66rem Georgia, serif; }
.trust-bar strong, .trust-bar small { display: block; }
.trust-bar strong { font-family: var(--serif); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.06em; }
.trust-bar small { margin-top: 7px; color: rgba(255,255,255,0.55); font-size: 0.69rem; letter-spacing: 0.04em; }

.intro { background: var(--paper); }

.intro-grid {
  display: grid;
  grid-template-columns: 60px minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.section-index {
  padding-top: 8px;
  color: var(--gold);
  font: 1rem Georgia, serif;
  letter-spacing: 0.16em;
}

.intro-copy {
  padding-top: 38px;
  color: #56616c;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 2.15;
}

.intro-copy p { margin: 0 0 18px; }

.collection { background: var(--navy); color: white; }
.collection h2 { color: white; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: inherit;
  opacity: 0.72;
  line-height: 2;
}

.featured-item {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(380px, 0.6fr);
  min-height: 560px;
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.featured-image { position: relative; overflow: hidden; }

.featured-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.featured-item:hover .featured-image img { transform: scale(1.025); }

.image-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 18px;
  color: white;
  background: rgba(20, 36, 58, 0.92);
  font: 700 0.7rem Georgia, serif;
  letter-spacing: 0.18em;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
  color: var(--ink);
}

.availability {
  margin: 0 0 18px;
  color: var(--gold);
  font: 700 0.68rem Georgia, serif;
  letter-spacing: 0.18em;
}

.featured-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.featured-copy > p:not(.availability) { margin: 26px 0; color: #5a6470; }

.product-meta {
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}

.product-meta span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
}

.product-meta b {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-status-note {
  margin: 22px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.75rem;
  line-height: 1.75;
}

.button-outline { color: var(--navy); border-color: var(--navy); }
.button-outline:hover, .button-outline:focus-visible { color: white; background: var(--navy); }

.future { background: var(--cream); }
.section-heading.compact { margin-bottom: 52px; }
.future .section-heading > p, .flow .section-heading > p { color: var(--muted); opacity: 1; }

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.occasion-grid article {
  min-width: 0;
  background: rgba(255,255,255,0.45);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.product-reassurance { display: flex; flex-wrap: wrap; gap: 8px; margin: -12px 0 28px; }
.product-reassurance span { padding: 7px 10px; color: #59636e; background: var(--cream); border: 1px solid var(--line); font-size: 0.68rem; font-weight: 700; }
.product-reassurance span::before { content: "✓"; margin-right: 6px; color: var(--gold); }

.occasion-grid article:hover { background: white; }

.occasion-photo {
  position: relative;
  aspect-ratio: 1.45 / 1;
  background-image: url("assets/ceremony-category-set.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.occasion-grid article:hover .occasion-photo { transform: scale(1.02); }
.occasion-photo-1 { background-position: 0 0; }
.occasion-photo-2 { background-position: 50% 0; }
.occasion-photo-3 { background-position: 100% 0; }
.occasion-photo-4 { background-position: 0 100%; }
.occasion-photo-5 { background-position: 50% 100%; }
.occasion-photo-6 { background-position: 100% 100%; }

.occasion-photo small {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: white;
  background: rgba(20, 36, 58, 0.78);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.occasion-copy { padding: 24px 26px 28px; }

.occasion-grid span {
  color: var(--gold);
  font: 0.72rem Georgia, serif;
  letter-spacing: 0.14em;
}

.occasion-grid h3 {
  margin: 18px 0 5px;
  color: var(--navy);
  font-size: 1.34rem;
  letter-spacing: 0.06em;
}

.occasion-grid p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.future-note { margin: 24px 0 0; color: var(--muted); font-size: 0.8rem; }

.standards { color: white; background: #0d1b2d; }
.standard-heading { display: grid; grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr); gap: 26px 90px; align-items: end; margin-bottom: 58px; }
.standard-heading .eyebrow { grid-column: 1 / -1; }
.standard-heading h2 { color: white; }
.standard-heading > p:last-child { margin: 0 0 8px; color: rgba(255,255,255,0.64); font-family: var(--serif); line-height: 2; }
.standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15); }
.standard-grid article { min-height: 270px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
.standard-grid article > span { color: var(--gold-light); font: 0.67rem Georgia, serif; letter-spacing: 0.18em; }
.standard-grid h3 { margin: 58px 0 14px; color: white; font-size: 1.16rem; }
.standard-grid p { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.83rem; line-height: 1.85; }
.operator-seal { display: flex; align-items: center; gap: 22px; margin-top: 34px; padding: 26px 30px; background: rgba(255,255,255,0.05); border: 1px solid rgba(217,189,135,0.35); }
.operator-monogram { display: grid; place-items: center; flex: 0 0 62px; width: 62px; height: 62px; color: var(--gold-light); border: 1px solid var(--gold); border-radius: 50%; font: 1rem Georgia, serif; letter-spacing: 0.12em; }
.operator-seal p { display: grid; grid-template-columns: auto 1fr; gap: 3px 18px; margin: 0; }
.operator-seal small { color: var(--gold-light); font: 0.62rem Georgia, serif; letter-spacing: 0.16em; }
.operator-seal strong { color: white; font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.operator-seal span { grid-column: 1 / -1; color: rgba(255,255,255,0.56); font-size: 0.76rem; }

.principles { background: var(--paper); }

.principles .shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
}

.principles-intro { position: sticky; top: 136px; align-self: start; }

.principle-list { border-top: 1px solid var(--line); }

.principle-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list article > span { padding-top: 5px; color: var(--gold); font: 0.8rem Georgia, serif; }
.principle-list h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.4rem; }
.principle-list p { margin: 0; color: var(--muted); }

.flow { color: white; background: var(--navy-deep); }
.flow h2 { color: white; }
.flow .section-heading > p { color: rgba(255,255,255,0.66); }

.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
}

.flow-list li {
  min-height: 250px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.flow-list span { color: var(--gold-light); font: 0.75rem Georgia, serif; letter-spacing: 0.14em; }
.flow-list h3 { margin: 54px 0 12px; color: white; font-size: 1.16rem; }
.flow-list p { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.86rem; line-height: 1.8; }

.brand-story {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.story-mark {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.story-mark::before,
.story-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(183, 139, 71, 0.18);
  border-radius: 50%;
}

.story-mark::before {
  width: min(38vw, 520px);
  aspect-ratio: 1;
}

.story-mark::after {
  width: min(26vw, 350px);
  aspect-ratio: 1;
}

.story-logo {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 72px));
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(99, 69, 25, 0.08));
}

.story-copy {
  align-self: center;
  max-width: 620px;
  padding: 90px clamp(40px, 8vw, 130px) 90px clamp(40px, 6vw, 100px);
}

.story-copy p:last-child {
  margin: 34px 0 0;
  color: #59636e;
  font-family: var(--serif);
  line-height: 2.2;
}

.faq { background: var(--paper); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(60px, 9vw, 140px);
}

.faq-heading > p:last-child { margin-top: 28px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { margin: -4px 54px 27px 0; color: var(--muted); }

.contact {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 100px 32px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  text-align: center;
}

.contact::before,
.contact::after,
.contact-orbit {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 189, 135, 0.22);
  border-radius: 50%;
}

.contact::before { width: 560px; height: 560px; left: -190px; top: -250px; }
.contact::after { width: 780px; height: 780px; right: -430px; bottom: -570px; }
.contact-orbit { width: 330px; height: 330px; left: 50%; top: 50%; transform: translate(-50%,-50%); }

.contact-inner { position: relative; z-index: 2; max-width: 700px; }
.contact h2 { color: white; }
.contact-inner > p:not(.eyebrow) { max-width: 620px; margin: 28px auto 34px; color: rgba(255,255,255,0.72); }
.button-light { color: var(--navy); background: white; }
.contact-address { display: block; width: max-content; margin: 24px auto 0; color: var(--gold-light); font: 0.78rem Georgia, serif; letter-spacing: 0.12em; }

.site-footer { padding: 58px 0; color: rgba(255,255,255,0.68); background: #091321; }

.footer-inner {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
}

.wordmark-footer {
  width: max-content;
  padding: 7px 12px;
  background: white;
  border-radius: 2px;
}
.wordmark-footer .wordmark-logo { width: 280px; }
.footer-meta p { margin: 0; font-size: 0.76rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: 0.7rem; }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,0.3); }
.copyright { margin: 0; font: 0.7rem Georgia, serif; letter-spacing: 0.06em; }

.mobile-contact { display: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1080px) {
  .global-nav { gap: 20px; }
  .global-nav a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: minmax(390px, 48%) 1fr; }
  .flow-list { grid-template-columns: repeat(3, 1fr); }
  .featured-item { grid-template-columns: 1.15fr 0.85fr; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  .shell { width: min(100% - 38px, 1180px); }
  .section-pad { padding: 84px 0; }
  .site-header { height: 74px; }
  .header-inner { width: calc(100% - 36px); }
  .wordmark { min-width: 222px; }
  .wordmark-logo { width: 222px; }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 12px;
    color: var(--navy);
    background: transparent;
    border: 0;
  }

  .menu-button-label { font: 700 0.66rem Georgia, serif; letter-spacing: 0.16em; }
  .menu-lines { position: relative; width: 25px; height: 14px; }
  .menu-lines i { position: absolute; left: 0; width: 25px; height: 1px; background: currentColor; transition: transform 180ms ease, top 180ms ease; }
  .menu-lines i:first-child { top: 3px; }
  .menu-lines i:last-child { top: 11px; }
  .menu-button[aria-expanded="true"] .menu-lines i:first-child { top: 7px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-lines i:last-child { top: 7px; transform: rotate(-45deg); }

  .global-nav {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px 44px;
    color: var(--navy);
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .global-nav.open { transform: translateX(0); visibility: visible; }
  .global-nav a:not(.nav-contact) { display: block; }
  .global-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1rem; }
  .global-nav a::after { display: none; }
  .nav-contact { margin-top: 22px; padding: 14px 20px !important; text-align: center; }

  .hero {
    min-height: auto;
    padding-top: 74px;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    width: min(100% - 38px, 650px);
    margin: 0 auto;
    padding: 78px 0 66px;
  }

  .hero-copy::after { width: 430px; left: -220px; }
  .hero h1 { font-size: clamp(2.7rem, 10vw, 4.4rem); }
  .hero-visual { width: 100%; min-height: 520px; }
  .hero-caption { right: 20px; bottom: 20px; min-width: 250px; }
  .trust-bar-inner { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .trust-bar p, .trust-bar p:first-child { border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.12); }

  .intro-grid,
  .section-heading,
  .principles .shell,
  .faq-grid { grid-template-columns: 1fr; }

  .intro-grid { gap: 26px; }
  .section-index { display: none; }
  .intro-copy { padding-top: 0; }
  .section-heading { gap: 24px; }
  .section-heading > p { max-width: 620px; }

  .featured-item { grid-template-columns: 1fr; }
  .featured-image img { min-height: 460px; }
  .featured-copy { padding: 48px 36px; }

  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-heading { grid-template-columns: 1fr; gap: 22px; }
  .standard-heading .eyebrow { grid-column: auto; }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-intro { position: static; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }

  .brand-story { grid-template-columns: 1fr; }
  .story-mark { min-height: 460px; }
  .story-copy { max-width: none; padding: 30px 38px 84px; }

  .faq-grid { gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .section-pad { padding: 72px 0; }
  .header-inner { gap: 12px; }
  .wordmark { min-width: 0; }
  .wordmark-logo { width: 198px; }
  .menu-button-label { display: none; }
  h2 { font-size: 2rem; }
  .hero-copy { padding: 64px 0 54px; }
  .hero h1 { font-size: 2.75rem; line-height: 1.42; }
  .hero-lead { margin-top: 26px; font-size: 1rem; line-height: 1.95; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button-primary { width: 100%; }
  .text-link { align-self: flex-start; }
  .launch-note { align-items: flex-start; margin-top: 32px; line-height: 1.7; }
  .launch-note span { flex: 0 0 auto; margin-top: 8px; }
  .hero-visual { min-height: 400px; }
  .hero-caption { left: 18px; right: 18px; bottom: 18px; min-width: 0; }

  .featured-image img { min-height: 330px; }
  .featured-copy { padding: 38px 24px 42px; }
  .featured-copy h3 { font-size: 1.72rem; }
  .product-meta span { align-items: flex-start; }
  .product-meta b { text-align: right; }

  .occasion-grid { grid-template-columns: 1fr; }
  .occasion-copy { padding: 22px 22px 26px; }
  .occasion-grid h3 { margin-top: 16px; }

  .principle-list article { grid-template-columns: 38px 1fr; gap: 16px; padding: 30px 0; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: 0; padding: 28px; }
  .flow-list h3 { margin-top: 28px; }

  .story-mark { min-height: 350px; }
  .story-mark::before { width: 310px; }
  .story-mark::after { width: 220px; }
  .story-copy { padding: 20px 20px 72px; }
  .faq-list summary { padding-right: 42px; }
  .faq-list details p { margin-right: 6px; }

  .contact { min-height: 500px; padding: 78px 20px; }
  .contact .button { width: 100%; }
  .contact-address { font-size: 0.72rem; }

  .site-footer { padding: 48px 0; }
  .footer-inner { width: calc(100% - 38px); grid-template-columns: 1fr; gap: 28px; }
  .wordmark-footer .wordmark-logo { width: 238px; }
  .copyright { grid-column: auto; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid article { min-height: 220px; }
  .standard-grid h3 { margin-top: 38px; }
  .operator-seal { align-items: flex-start; padding: 22px 18px; }
  .operator-seal p { display: block; }
  .operator-seal small, .operator-seal strong, .operator-seal span { display: block; }
  .operator-seal strong { margin: 4px 0 8px; }
  .mobile-contact { display: flex; position: fixed; z-index: 90; left: 14px; right: 14px; bottom: 12px; min-height: 52px; align-items: center; justify-content: center; color: white; background: var(--navy); border: 1px solid var(--gold); box-shadow: 0 12px 32px rgba(9,19,33,0.28); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; }
  .site-footer { padding-bottom: 116px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
