:root {
  --navy: #071b3a;
  --navy-deep: #031126;
  --gold: #b8862f;
  --soft-gold: #e8d8b2;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --text: #24221f;
  --muted: #625f58;
  --line: rgba(184, 134, 47, .24);
  --shadow: 0 18px 45px rgba(7, 27, 58, .08);
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}
img, iframe { max-width: 100%; }
a { color: inherit; }

.hero {
  min-height: 760px;
  color: white;
  background:
    linear-gradient(105deg, rgba(7,27,58,.98), rgba(7,27,58,.90)),
    radial-gradient(circle at 82% 18%, rgba(184,134,47,.28), transparent 34%),
    var(--navy);
  padding: 30px clamp(24px, 5vw, 72px) 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(232,216,178,.58);
  pointer-events: none;
}
nav,
.hero-content {
  width: min(var(--content), 100%);
  margin-inline: auto;
}
nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.brand {
  flex: 0 0 auto;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  color: var(--soft-gold);
  letter-spacing: .04em;
  line-height: 1;
}
.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: .96rem;
  white-space: nowrap;
  opacity: .94;
}
.nav-links a:hover { color: var(--soft-gold); }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  padding-top: clamp(72px, 10vh, 110px);
}
.hero-text { min-width: 0; }
.hero-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-cover img {
  width: min(360px, 100%);
  max-height: 560px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
  background: white;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
}
h1, h2, h3, p { overflow-wrap: normal; word-break: normal; }
h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.04;
  margin: 10px 0 24px;
  font-weight: 400;
  letter-spacing: -.025em;
}
h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.45rem);
  line-height: 1.1;
  margin: 6px 0 18px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -.015em;
}
h3 {
  color: var(--navy);
  font-size: 1.36rem;
  line-height: 1.25;
  margin: 0 0 12px;
}
.subhead {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}
.buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: white; }
.secondary { border: 1px solid var(--soft-gold); color: white; }

main section { padding: clamp(64px, 7vw, 96px) clamp(24px, 5vw, 72px); }
main section > * {
  width: min(var(--content), 100%);
  margin-left: auto;
  margin-right: auto;
}
.intro {
  max-width: none;
  text-align: center;
}
.intro h2 { max-width: 800px; margin-inline: auto; }
.intro p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.14rem;
  color: var(--muted);
}
.section-title { max-width: 760px; margin: 0 0 38px; }
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }

.gallery-section {
  background: white;
  border-block: 1px solid var(--line);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.gallery-card {
  min-width: 0;
  margin: 0;
  background: var(--cream);
  padding: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(7,27,58,.13); }
.gallery-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  background: white;
}

.book-preview-section { background: #f8f5ee; border-bottom: 1px solid var(--line); }
.book-preview-frame {
  width: min(980px, 100%);
  height: clamp(620px, 78vh, 860px);
  margin: 0 auto;
  padding: 10px;
  background: white;
  border: 1px solid rgba(184,134,47,.38);
  box-shadow: 0 24px 60px rgba(7,27,58,.12);
}
.book-preview-frame iframe { width: 100%; height: 100%; display: block; border: 0; background: #eee; }
.book-preview-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.book-button { background: var(--navy); color: white; }
.book-text-link { color: var(--navy); font-weight: 700; text-underline-offset: 4px; }
.mobile-book-preview { display: none; }

.showcase, .packages, .process { background: var(--cream); }
.cards, .pricing, .steps { display: grid; gap: 22px; }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards article, .pricing article {
  min-width: 0;
  background: white;
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.cards article p, .pricing article > p:not(.price) { color: var(--muted); margin-bottom: 0; }

.feature {
  background: white;
  border-block: 1px solid var(--line);
}
.feature > div:first-child,
.feature > ul { width: auto; margin: 0; }
.feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: start;
}
.feature ul, .pricing ul { padding-left: 20px; }
.feature li { margin-bottom: 10px; font-size: 1.04rem; }

.pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.price { font-size: 1.9rem; color: var(--gold); margin: 0 0 10px; }
.highlight { border: 2px solid var(--gold) !important; transform: translateY(-8px); }

.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps div { min-width: 0; border-top: 2px solid var(--gold); padding-top: 18px; }
.steps span { color: var(--gold); font-weight: 700; letter-spacing: .12em; }
.steps p { margin: 8px 0 0; color: var(--muted); }

.contact { text-align: center; background: var(--navy); color: white; }
.contact h2 { max-width: 850px; color: white; margin-inline: auto; }
.contact p { max-width: 650px; margin: 0 auto 28px; color: rgba(255,255,255,.82); }
footer { text-align: center; padding: 24px; background: var(--navy-deep); color: rgba(255,255,255,.75); font-size: .9rem; }
footer p { margin: 0; }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: minmax(0, 1.05fr) minmax(250px, .75fr); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards, .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing article:last-child { grid-column: 1 / -1; max-width: 580px; width: 100%; justify-self: center; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero { padding: 24px 22px 58px; }
  .hero::after { inset: 10px; }
  nav { align-items: flex-start; flex-direction: column; gap: 18px; padding: 4px 4px 0; }
  .nav-links { justify-content: flex-start; gap: 10px 18px; }
  .nav-links a { font-size: .88rem; }
  .hero-content { grid-template-columns: 1fr; gap: 42px; padding-top: 54px; }
  .hero-text { text-align: left; }
  .hero-cover { justify-content: center; }
  .hero-cover img { width: min(310px, 82vw); max-height: none; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .buttons { align-items: stretch; }
  .button { flex: 1 1 220px; }
  main section { padding: 62px 22px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .cards, .pricing, .steps, .feature { grid-template-columns: 1fr; }
  .pricing article:last-child { grid-column: auto; max-width: none; }
  .highlight { transform: none; }
  .book-preview-frame { height: 68vh; min-height: 520px; padding: 6px; }
}

@media (max-width: 520px) {
  body { font-size: 15px; }
  .brand { font-size: 1.55rem; }
  .nav-links { row-gap: 8px; }
  .nav-links a { font-size: .82rem; }
  .hero-content { padding-top: 42px; }
  .subhead { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { padding: 9px; }
  .book-preview-frame { display: none; }
  .mobile-book-preview {
    display: block;
    width: min(330px, 100%);
    margin: 0 auto;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .mobile-book-preview img { display: block; width: 100%; }
  .book-preview-actions { gap: 14px; }
  .book-preview-actions .button, .book-text-link { width: 100%; }
  .book-text-link { text-align: center; }
}
