/* Robo-Draw landing page styles
   ------------------------------------------------------------ */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rd-paper);
  color: var(--rd-ink);
  font-family: var(--rd-font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   Reusable primitives
   ============================================================ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* Wordmark — TRADER text, replaces any logo image */
.wordmark {
  font-family: var(--rd-font-display);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  color: inherit;
}

/* Eyebrows — small mono labels with a rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--rd-font-mono);
  font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rd-fg-3);
}
.eyebrow::before {
  content: ""; width: 36px; height: 1px; background: currentColor;
}
.on-ink .eyebrow { color: rgba(255,255,255,.6); }

/* Pill / stamp */
.stamp {
  display: inline-block;
  font-family: var(--rd-font-display);
  font-size: 13px; letter-spacing: .14em;
  padding: 8px 14px;
  color: var(--rd-stamp);
  border: 2px solid var(--rd-stamp);
  background: var(--rd-paper);
  transform: rotate(-3deg);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 15px; padding: 14px 24px;
  border: var(--rd-stroke);
  background: var(--rd-marker); color: #fff;
  border-radius: var(--rd-r-pill);
  box-shadow: var(--rd-shadow-sticker);
  text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: transform var(--rd-dur) var(--rd-ease),
              box-shadow var(--rd-dur) var(--rd-ease),
              background var(--rd-dur) var(--rd-ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--rd-ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--rd-ink); background: var(--rd-marker-ink); }
.btn.ink { background: var(--rd-ink); color: var(--rd-chalk); }
.btn.secondary { background: var(--rd-paper); color: var(--rd-ink); }
.btn.ghost { background: transparent; box-shadow: none; border-color: transparent; color: var(--rd-ink); }
.btn.ghost:hover { background: var(--rd-ink); color: var(--rd-chalk); box-shadow: none; transform: none; }
.btn.sm { font-size: 12px; padding: 10px 16px; }
.btn .ic { display: inline-flex; }
.on-ink .btn.ghost { color: var(--rd-chalk); }
.on-ink .btn.ghost:hover { background: var(--rd-chalk); color: var(--rd-ink); }
/* Re-assert button text colors on :hover so the global a:hover rule
   in colors_and_type.css can't bleed orange into anchor-tag buttons. */
.btn:hover           { color: #fff; }
.btn.secondary:hover { color: var(--rd-ink); }
.btn.ink:hover      { color: var(--rd-chalk); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--rd-paper) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--rd-ink); }
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding: 16px 40px; max-width: 1280px; margin: 0 auto;
}
.nav .wordmark {
  font-size: 24px; color: var(--rd-ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav .wordmark .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rd-marker);
  display: inline-block; margin-left: 6px;
  animation: blink 2s infinite steps(2, end);
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px; color: var(--rd-ink);
  text-decoration: none; font-weight: 500;
}
.nav-links a:hover { color: var(--rd-marker-ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(14,14,14,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none; opacity: 0.6;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.hero h1 {
  font-family: var(--rd-font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9; letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 24px;
  max-width: 14ch;
}
.hero h1 .marker { color: var(--rd-marker); }
.hero h1 .pencil {
  position: relative; display: inline-block;
}
.hero h1 .pencil::after {
  content: ""; position: absolute;
  left: -6px; right: -6px; bottom: 0.05em;
  height: 0.22em; background: var(--rd-highlight);
  z-index: -1; transform: rotate(-1deg);
}
.hero p.lede {
  font-size: 20px; line-height: 1.5;
  max-width: 48ch; color: var(--rd-fg-2);
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.hero-hand {
  font-family: var(--rd-font-hand); font-size: 26px;
  color: var(--rd-marker);
  display: inline-flex; align-items: center; gap: 8px;
  transform: rotate(-4deg); margin-left: 8px;
}
.hero-hand svg {
  stroke: var(--rd-marker); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Hero portrait card */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--rd-chalk);
  border: 3px solid var(--rd-ink);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--rd-ink);
  overflow: hidden;
  transform: rotate(2deg);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14,14,14,0.14) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  z-index: 2;
  pointer-events: none;
}

/* 🚀 Disable dots when video is active */
.hero-art.video::before {
  display: none;
}
.hero-art .portrait-svg {
  position: absolute; inset: 8% 10%; width: 80%; height: 84%;
}
.hero-art .stamp-bl {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--rd-font-display); font-size: 14px;
  color: var(--rd-stamp); border: 2px solid var(--rd-stamp);
  padding: 7px 12px; letter-spacing: .14em;
  transform: rotate(5deg); background: var(--rd-chalk);
}
.hero-art .sig {
  position: absolute; bottom: 20px; right: 32px;
  font-family: var(--rd-font-hand); font-size: 26px;
  color: var(--rd-marker); transform: rotate(-3deg);
}
.hero-art .footer-band {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 18px; background: var(--rd-ink); color: var(--rd-chalk);
  font-family: var(--rd-font-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; justify-content: space-between;
}

.hero-art.video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* 👈 IMPORTANT */
}
/* Floating "live" badge on hero */
.live-badge {
  position: absolute; top: 40px; right: -20px;
  background: var(--rd-highlight); border: 3px solid var(--rd-ink);
  border-radius: 999px; padding: 10px 18px;
  font-family: var(--rd-font-display); font-size: 14px;
  letter-spacing: .16em; transform: rotate(8deg);
  box-shadow: 4px 4px 0 var(--rd-ink);
  z-index: 3;
}
.live-badge .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rd-stamp); margin-right: 8px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* Hero specs strip (mono facts under CTAs) */
.hero-specs {
  display: flex; gap: 48px; margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--rd-rule);
  border-bottom: 1px solid var(--rd-rule);
}
.hero-spec {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-spec .k {
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--rd-fg-3);
}
.hero-spec .v {
  font-family: var(--rd-font-body); font-weight: 700; font-size: 30px;
  letter-spacing: -0.02em; line-height: 1;
}

/* ============================================================
   Section primitives
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section.deep { background: var(--rd-paper-deep); border-top: var(--rd-stroke); border-bottom: var(--rd-stroke); }
.section.ink {
  background: var(--rd-ink); color: var(--rd-chalk);
}
.section.ink h2 { color: var(--rd-chalk); }
.section.ink p { color: rgba(255,255,255,.72); }

.sec-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 64px;
}
.sec-head h2 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.sec-head .lede {
  font-size: 18px; line-height: 1.5;
  color: var(--rd-fg-2); max-width: 38ch;
  margin: 0;
}
.section.ink .sec-head .lede { color: rgba(255,255,255,.7); }

/* ============================================================
   Steps (3-up)
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.step {
  background: var(--rd-chalk);
  border: 3px solid var(--rd-ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--rd-ink);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 340px;
  position: relative;
  transition: transform .2s var(--rd-ease), box-shadow .2s var(--rd-ease);
}
.step:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 var(--rd-ink); }
.step .num {
  font-family: var(--rd-font-mono); font-size: 12px;
  letter-spacing: .2em; color: var(--rd-marker);
}
.step .icon { color: var(--rd-ink); margin-top: 12px; }
.step h3 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 32px; line-height: 0.95; text-transform: uppercase;
  letter-spacing: -0.005em; margin: auto 0 0;
}
.step p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--rd-fg-2); }
.step .arrow {
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  z-index: 3; background: var(--rd-paper);
  border: 3px solid var(--rd-ink); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   Benefits (ink)
   ============================================================ */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; overflow: hidden;
}
.benefit {
  background: var(--rd-ink); color: var(--rd-chalk);
  padding: 40px 32px;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 16px;
  border-right: 1px solid rgba(255,255,255,.18);
  transition: background .2s;
}
.benefit:last-child { border-right: none; }
.benefit:hover { background: #1a1a18; }
.benefit .icon { color: var(--rd-highlight); margin-bottom: 4px; }
.benefit h3 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 20px; color: var(--rd-chalk); margin: 0;
}
.benefit p { color: rgba(255,255,255,.72); margin: 0; font-size: 14px; line-height: 1.5; }
.benefit .stat {
  margin-top: auto;
  font-family: var(--rd-font-body); font-weight: 700; font-size: 38px;
  color: var(--rd-highlight); line-height: 1; letter-spacing: -0.02em;
}
.benefit .stat small {
  display: block; margin-top: 6px;
  font-family: var(--rd-font-mono); font-size: 10px;
  letter-spacing: .18em; color: rgba(255,255,255,.5);
}

/* ============================================================
   Occasions
   ============================================================ */
.occasions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.occ {
  position: relative; aspect-ratio: 4 / 5;
  border: 3px solid var(--rd-ink); border-radius: 20px;
  box-shadow: 8px 8px 0 var(--rd-ink);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  transition: transform .2s var(--rd-ease), box-shadow .2s var(--rd-ease);
}
.occ:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 var(--rd-ink); }
.occ {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--rd-ink);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--rd-ink);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  padding-top: 64px;

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  isolation: isolate;
}
.occ .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 25%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.10) 75%,
    rgba(0,0,0,0) 100%
  );
}
.occ .mini {
  position: absolute; top: 20px; left: 20px;
  z-index: 3;
  font-family: var(--rd-font-mono); font-size: 11px;
  padding: 6px 10px; background: rgba(255,255,255,.9);
  border: 1px solid var(--rd-ink); border-radius: 999px;
  letter-spacing: .14em; text-transform: uppercase;
}
.occ h3 {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 0.95;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.9),
    0 2px 6px rgba(0,0,0,0.8),
    0 6px 18px rgba(0,0,0,0.6);
}
.occ p {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.9),
    0 2px 6px rgba(0,0,0,0.7);
  margin: 0; font-size: 14px; line-height: 1.5;
  opacity: 1;
}

.occ::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}


/* ============================================================
   Rates
   ============================================================ */
.rates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.rate {
  background: var(--rd-chalk); border: 2px solid var(--rd-ink);
  border-radius: 16px; box-shadow: 6px 6px 0 var(--rd-ink);
  padding: 22px 20px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s var(--rd-ease), box-shadow .2s var(--rd-ease);
}
.rate:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--rd-ink); }
.rate.featured { background: var(--rd-paper); }
.rate .featured-stamp {
  position: absolute; top: -14px; right: 16px;
  font-family: var(--rd-font-display); font-size: 10px;
  color: var(--rd-stamp); border: 2px solid var(--rd-stamp);
  padding: 5px 9px; letter-spacing: .14em;
  transform: rotate(4deg); background: var(--rd-paper);
  white-space: nowrap;
}
.rate h3 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 16px; margin: 0 0 2px;
}
.rate .price {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em; line-height: 1;
  margin: 8px 0 6px;
}
.rate .price small {
  display: block; margin-top: 6px;
  font-family: var(--rd-font-mono); font-size: 10px;
  letter-spacing: .16em; color: var(--rd-fg-3);
  text-transform: uppercase;
}
.rate ul { list-style: none; padding: 0; margin: 14px 0 20px; flex: 1; }
.rate li {
  font-size: 12.5px; color: var(--rd-fg-2);
  padding: 7px 0; border-bottom: 1px dashed var(--rd-rule-soft);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.35;
}
.rate li:last-child { border: none; }
.rate li .ck {
  color: var(--rd-marker); flex: 0 0 auto; margin-top: 1px;
  width: 14px; height: 14px;
}
.rate .btn {
  font-size: 12px; padding: 10px 16px; gap: 8px;
  justify-content: center;
}


/* ===== PRICE STYLING ===== */

.price-wrap {
  margin: 10px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.old-price {
  font-family: var(--rd-font-body); font-weight: 600;
  font-size: 16px;
  color: var(--rd-fg-3);
  position: relative;
  display: inline-block;
  width: fit-content;
}

/* strike-through line (clean, bold like your image) */
.old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  background: var(--rd-ink);
  transform: rotate(-3deg);
}

/* promo tag */
.promo-tag {
  font-family: var(--rd-font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--rd-marker);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px 0; border-top: var(--rd-stroke); }
.faq-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 880px;
}
.faq-list details {
  border: var(--rd-stroke); border-radius: 14px;
  background: var(--rd-chalk);
  overflow: hidden;
  transition: box-shadow var(--rd-dur) var(--rd-ease);
}
.faq-list details[open] { box-shadow: var(--rd-shadow-sticker); }
.faq-list summary {
  list-style: none; cursor: pointer;
  padding: 20px 64px 20px 24px; position: relative;
  font-family: var(--rd-font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: -.005em; line-height: 1.4;
  color: var(--rd-ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute;
  right: 24px; top: 50%; width: 16px; height: 16px;
  transform: translateY(-50%);
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  transition: transform .2s var(--rd-ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list .faq-body {
  padding: 0 24px 22px;
  color: var(--rd-fg-2);
  font-size: 16px; line-height: 1.6;
}
.faq-list .faq-body p { margin: 0; max-width: 70ch; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: start;
}
.contact-grid h2 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; margin: 14px 0 4px;
}
.contact-grid h2 .m { color: var(--rd-marker); }
.contact-grid .lede { font-size: 18px; color: var(--rd-fg-2); max-width: 40ch; line-height: 1.5; }

.inquiry-form {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.inquiry-form .inq-field { display: flex; flex-direction: column; gap: 6px; }
.inquiry-form .inq-field label {
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rd-fg-3);
}
.inquiry-form .inq-field input,
.inquiry-form .inq-field textarea {
  font-family: var(--rd-font-body); font-size: 15px;
  padding: 14px 16px; border: var(--rd-stroke); border-radius: 12px;
  background: var(--rd-chalk); color: var(--rd-ink); outline: none;
  transition: box-shadow .15s;
}
.inquiry-form .inq-field textarea {
  resize: vertical; min-height: 140px; line-height: 1.5;
}
.inquiry-form .inq-field input:focus,
.inquiry-form .inq-field textarea:focus { box-shadow: 3px 3px 0 var(--rd-ink); }
.inquiry-form .inq-honeypot {
  position: absolute; left: -10000px; width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.inquiry-form .inq-submit { align-self: flex-start; margin-top: 4px; }
.inquiry-form .inq-submit:disabled { opacity: .7; cursor: progress; }
.inquiry-form .inq-note {
  margin: 4px 0 0; min-height: 1.4em;
  font-family: var(--rd-font-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--rd-fg-3);
}
.inquiry-form[data-state="error"] .inq-note { color: var(--rd-marker-ink); }
.inquiry-form[data-state="success"] .inq-note { color: var(--rd-ink); }
.inquiry-form[data-state="success"] .inq-submit { background: var(--rd-ink); color: var(--rd-chalk); }
.contact-items {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.contact-item {
  background: var(--rd-chalk); border: var(--rd-stroke);
  border-radius: 16px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.contact-item.span2 { grid-column: span 2; }
.contact-item .k {
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--rd-fg-3);
  display: flex; align-items: center; gap: 8px;
}
.contact-item .v {
  font-family: var(--rd-font-body); font-weight: 600; font-size: 17px;
}
a.contact-item.social {
  text-decoration: none; color: inherit;
  transition: transform var(--rd-dur) var(--rd-ease),
              box-shadow var(--rd-dur) var(--rd-ease);
}
a.contact-item.social:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--rd-ink);
  color: inherit;
}

/* ============================================================
   Brand color treatments — Instagram + Facebook
   Reusable across .contact-item.social cards and .btn pills.
   ============================================================ */
.brand-ig {
  background:
    radial-gradient(circle at 95% -10%, #FEDA75 0%, transparent 45%),
    linear-gradient(45deg, #515BD4 0%, #8134AF 30%, #DD2A7B 65%, #F58529 100%);
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.brand-fb {
  background: #1877F2;
  color: #FFFFFF;
}
/* defeat the global a:hover orange + keep white on hover */
.brand-ig, .brand-ig:hover,
.brand-fb, .brand-fb:hover { color: #FFFFFF; }
/* Override the muted eyebrow color inside contact tiles */
.contact-item.brand-ig .k,
.contact-item.brand-fb .k { color: rgba(255, 255, 255, 0.82); }
.contact-item.brand-ig .v,
.contact-item.brand-fb .v { color: #FFFFFF; }
/* For .btn variants the global .btn:hover already keeps color: #fff,
   but our hover overrides above re-assert it explicitly to be safe. */

/* ============================================================
   Social strip — under the hero
   ============================================================ */
.social-strip {
  padding: 96px 0;
  background: var(--rd-paper-deep);
  border-top: var(--rd-stroke);
  border-bottom: var(--rd-stroke);
}
.social-strip .wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
.social-head h2 {
  font-family: var(--rd-font-body); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: .95; letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 16px 0 20px;
}
.social-head h2 .m { color: var(--rd-marker); }
.social-head p {
  font-size: 17px; color: var(--rd-fg-2);
  max-width: 38ch; line-height: 1.5;
}
.social-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.social-feed {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.social-feed .ig-tile {
  display: block; aspect-ratio: 1 / 1; overflow: hidden;
  border: var(--rd-stroke); border-radius: 12px;
  background: var(--rd-chalk);
  box-shadow: var(--rd-shadow-sticker);
  text-decoration: none;
  transition: transform var(--rd-dur) var(--rd-ease),
              box-shadow var(--rd-dur) var(--rd-ease);
}
.social-feed .ig-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--rd-shadow-sticker-lg);
}
.social-feed img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (max-width: 900px) {
  .social-strip .wrap { grid-template-columns: 1fr; }
  .social-strip { padding: 72px 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--rd-ink); color: var(--rd-chalk);
  padding: 80px 0 40px;
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-main .wordmark {
  font-size: 56px; color: var(--rd-chalk);
  letter-spacing: -0.005em;
}
.footer-main p {
  color: rgba(255,255,255,.65);
  max-width: 40ch; margin-top: 16px; font-size: 15px; line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--rd-chalk); text-decoration: none; font-size: 15px;
}
.footer-col a:hover { color: var(--rd-highlight); }
.footer-main p a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.footer-main p a:hover,
.footer-bottom a:hover { color: var(--rd-chalk); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   Modal (book request)
   ============================================================ */
.scrim {
  position: fixed; inset: 0; background: rgba(14,14,14,0.65);
  z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--rd-paper); border: var(--rd-stroke);
  border-radius: 24px; box-shadow: 12px 12px 0 var(--rd-ink);
  max-width: 600px; width: 100%; padding: 40px;
  position: relative;
  animation: pop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop {
  from { transform: translate(12px, 12px) scale(.98); }
  to   { transform: translate(0, 0) scale(1); }
}
.modal h2 {
  font-family: var(--rd-font-body); font-weight: 700; font-size: 40px;
  line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 12px 0 8px;
}
.modal p { color: var(--rd-fg-2); margin: 0; }
.modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border: var(--rd-stroke);
  border-radius: 50%; background: var(--rd-chalk);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.fields { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--rd-font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--rd-fg-3);
}
.field input, .field select {
  font-family: var(--rd-font-body); font-size: 15px;
  padding: 14px 16px; border: var(--rd-stroke); border-radius: 12px;
  background: var(--rd-chalk); outline: none;
  transition: box-shadow .15s;
}
.field input:focus { box-shadow: 3px 3px 0 var(--rd-ink); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--rd-font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; padding: 8px 14px;
  border: 1.5px solid var(--rd-ink); border-radius: 999px;
  background: var(--rd-paper); cursor: pointer; user-select: none;
  transition: all .15s;
}
.chip:hover { background: var(--rd-paper-deep); }
.chip.active { background: var(--rd-ink); color: var(--rd-chalk); }

.modal-actions {
  display: flex; gap: 12px; justify-content: flex-end;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .steps, .benefits, .occasions, .rates, .sec-head, .contact-grid, .footer-main {
    grid-template-columns: 1fr;
  }
  .hero { padding: 48px 0 60px; }
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .step .arrow { display: none; }
  .benefit { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .benefit:last-child { border-bottom: none; }
  .hero-specs { flex-wrap: wrap; gap: 20px; }
  .contact-items { grid-template-columns: 1fr; }
  .contact-item.span2 { grid-column: span 1; }
  .wrap { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
}
