:root {
  --paper: #f7f3ea;
  --paper-deep: #eee5d6;
  --card: #fffdf8;
  --ink: #262521;
  --muted: #6c6860;
  --navy: #18344f;
  --navy-deep: #10283e;
  /* Dark enough for readable eyebrow/label text on the ivory canvas. */
  --gold: #806738;
  --gold-soft: #d8c39b;
  --sage: #a7af9b;
  --terracotta: #b96d4d;
  --line: #e5dccd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(45, 39, 30, 0.12);
  --shadow-soft: 0 12px 34px rgba(45, 39, 30, 0.09);
  --radius: 22px;
  --max-width: 1200px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 7% 4%, rgba(179, 146, 85, 0.12), transparent 28rem),
    radial-gradient(circle at 94% 31%, rgba(167, 175, 155, 0.13), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: radial-gradient(rgba(74, 61, 42, 0.09) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 4px;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 220, 205, 0.9);
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: 76px;
  margin-inline: auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(179, 146, 85, 0.58);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-name {
  letter-spacing: -0.025em;
}

.brand-name span {
  color: var(--gold);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 600;
}

.main-nav a,
.footer-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.2px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.2px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 13px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.8rem;
}

.button--large {
  min-height: 58px;
  padding: 15px 24px;
  font-size: 0.95rem;
}

.button--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(24, 52, 79, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--navy-deep);
  box-shadow: 0 14px 28px rgba(24, 52, 79, 0.25);
}

.button--cream {
  background: var(--paper);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(10, 28, 43, 0.22);
}

.button--cream:hover,
.button--cream:focus-visible {
  background: var(--white);
  box-shadow: 0 16px 32px rgba(10, 28, 43, 0.3);
}

.button-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateX(3px) rotate(45deg);
}

.hero {
  padding: 82px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

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

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 670px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.7vw, 5.75rem);
  letter-spacing: -0.065em;
  line-height: 0.97;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
  border-bottom: 1px solid rgba(24, 52, 79, 0.32);
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.text-link span {
  font-size: 1.1em;
  font-weight: 500;
}

.external-note {
  max-width: 440px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 39px 0 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  min-width: 112px;
  padding: 0 19px;
  border-left: 1px solid var(--line);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  margin: 0;
}

.hero-stage {
  position: relative;
  min-height: 570px;
  isolation: isolate;
  border: 1px solid rgba(208, 192, 163, 0.58);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(237, 228, 211, 0.72)),
    var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero-stage::before {
  top: 9%;
  right: 9%;
  width: 34%;
  height: 28%;
  border-top: 1px solid rgba(179, 146, 85, 0.45);
  border-right: 1px solid rgba(179, 146, 85, 0.45);
  border-radius: 0 25px 0 0;
}

.hero-stage::after {
  right: 10%;
  bottom: 10%;
  width: 52%;
  height: 1px;
  background: rgba(179, 146, 85, 0.5);
  transform: rotate(-9deg);
}

.paper-card {
  position: absolute;
  overflow: hidden;
  border: 5px solid rgba(255, 253, 248, 0.85);
  border-radius: 3px;
  background: var(--card);
  box-shadow: 0 22px 35px rgba(39, 31, 22, 0.18), 0 2px 5px rgba(39, 31, 22, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.paper-card img {
  width: 100%;
  height: auto;
}

.paper-card--floral {
  top: 8%;
  left: 9%;
  z-index: 3;
  width: 41%;
  transform: rotate(-4deg);
}

.paper-card--night {
  top: 10%;
  right: 9%;
  z-index: 2;
  width: 34%;
  transform: rotate(4deg);
}

.paper-card--month {
  bottom: 9%;
  left: 8%;
  z-index: 4;
  width: 50%;
  transform: rotate(2.5deg);
}

.paper-card--earth {
  right: 8%;
  bottom: 8%;
  z-index: 3;
  width: 36%;
  transform: rotate(-3.5deg);
}

.paper-card--floral:hover,
.paper-card--month:hover {
  transform: translateY(-5px) rotate(-3deg);
  box-shadow: 0 28px 42px rgba(39, 31, 22, 0.22), 0 2px 5px rgba(39, 31, 22, 0.13);
}

.paper-card--night:hover,
.paper-card--earth:hover {
  transform: translateY(-5px) rotate(3deg);
  box-shadow: 0 28px 42px rgba(39, 31, 22, 0.22), 0 2px 5px rgba(39, 31, 22, 0.13);
}

.collection-seal {
  position: absolute;
  right: 6%;
  top: 46%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(179, 146, 85, 0.8);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.collection-seal strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero-visual figcaption {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
}

.benefits {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
}

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

.benefit-grid article {
  min-height: 174px;
  padding: 27px 22px 25px;
  border-left: 1px solid var(--line);
}

.benefit-grid article:first-child {
  border-left: 0;
}

.benefit-grid article > span,
.use-grid article > span {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.benefit-grid h3,
.use-grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.benefit-grid p,
.use-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  align-items: end;
  gap: 42px;
}

.section-heading--split > p {
  max-width: 430px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading--center {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  margin: 0;
  color: var(--muted);
}

h2 {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.7vw, 4.35rem);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.collection-overview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.collection-overview picture,
.collection-overview img {
  width: 100%;
}

.collection-overview img {
  height: auto;
}

.overview-action {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 155px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  background: rgba(24, 52, 79, 0.92);
  color: var(--white);
  text-align: left;
  box-shadow: 0 12px 26px rgba(18, 35, 48, 0.2);
  transition: background-color 180ms ease, transform 180ms ease;
}

.overview-action:hover,
.overview-action:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-3px);
}

.overview-action span {
  color: var(--gold-soft);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.overview-action strong {
  margin-top: 3px;
  font-size: 0.8rem;
}

.gallery-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 53px 0 25px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--gold);
  color: var(--navy);
}

.filter-button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.gallery-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.gallery-count span {
  color: var(--navy);
  font-weight: 800;
}

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

.calendar-card {
  min-width: 0;
  padding: 13px 13px 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 4px 0 rgba(229, 220, 205, 0.2);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.calendar-card:hover,
.calendar-card:focus-within {
  border-color: rgba(179, 146, 85, 0.62);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.card-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.card-image {
  display: grid;
  min-height: 316px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, #eee5d8, #faf8f2);
}

.card-image--dark {
  background: #282622;
}

.card-image--landscape {
  min-height: 316px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.card-preview:hover .card-image img,
.card-preview:focus-visible .card-image img {
  transform: scale(1.035);
}

.preview-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(24, 52, 79, 0.9);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.card-preview:hover .preview-label,
.card-preview:focus-visible .preview-label {
  opacity: 1;
  transform: translateY(0);
}

.card-copy {
  padding: 17px 3px 0;
}

.tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid rgba(179, 146, 85, 0.4);
  border-radius: 999px;
  color: #806738;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.card-copy h3 {
  margin: 12px 0 5px;
  font-size: 1.38rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.card-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 51px;
}

.section-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.formats {
  background: var(--navy);
  color: var(--white);
}

.formats-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}

.formats h2 {
  color: var(--white);
}

.formats-intro > p {
  max-width: 440px;
  margin: 0 0 5px auto;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.98rem;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.use-grid article {
  min-height: 184px;
  padding: 28px 22px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.use-grid article:first-child {
  border-left: 0;
}

.use-grid article > span {
  color: var(--gold-soft);
}

.use-grid h3 {
  color: var(--white);
}

.use-grid p {
  color: rgba(255, 253, 248, 0.67);
}

.print-guide {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.4fr) minmax(220px, 0.75fr);
  gap: 35px;
  margin-top: 58px;
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.section-number {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.print-guide h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.print-guide__copy p,
.print-guide__copy li {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.84rem;
  line-height: 1.63;
}

.print-guide__copy p {
  margin-bottom: 18px;
}

.print-guide__copy strong,
.holiday-note strong {
  color: var(--white);
}

.print-guide__copy ul {
  display: grid;
  gap: 9px;
  padding-left: 17px;
  margin: 0;
}

.holiday-note {
  align-self: start;
  padding: 18px 19px;
  border: 1px solid rgba(216, 195, 155, 0.38);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.08);
}

.holiday-note span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.holiday-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  line-height: 1.58;
}

.steps {
  background: rgba(255, 253, 248, 0.62);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 190px;
  padding: 31px 30px;
  border-left: 1px solid var(--line);
}

.steps-list li:first-child {
  border-left: 0;
}

.steps-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.steps-list h3 {
  margin: 3px 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.steps-list p {
  max-width: 27ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.58;
}

.faq {
  padding-top: 102px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.faq-heading {
  position: sticky;
  top: 115px;
}

.faq-heading h2 {
  margin-bottom: 19px;
  font-size: clamp(2.45rem, 4vw, 3.7rem);
}

.faq-heading > p:not(.eyebrow) {
  max-width: 31ch;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 16px 3px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 70ch;
  padding: 0 42px 23px 3px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.related {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.45);
}

.related-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 55px;
  align-items: start;
}

.related h2 {
  max-width: 360px;
  font-size: clamp(2.35rem, 4vw, 3.55rem);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.related-links a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  min-height: 68px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, padding-left 180ms ease;
}

.related-links a:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.related-links a:nth-child(even) {
  padding-left: 20px;
}

.related-links a:hover,
.related-links a:focus-visible {
  padding-left: 10px;
  color: var(--terracotta);
}

.related-links a:nth-child(even):hover,
.related-links a:nth-child(even):focus-visible {
  padding-left: 26px;
}

.related-links span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  font-weight: 500;
}

.related-links small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta {
  padding: 81px 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(179, 146, 85, 0.23), transparent 21rem),
    var(--navy);
  color: var(--white);
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 690px;
  color: var(--white);
}

.final-cta__inner > div:first-child > p:last-child {
  max-width: 49ch;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.95rem;
}

.final-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.final-cta__action small {
  max-width: 34ch;
  color: rgba(255, 253, 248, 0.57);
  font-size: 0.7rem;
  line-height: 1.5;
}

.site-footer {
  background: #10283e;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  padding-top: 58px;
  padding-bottom: 56px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand > p {
  max-width: 26ch;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-legal-note {
  padding-bottom: 23px;
  color: rgba(255, 253, 248, 0.47);
  font-size: 0.68rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-nav h2 {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 248, 0.48);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--gold-soft);
}

.preview-dialog {
  width: min(900px, calc(100% - 24px));
  max-width: 900px;
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(10, 22, 31, 0.38);
}

.preview-dialog::backdrop {
  background: rgba(13, 27, 39, 0.74);
  backdrop-filter: blur(4px);
}

.dialog-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: calc(100dvh - 24px);
}

.dialog-head,
.dialog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
}

.dialog-head {
  border-bottom: 1px solid var(--line);
}

.dialog-head > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-head h2 {
  font-size: 1.75rem;
  line-height: 1.05;
}

.dialog-close,
.dialog-nav {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 750;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.dialog-close:hover,
.dialog-close:focus-visible,
.dialog-nav:hover,
.dialog-nav:focus-visible {
  border-color: var(--gold);
  background: var(--white);
}

.dialog-image-wrap {
  display: grid;
  min-height: 0;
  max-height: min(67vh, 650px);
  place-items: center;
  padding: 22px;
  overflow: auto;
  background:
    radial-gradient(circle at 20% 15%, rgba(179, 146, 85, 0.12), transparent 16rem),
    #e9dfd0;
}

.dialog-image-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(61vh, 590px);
  object-fit: contain;
  box-shadow: 0 18px 35px rgba(41, 33, 24, 0.18);
}

.dialog-foot {
  align-items: flex-end;
  border-top: 1px solid var(--line);
}

.dialog-foot p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.dialog-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mobile-download {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 11px 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(16, 40, 62, 0.96);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(16, 40, 62, 0.27);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(140%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-download.is-visible {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-download > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mobile-download strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.mobile-download > div span {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.66rem;
}

.mobile-download__dismiss {
  position: absolute;
  top: -11px;
  right: 9px;
  min-height: 25px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--navy);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.58rem;
}

.error-page {
  display: grid;
  min-height: 100dvh;
  place-content: center;
  width: min(620px, calc(100% - 40px));
  margin-inline: auto;
  padding: 56px 0;
}

.error-page__mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.error-page h1 {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.error-page > p:not(.eyebrow) {
  max-width: 46ch;
  margin-bottom: 29px;
  color: var(--muted);
}

@media (min-width: 761px) {
  .mobile-download {
    display: none;
  }
}

@media (max-width: 1060px) {
  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: clamp(3rem, 6.5vw, 4.8rem);
  }

  .hero-stage {
    min-height: 500px;
  }

  .benefit-grid article,
  .use-grid article {
    padding-inline: 16px;
  }

  .print-guide {
    grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.35fr);
  }

  .holiday-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-shell,
  .shell {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-stage {
    min-height: min(72vw, 570px);
    max-width: 700px;
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 700px;
  }

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

  .benefit-grid article:nth-child(odd),
  .use-grid article:nth-child(odd) {
    border-left: 0;
  }

  .benefit-grid article:nth-child(n + 3),
  .use-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .use-grid article:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.19);
  }

  .section-heading--split,
  .formats-intro,
  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--split > p,
  .formats-intro > p {
    max-width: 600px;
    margin-left: 0;
  }

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

  .faq-layout,
  .related-layout,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2,
  .related h2 {
    max-width: 650px;
  }

  .footer-main {
    padding-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .header-shell,
  .shell {
    width: min(var(--max-width), calc(100% - 32px));
  }

  .site-header {
    min-height: 68px;
  }

  [id] {
    scroll-margin-top: 82px;
  }

  .header-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(247, 243, 234, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease, padding 220ms ease, border-color 220ms ease;
  }

  .header-actions.is-open {
    max-height: calc(100dvh - 68px);
    padding: 15px 16px 23px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .header-actions > .button {
    width: 100%;
    margin-top: 15px;
  }

  .hero {
    padding: 57px 0 60px;
  }

  h1 {
    max-width: 610px;
    font-size: clamp(3rem, 12vw, 4.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-actions .button--large {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    margin-top: 32px;
  }

  .hero-proof li {
    min-width: 0;
    padding-inline: 13px;
  }

  .hero-proof li:first-child {
    padding-left: 0;
  }

  .hero-stage {
    min-height: 440px;
    border-radius: 25px;
  }

  .collection-seal {
    width: 63px;
    height: 63px;
    right: 5%;
    font-size: 0.47rem;
  }

  .collection-seal strong {
    font-size: 0.82rem;
  }

  .benefit-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .use-grid article,
  .benefit-grid article:nth-child(n + 3),
  .use-grid article:nth-child(n + 3) {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit-grid article:first-child,
  .use-grid article:first-child {
    border-top: 0;
  }

  .benefit-grid article {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 13px;
    padding: 20px 0;
  }

  .benefit-grid article > span {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }

  .benefit-grid h3 {
    margin-bottom: 3px;
  }

  .benefit-grid p {
    grid-column: 2;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .collection-overview {
    border-radius: 18px;
  }

  .overview-action {
    right: 10px;
    bottom: 10px;
    min-width: 136px;
    padding: 10px 12px;
  }

  .gallery-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 37px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .calendar-card {
    padding: 10px 10px 18px;
  }

  .card-image,
  .card-image--landscape {
    min-height: 320px;
  }

  .preview-label {
    opacity: 1;
    transform: translateY(0);
  }

  .print-guide {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 43px;
    padding-top: 25px;
  }

  .holiday-note {
    grid-column: auto;
  }

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

  .steps-list li,
  .steps-list li:first-child {
    min-height: 0;
    padding: 23px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-list li:first-child {
    border-top: 0;
  }

  .steps-list h3 {
    margin-top: 0;
  }

  .faq {
    padding-top: 79px;
  }

  .faq-list summary {
    min-height: 67px;
    font-size: 1.12rem;
  }

  .faq-list details p {
    padding-right: 0;
    font-size: 0.83rem;
  }

  .related {
    padding: 67px 0;
  }

  .related-layout {
    gap: 30px;
  }

  .related-links {
    grid-template-columns: 1fr;
  }

  .related-links a:nth-child(odd),
  .related-links a:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .related-links a:hover,
  .related-links a:focus-visible,
  .related-links a:nth-child(even):hover,
  .related-links a:nth-child(even):focus-visible {
    padding-left: 7px;
  }

  .final-cta {
    padding: 68px 0 76px;
  }

  .final-cta__inner {
    gap: 31px;
  }

  .final-cta__action,
  .final-cta__action .button {
    width: 100%;
  }

  .footer-main {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 95px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .dialog-head,
  .dialog-foot {
    padding: 14px;
  }

  .dialog-head h2 {
    font-size: 1.38rem;
  }

  .dialog-image-wrap {
    max-height: 56vh;
    padding: 13px;
  }

  .dialog-image-wrap img {
    max-height: 52vh;
  }

  .dialog-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .dialog-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .header-shell,
  .shell {
    width: min(var(--max-width), calc(100% - 26px));
  }

  .brand {
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 3.8rem);
  }

  .hero-proof li {
    padding-inline: 9px;
  }

  .hero-proof strong {
    font-size: 1.3rem;
  }

  .hero-proof span {
    font-size: 0.62rem;
  }

  .hero-stage {
    min-height: 365px;
  }

  .collection-seal {
    display: none;
  }

  .mobile-download {
    gap: 8px;
  }

  .mobile-download > div span {
    display: none;
  }

  .mobile-download .button {
    padding-inline: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
