@font-face {
  font-family: "Glacial Indifference";
  src: url("assets/glacial-indifference.regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url("assets/glacial-indifference.bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}

@font-face {
  font-family: "Little Lux Le Jour";
  src: url("assets/le-jour-serif-clean.otf") format("opentype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ivory: #f7f4ef;
  --paper: #fffdf8;
  --blush: #ead7d2;
  --taupe: #c5b6a7;
  --clay: #ad8f7e;
  --gold: #bd8d49;
  --cocoa: #3c3029;
  --ink: #12100e;
  --muted: #6d625a;
  --line: rgba(60, 48, 41, 0.14);
  --shadow: 0 26px 70px rgba(60, 48, 41, 0.12);
  --serif: "Little Lux Le Jour", "Bodoni 72", "Bodoni MT", "Didot", "Baskerville", "Times New Roman", Georgia, serif;
  --sans: "Glacial Indifference", "Avenir Next", "Century Gothic", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(234, 215, 210, 0.28), transparent 34%),
    linear-gradient(180deg, var(--ivory), #f2eee8);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: var(--cocoa);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 7px 0;
}

.site-nav a:hover {
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--cocoa);
}

.hero {
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: 120px clamp(20px, 7vw, 92px) 64px;
}

.hero-logo {
  width: min(560px, 100%);
  margin: 0 auto;
  background: var(--paper);
  padding: clamp(18px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.paper-stack {
  position: relative;
  min-height: 430px;
}

.torn-note,
.sticky-menu a,
.package-card,
.delivery-card,
details,
.contact-panel,
.mini-card {
  border: 1px solid rgba(189, 141, 73, 0.16);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.torn-note {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 54px);
  transform: rotate(-2deg);
}

.torn-note::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18px;
  height: 36px;
  background: var(--paper);
  clip-path: polygon(0 0, 9% 54%, 18% 20%, 30% 72%, 42% 32%, 55% 78%, 72% 18%, 84% 64%, 100% 28%, 100% 100%, 0 100%);
}

.eyebrow,
.kicker,
.card-badge {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-badge.is-empty {
  visibility: hidden;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

h4 {
  margin: 22px 0 6px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.torn-note p:not(.eyebrow),
.page-hero p,
.rich-copy,
.package-card p,
.delivery-card p,
details p,
.contact-panel p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--cocoa);
  color: var(--paper);
  font: 800 0.78rem / 1 var(--sans);
  text-transform: uppercase;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--cocoa);
}

.section-pad {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 7vw, 92px);
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-content: end;
  padding: 122px clamp(20px, 7vw, 92px) clamp(54px, 8vw, 90px);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(234, 215, 210, 0.34));
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.statement {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  text-transform: none;
}

.statement p:last-child {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  background: rgba(255, 253, 248, 0.54);
}

.about-art {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(234, 215, 210, 0.7), rgba(255, 253, 248, 0.92));
  border: 12px solid var(--paper);
  box-shadow: var(--shadow);
}

.about-note {
  padding: clamp(26px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.sticky-menu a {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--cocoa);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.sticky-menu a:nth-child(2n) {
  background: var(--blush);
  transform: rotate(1.4deg);
}

.sticky-menu a:nth-child(3n) {
  background: var(--taupe);
  transform: rotate(-1deg);
}

.package-grid,
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.package-card,
.delivery-card,
details,
.contact-panel,
.mini-card {
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
}

.package-card.blush {
  background: linear-gradient(135deg, rgba(234, 215, 210, 0.94), rgba(255, 253, 248, 0.92));
}

.package-card.taupe {
  background: linear-gradient(135deg, rgba(197, 182, 167, 0.78), rgba(255, 253, 248, 0.92));
}

.package-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  max-width: 1040px;
  margin: 24px 0 0;
  padding-left: 20px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.theme-list {
  column-count: 3;
  column-gap: clamp(28px, 7vw, 90px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
}

.theme-preview-section {
  padding-bottom: 0;
}

.theme-preview-card {
  margin: 0;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.theme-preview-card img {
  width: 100%;
  border-radius: 4px;
}

.theme-preview-card figcaption {
  margin-top: 16px;
  color: var(--cocoa);
  font-weight: 800;
  text-align: center;
}

.theme-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.fine-note {
  margin-top: 42px;
  color: var(--muted);
  font-size: 1.05rem;
}

.order-list {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.order-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.order-list p {
  margin: 0;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.faq-list {
  display: grid;
  gap: 30px;
}

.faq-group {
  display: grid;
  gap: 12px;
}

.faq-group h3 {
  font-family: var(--sans);
  font-weight: 800;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
}

details p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
}

.contact-panel {
  background: var(--paper);
}

.order-embed {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.google-form-wrap {
  width: 100%;
  height: min(4538px, 78vh);
  min-height: 720px;
  margin-top: 28px;
  overflow: auto;
  border: 1px solid var(--line);
  background: #ffffff;
}

.google-form-frame {
  display: block;
  width: 100%;
  height: 4538px;
  border: 0;
}

.sample-callout {
  padding-top: 0;
}

.flipbook-section {
  padding-top: clamp(42px, 7vw, 84px);
}

.flipbook-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.flipbook-frame {
  display: block;
  width: 100%;
  height: min(76vh, 820px);
  min-height: 560px;
  border: 0;
  background: #fff;
}

.contact-line {
  display: inline-block;
  margin: 16px 0 30px;
  color: var(--cocoa);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.mini-card {
  align-self: start;
  background: var(--cocoa);
  color: var(--paper);
}

.mini-card.light {
  background: var(--paper);
  color: var(--ink);
}

.mini-card p {
  color: rgba(255, 253, 248, 0.74);
}

.mini-card.light p {
  color: var(--muted);
}

.mini-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold);
  color: var(--cocoa);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 7vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p:first-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cocoa);
}

.site-footer p:last-child {
  max-width: 560px;
  margin: 0;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(247, 244, 239, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .paper-stack {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    max-width: 168px;
  }

  .hero {
    padding: 98px 20px 48px;
  }

  .hero-logo {
    padding: 14px;
  }

  .hero-actions,
  .package-grid,
  .delivery-grid,
  .sticky-menu,
  .quick-info,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }

  .theme-list {
    column-count: 1;
  }

  .about-art {
    min-height: 300px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p:last-child {
    margin-top: 8px;
  }
}
