:root {
  --ink: #171717;
  --muted: #5f615f;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dedbd3;
  --blue: #3559b8;
  --blue-dark: #183276;
  --clay: #9f5b46;
  --sage: #71816d;
  --gold: #c99b48;
  --shadow: 0 18px 48px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(53, 89, 184, 0.45);
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.small-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
}

.small-cta {
  background: var(--ink);
  color: white;
  justify-self: end;
}

.primary-button {
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(53, 89, 184, 0.26);
  color: white;
}

.primary-button:hover,
.small-cta:hover {
  background: var(--blue-dark);
}

.secondary-button {
  border: 1px solid rgba(23, 23, 23, 0.2);
  color: var(--ink);
}

.secondary-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  display: grid;
  min-height: min(760px, calc(100dvh - 76px));
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.76) 0%, rgba(10, 10, 10, 0.54) 38%, rgba(10, 10, 10, 0.16) 76%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  align-self: center;
  color: white;
  max-width: 760px;
  padding: clamp(64px, 10vw, 120px) clamp(22px, 7vw, 92px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c7ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 720px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  margin-bottom: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.3vw, 24px);
  max-width: 650px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  margin: 18px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.proof-strip {
  background: var(--ink);
  color: white;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
  background: #222220;
  padding: 24px clamp(20px, 4vw, 54px);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 18px;
  margin-bottom: 4px;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.74);
}

.section,
.process-band,
.cta-band {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1.18fr);
  margin: 0 auto 42px;
  max-width: 1180px;
}

.section-heading.compact {
  display: block;
  max-width: 840px;
  text-align: center;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  margin: 18px auto 0;
  max-width: 680px;
}

.intro {
  background: var(--surface);
}

.split-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.showcase-panel {
  align-items: end;
  background: #f5f2ec;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1fr;
  padding: 18px;
}

.showcase-panel img {
  aspect-ratio: 1;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.showcase-panel p,
.style-card p,
.process-list p,
.faq p,
.cta-band p {
  color: var(--muted);
}

.mini-label {
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.style-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.style-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.style-card:hover {
  border-color: rgba(53, 89, 184, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.style-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.style-card h3,
.style-card p,
.style-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.style-card h3 {
  margin-top: 20px;
}

.style-card a {
  align-items: center;
  background: rgba(53, 89, 184, 0.09);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-bottom: 22px;
  margin-top: auto;
  min-height: 46px;
  padding: 10px 14px;
}

.style-card a:hover {
  background: var(--blue);
  color: white;
}

.gift-band {
  align-items: center;
  background: #272521;
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.gift-copy {
  max-width: 620px;
}

.gift-copy h2 {
  margin-bottom: 18px;
}

.gift-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.gift-list span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  min-height: 56px;
  padding: 16px 18px;
}

.process-band {
  background: #eef0ea;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 42px auto 0;
  max-width: 1180px;
  padding: 0;
}

.process-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.process-list span {
  color: var(--sage);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq {
  background: var(--surface);
}

.faq-list {
  margin: 0 auto;
  max-width: 880px;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  min-height: 44px;
}

details p {
  margin: 8px 0 0;
  max-width: 720px;
}

.cta-band {
  background: var(--blue-dark);
  color: white;
  text-align: center;
}

.cta-band h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin: 18px auto 28px;
  max-width: 620px;
}

.cta-band .primary-button {
  background: white;
  color: var(--blue-dark);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  min-height: 88px;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  min-height: 44px;
  padding-top: 10px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .section-heading,
  .split-showcase,
  .proof-strip,
  .style-grid,
  .gift-band,
  .process-list {
    grid-template-columns: 1fr;
  }

  .style-grid,
  .process-list {
    max-width: 640px;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 24px;
  }

  .small-cta {
    min-height: 44px;
    padding: 10px 14px;
  }

  .hero {
    min-height: calc(100dvh - 68px);
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.5));
  }

  .hero-content {
    align-self: end;
    padding: 42px 18px 56px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .showcase-panel {
    grid-template-columns: 1fr;
  }

  .gift-list {
    grid-template-columns: 1fr;
  }

  .section,
  .process-band,
  .cta-band,
  .gift-band {
    padding: 58px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
