/* ==========================================================================
   Holi Reset — landing page styles

   Soothing, elegant, minimal. No filled buttons, no card chrome, no shadows.
   Every CTA is a quiet italic text link.
   ========================================================================== */

:root {
  /* The five tokens from the brief, resolved to the logo palette.
     Sampled from images/logo.png: peach #FCA982 → vermilion #EF3A12 →
     crimson #B6001F. Swapping these lines is the only change needed to
     re-tint the whole page. */
  --bg: #FBF5F1;          /* warm blush ivory — page background */
  --surface: #F5EAE3;     /* section background, one step deeper */
  --text: #2B1B17;        /* warm near-black — primary text */
  --text-muted: #7A5B51;  /* secondary text, captions, prices */
  --accent: #B6001F;      /* logo crimson — the one accent color */
  --accent-hover: #8E0018;
  --border: #EADDD4;      /* hairline dividers */

  /* Gradient stops, used only for the small decorative rules and dashes. */
  --brand-gradient: linear-gradient(90deg, #FCA982 0%, #EF3A12 50%, #B6001F 100%);

  --shell: 1100px;
  --section-y: 120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17.5px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

::selection { background: #FBD9C6; color: var(--text); }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 28px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--bg);
  color: var(--accent);
  padding: 12px 18px;
  font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* ── Typography ──────────────────────────────────────────────────────────── */

/* Small kicker above the tagline and section text. */
.eyebrow {
  margin: 0 0 18px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section__title {
  margin: 0 0 64px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}

/* One of the few permitted accent marks. */
.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 24px auto 0;
  background: var(--brand-gradient);
}

/* ── CTA links — the only call-to-action treatment on the page ───────────── */

.cta-link {
  display: inline-block;
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  letter-spacing: 0.01em;
  background: none;
  border: none;
  /* Reads as plain text, but the tap area clears 44px. */
  padding: 13px 0;
  transition: color 160ms ease;
}

.cta-link:hover {
  color: var(--accent-hover);
  text-decoration-thickness: 1px;
}

/* Over the hero video, where the accent would not hold up. */
.cta-link--onvideo {
  color: #FFF8F3;
  text-decoration-color: rgba(255, 248, 243, 0.65);
}
.cta-link--onvideo:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  color: #FFF8F3;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

/* Text only — no icon, no mark, no colored square. */
.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: inherit;
  text-decoration: none;
}

/* ── Language switcher ───────────────────────────────────────────────────── */

.lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang__btn {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  padding: 0 6px;
  background: none;
  border: 0;
  color: inherit;
  opacity: 0.68;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 160ms ease, color 160ms ease;
}

.lang__btn:hover { opacity: 1; }

.lang__btn[aria-current="true"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

/* On the page background, the active language carries the accent. */
.lang--onpage .lang__btn { color: var(--text-muted); opacity: 1; }
.lang--onpage .lang__btn:hover { color: var(--text); }
.lang--onpage .lang__btn[aria-current="true"] { color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100svh;
  padding-bottom: clamp(48px, 9vh, 96px);
  overflow: hidden;
  isolation: isolate;
  background: #2B1B17;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* Swapping the video for a still needs no other change: same container,
   same object-fit. */
.hero__video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Bottom third, for the eyebrow, tagline and CTA. */
    linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%),
    /* A lighter one at the top: this footage opens on a bright curtain,
       and the cream wordmark disappears into it without help. */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.32), transparent 24%);
}

.hero__content {
  position: relative;
  color: #FFF8F3;
  max-width: 900px;
}

.hero__eyebrow { color: rgba(255, 248, 243, 0.82); }

.hero__title {
  margin: 0 0 22px;
  max-width: 18em;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

/* ── Sections ────────────────────────────────────────────────────────────── */

.section { padding: var(--section-y) 0; }

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

/* Approach */
.approach .shell {
  max-width: 640px;
  text-align: center;
}

.approach__body {
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.14rem, 2.1vw, 1.4rem);
  line-height: 1.64;
  letter-spacing: 0.002em;
  text-wrap: pretty;
}

/* ── Styles & pricing ────────────────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* A single hairline outline is the entire card treatment: no fill,
   no shadow. */
.card {
  display: flex;
  flex-direction: column;
  padding: 40px 34px 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.card__title {
  margin: 0 0 16px;
  font-family: Fraunces, Georgia, serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

.card__desc {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.prices {
  /* Pushed down so price rows and CTAs line up across cards of
     differing description length. */
  margin: auto 0 26px;
}

.prices__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--text-muted);
}

.prices__row:first-child { border-top: 1px solid var(--border); }

.prices__val {
  font-variant-numeric: tabular-nums;
  color: var(--text);
  white-space: nowrap;
}

.handoff {
  margin: 44px auto 0;
  max-width: 44ch;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Logistics strip ─────────────────────────────────────────────────────── */

.logistics {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.logistics__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 52px;
}

.logistics__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.logistics__dash {
  width: 18px;
  height: 1px;
  flex: none;
  background: var(--brand-gradient);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  padding: 104px 0 64px;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__cta { margin-bottom: 72px; }

.footer__wordmark {
  margin-bottom: 20px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 32px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer__link:hover { color: var(--accent); }

/* Icon + label. The icon sits slightly above the text baseline on its own,
   so nudge it back down rather than centering the row. */
.footer__link--icon {
  gap: 8px;
}

.footer__link--icon svg {
  display: block;
  transform: translateY(1px);
}

/* Icon-only link: the 44px tap area comes from the row height, not a box. */
.footer__social {
  justify-content: center;
  min-width: 44px;
}

.footer__social svg { display: block; }

.footer__fine {
  margin-top: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  :root { --section-y: 88px; }

  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  :root { --section-y: 64px; }

  body { font-size: 17px; }

  .shell { padding-inline: 22px; }

  .site-header__inner { min-height: 66px; }

  .hero { padding-bottom: 44px; }

  .hero__title { margin-bottom: 16px; }

  .section__title { margin-bottom: 44px; }

  .card { padding: 32px 26px 28px; }

  .logistics { padding: 26px 0; }

  .logistics__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer { padding: 76px 0 48px; }
  .footer__cta { margin-bottom: 56px; }
  .footer__contact { gap: 0 26px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────────── */

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

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