:root {
  /* Role → hex (earthy blues + warm yellow + black) */
  --cream: #f3f5f8;          /* page background — soft blue-gray */
  --paper: #ffffff;          /* cards / elevated surfaces */
  --ink: #1c1e22;            /* body text — near-black for readability */
  --muted: #5e6a78;          /* secondary/body small text — medium blue-gray (NOT deep navy) */
  --heading: #1a2740;        /* large headings only — deep navy */
  --line: #d5dce6;           /* dividers / card edges */
  --clay: #e6b422;           /* warm yellow — buttons, badges, price callouts */
  --clay-deep: #c9970f;      /* warm yellow hover/pressed */
  --sage: #4a6a8a;           /* eyebrow / accent blue (mid, not navy) */
  --card-tint: #eef2f7;      /* soft card wash / section fills */
  --navy-soft: #243554;      /* featured card gradient depth (backgrounds only) */
  --shadow: 0 18px 50px rgba(26, 39, 64, 0.09);
  --shadow-lg: 0 28px 60px rgba(26, 39, 64, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--heading);
}
.wrap { width: min(1280px, calc(100% - 2rem)); margin-inline: auto; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; gap: 1rem; flex-wrap: wrap;
}
.nav-links {
  display: flex; align-items: center; gap: 0.65rem 1rem; flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--ink); }
.brand { font-size: 1.55rem; color: var(--ink); text-decoration: none; }
.brand span { color: var(--clay); }
.nav-cta {
  text-decoration: none; background: var(--ink); color: #fff;
  padding: 0.65rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
}
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
  padding: 1.25rem 0 3rem;
}
.hero-slim {
  display: block;
  max-width: 42rem;
  padding: 2rem 0 2.75rem;
}
.hero-slim .hero-copy { max-width: 40rem; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.75rem;
}
.hero h1 { font-size: clamp(2.35rem, 5vw, 3.5rem); margin: 0 0 1rem; }
.lead { font-size: 1.12rem; color: var(--muted); margin: 0 0 1.4rem; max-width: 34rem; }
.hero-slim .lead { max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0.85rem 1.35rem; font-weight: 700; text-decoration: none;
  border: 0; cursor: pointer; font: inherit;
}
.btn-primary { background: var(--clay); color: #1c1e22; }
.btn-primary:hover { background: var(--clay-deep); color: #1c1e22; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { background: #fff; }
.btn:disabled, .btn.disabled {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}
.hero-collage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; transform: rotate(1deg);
}
.hero-collage img {
  width: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); background: #ddd;
}
.hero-collage img:nth-child(1) { height: 230px; margin-top: 1.4rem; }
.hero-collage img:nth-child(2) { height: 160px; }
.hero-collage img:nth-child(3) { height: 170px; grid-column: span 2; }

/* Offers — 4 core services */
.offers-section {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.35rem;
}
.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(42, 33, 28, 0.11);
}
.offer-img-wrap {
  position: relative;
  background: #e8ddd2;
}
.offer-img-wrap img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.stock-caption {
  margin: 0;
  padding: 0.35rem 0.85rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f4f1ea;
  border-top: 1px solid var(--line);
}
.offer-card h3 {
  margin: 1.1rem 1.25rem 0.4rem;
  font-size: 1.45rem;
}
.offer-card > p {
  margin: 0 1.25rem 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.strip {
  background: #2a211c; color: #f4ebe3; padding: 0.95rem 0; font-size: 0.95rem;
}
.strip .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; text-align: center; }
.section { padding: 3.1rem 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); margin: 0 0 0.5rem; }
.sub { color: var(--muted); margin: 0 0 1.6rem; max-width: 40rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.35rem; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.45rem; font-size: 1.4rem; }
.card p { margin: 0; color: var(--muted); }
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 190px 190px; gap: 0.85rem;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow);
}
.gallery img:first-child { grid-row: span 2; min-height: 390px; }
.pricing-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(230, 180, 34, 0.12), transparent 55%),
    linear-gradient(180deg, var(--card-tint) 0%, var(--paper) 42%, var(--cream) 100%);
  border-block: 1px solid var(--line);
  padding: 4.25rem 0 4.5rem;
  position: relative;
}
.pricing-header { text-align: center; max-width: 40rem; margin: 0 auto 2.25rem; }
.pricing-header .sub { margin-inline: auto; }
.pricing-eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; align-items: stretch; }
.pricing.pricing-two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-left: auto; margin-right: auto; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 24px;
  padding: 2rem 1.55rem 1.75rem;
  border: 1px solid var(--line);
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(165deg, #fffdf5 0%, #fff8e6 45%, #eef2f7 100%);
  border-color: rgba(230, 180, 34, 0.55);
  box-shadow: 0 22px 55px rgba(26, 39, 64, 0.12), 0 0 0 1px rgba(230, 180, 34, 0.25);
  transform: translateY(-6px);
}
.price-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(26, 39, 64, 0.16), 0 0 0 1px rgba(230, 180, 34, 0.35);
}
.price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clay);
  color: #1c1e22;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(201, 151, 15, 0.35);
}
.price-card-top { margin-bottom: 0.35rem; }
.price-tier {
  margin: 0;
  font-size: 1.55rem;
  color: var(--heading);
}
.price-tagline {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.price-card .amt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0.55rem 0 0.15rem;
  color: var(--clay);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .amt-live {
  font-size: 2.35rem;
  color: var(--heading);
}
.price-then {
  color: var(--muted);
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
}
.price-features {
  list-style: none;
  margin: auto 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}
.price-features li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.4;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.22);
}
.pricing-footnote {
  text-align: center;
  max-width: 46rem;
  margin: 1.5rem auto 0;
}
.pricing-notices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.notice {
  margin-top: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--muted);
}
.notice-card .notice-label {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.35rem;
}
.notice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.price-card .label { font-weight: 700; }
.price-card > p { color: var(--muted); margin: 0.35rem 0 0; font-size: 0.95rem; }

/* Order section — polished, grouped form */
.order-section {
  padding: 4rem 0 4.5rem;
}
.order-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}
.order-intro h2 { margin-top: 0; }
.order-form-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.25rem 2.15rem 2.5rem;
}
.order-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 1.5rem; align-items: start; }
.order-visual img {
  width: 100%; height: 460px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow);
}
fieldset.form-group {
  border: 0;
  margin: 0 0 1.75rem;
  padding: 0 0 1.75rem;
  border-bottom: 1px solid var(--line);
}
fieldset.form-group:last-of-type {
  border-bottom: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
}
.form-group-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.form-group-hint {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.usb-auto-btn {
  margin: 0.45rem 0 0.75rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
}
.usb-auto-btn:hover { background: #f4f1ea; }
form label { display: block; font-weight: 650; font-size: 0.92rem; margin: 0.9rem 0 0.35rem; }
form input, form select {
  width: 100%; padding: 0.8rem 0.9rem; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; background: #fff;
}
.live-price {
  margin-top: 0.5rem; padding: 1.25rem 1.35rem; border-radius: 16px; background: #1f2937; color: #fff;
}
.live-price .big { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }
.pay-note {
  margin-top: 0.85rem; font-size: 0.92rem; color: var(--muted);
  background: #fffbeb; border: 1px solid #f0df9a; border-radius: 12px; padding: 0.8rem 0.95rem;
}
button[type=submit] {
  margin-top: 1.35rem; width: 100%; border: 0; border-radius: 999px; padding: 1.05rem;
  background: var(--clay); color: #1c1e22; font: inherit; font-weight: 700; cursor: pointer;
}
button[type=submit]:hover { background: var(--clay-deep); color: #1c1e22; }
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 0.35rem; }
.tier-option {
  border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 0.9rem; cursor: pointer;
  background: #fff; display: block;
}
.tier-option:has(input:checked) {
  border-color: var(--clay); background: #fffbeb; box-shadow: 0 0 0 1px var(--clay);
}
.tier-option input { width: auto; margin: 0 0.45rem 0 0; }
.tier-option strong { display: block; margin-bottom: 0.2rem; }
.tier-option span { display: block; color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.pricing-note { color: var(--muted); font-size: 0.92rem; margin: 0.75rem 0 0; }
.scaffold-banner {
  background: #fff7ed; border: 1px solid #fed7aa; color: var(--muted);
  padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.9rem; margin: 0 0 1.25rem;
}
.tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.25rem;
}
.tab-btn {
  flex: 1; border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 0.7rem 1rem; font: inherit; font-weight: 650; cursor: pointer; color: var(--muted);
}
.tab-btn.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.auth-card { max-width: 440px; margin: 2rem auto 3rem; }
.page-hero { padding: 1.5rem 0 0.5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0 0 0.5rem; }
.order-list { display: grid; gap: 1rem; margin: 1.5rem 0 3rem; }
.order-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
}
.order-item h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.order-meta { color: var(--muted); font-size: 0.95rem; margin: 0.25rem 0; }
.order-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.status-pill {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: #f4f1ea; color: var(--muted);
}
.status-pill.ready { background: #dcfce7; color: #166534; }
.status-pill.expired { background: #fee2e2; color: #991b1b; }
.status-pill.processing, .status-pill.requested { background: #ffedd5; color: #9a4519; }
.account-box {
  margin-top: 1.15rem; padding: 1.1rem 1.15rem; border-radius: 14px;
  background: var(--card-tint); border: 1px solid var(--line);
}
.account-box .pw-fields { display: none; margin-top: 0.75rem; }
.account-box .pw-fields.show { display: block; }
.form-error { color: #991b1b; font-size: 0.9rem; margin: 0.5rem 0 0; }
.form-ok { color: var(--sage); font-size: 0.9rem; margin: 0.5rem 0 0; }
.empty-state {
  text-align: center; padding: 2.5rem 1.5rem; color: var(--muted);
  background: var(--paper); border: 1px dashed var(--line); border-radius: 18px;
}
footer {
  padding: 2.5rem 0 3rem; color: var(--muted); text-align: center; font-size: 0.92rem;
  border-top: 1px solid var(--line); margin-top: 1rem;
}

/* Desktop split: left (hero+offers) | right (pricing+order) */
.split-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem 2.25rem;
  align-items: start;
  padding-bottom: 2rem;
}
.split-left,
.split-right {
  min-width: 0;
}
.split-left .hero-slim {
  max-width: none;
  padding: 1.25rem 0 1.75rem;
}
.split-left .offers-section {
  padding-top: 0.25rem;
  padding-bottom: 1.5rem;
}
.split-left .offers-section.section { padding-top: 0.25rem; }
.split-left .offers-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.split-left .offer-img-wrap img { height: 150px; }
.split-left .offer-card h3 {
  margin: 0.85rem 1rem 0.3rem;
  font-size: 1.25rem;
}
.split-left .offer-card > p {
  margin: 0 1rem 1.05rem;
  font-size: 0.92rem;
}

.split-right .pricing-section {
  border-block: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.35rem 1.5rem;
  margin-bottom: 1.35rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(230, 180, 34, 0.12), transparent 55%),
    linear-gradient(180deg, var(--card-tint) 0%, var(--paper) 55%, var(--cream) 100%);
}
.split-right .pricing-header {
  text-align: left;
  max-width: none;
  margin: 0 0 1.25rem;
}
.split-right .pricing-header .sub { margin-inline: 0; }
.split-right .pricing.pricing-two {
  max-width: none;
  margin: 0;
  gap: 0.9rem;
}
.split-right .price-card {
  padding: 1.45rem 1.15rem 1.25rem;
  border-radius: 18px;
}
.split-right .price-card.featured { transform: none; }
.split-right .price-card.featured:hover { transform: translateY(-3px); }
.split-right .price-card .amt { font-size: 2.35rem; }
.split-right .price-tier { font-size: 1.28rem; }
.split-right .pricing-footnote {
  text-align: left;
  max-width: none;
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.split-right .order-section {
  padding: 0 0 1.5rem;
}
.split-right .order-intro {
  max-width: none;
  margin-bottom: 1rem;
}
.split-right .order-form-card {
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.35rem 1.75rem;
}
.split-right .form-group-contact {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.split-right .live-price { margin-bottom: 0.25rem; }

@media (max-width: 980px) {
  .split-main {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .split-left .offers-grid { grid-template-columns: 1fr 1fr; }
  .split-left .offer-img-wrap img { height: 180px; }
  .split-right .pricing-section {
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(1rem, calc(50vw - 640px + 1rem));
    padding-right: max(1rem, calc(50vw - 640px + 1rem));
  }
}
@media (max-width: 860px) {
  .tier-grid { grid-template-columns: 1fr; }
  .hero, .order-layout, .grid-3, .pricing, .pricing-notices { grid-template-columns: 1fr; }
  .offers-grid, .split-left .offers-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .order-form-card, .split-right .order-form-card { padding: 1.5rem 1.25rem 2rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img:first-child { grid-row: auto; grid-column: span 2; min-height: 220px; height: 220px; }
  .hero-collage { transform: none; }
  .offer-img-wrap img, .split-left .offer-img-wrap img { height: 200px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .split-right .pricing.pricing-two { grid-template-columns: 1fr; }
}

textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  resize: vertical;
  background: var(--paper);
  color: var(--ink);
}
#mailAddressWrap { margin-top: 1rem; }
