/* =====================================================================
   Passports & Prosecco: Global Stylesheet
   Palette: Navy + soft rose / rose-gold on warm ivory
   Type: Cormorant Garamond (headlines), Pinyon Script (accent),
         Inter (body)
   ===================================================================== */

:root {
  /* Brand palette */
  --navy: #12263f;
  --navy-deep: #0c1a2c;
  --navy-soft: #1d3a5c;
  --rose: #d9a7ae;
  --rose-soft: #f3dfe1;
  --rose-gold: #bd8a6a;
  --rose-gold-deep: #a4714f;
  --ivory: #faf6f1;
  --ivory-warm: #f3ece3;
  --cream-card: #ffffff;
  --ink: #22303f;
  --muted: #5d6b78;
  --line: #e7ddd2;
  --success: #2f6f52;
  --danger: #9a3b3b;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --script: "Pinyon Script", "Cormorant Garamond", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1160px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(18, 38, 63, 0.06);
  --shadow-md: 0 14px 40px rgba(18, 38, 63, 0.12);
  --shadow-lg: 0 24px 70px rgba(18, 38, 63, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-gold-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--ivory-warm); }
.section--navy { background: var(--navy); color: #eaf0f6; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--rose-gold-deep);
  margin: 0 0 14px;
}
.section--navy .eyebrow { color: var(--rose); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: #c7d3e0; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Script accent used for "& Prosecco" style flourishes */
.script { font-family: var(--script); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--rose-gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--rose-gold-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 10px 20px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand-lockup { display: flex; align-items: center; gap: 14px; }
.brand-lockup__logo {
  display: grid; place-items: center;
  min-width: 74px; height: 44px; padding: 0 10px;
  border: 1px dashed var(--rose-gold); border-radius: 8px;
  font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--rose-gold-deep); text-align: center; line-height: 1.1;
  background: #fff;
}
.brand-lockup__name { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup__name .primary {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--navy);
  letter-spacing: .3px;
}
.brand-lockup__name .primary .amp { font-family: var(--script); font-size: 1.5rem; color: var(--rose-gold-deep); }
.brand-lockup__name .sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 500; color: var(--navy); padding: 8px 14px; border-radius: 8px;
  font-size: .96rem;
}
.nav a:hover { background: var(--ivory-warm); color: var(--navy); }
.nav a.is-active { color: var(--rose-gold-deep); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-weight: 600; color: var(--navy); font-size: .92rem; white-space: nowrap; }
.header-phone span { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero (brand banner image) ---------- */
.hero-banner { background: var(--navy-deep); line-height: 0; }
.hero-banner__img { width: 100%; height: auto; display: block; }

.hero-intro { background: var(--ivory); text-align: center; padding: clamp(34px, 5vw, 54px) 0 clamp(30px, 4vw, 44px); }
.hero-intro__inner { max-width: 780px; }
.hero__kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .3em; font-size: .74rem;
  font-weight: 600; color: var(--rose-gold-deep); margin-bottom: 16px;
}
.hero-intro__tagline { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--navy); margin: 0 0 14px; }
.hero-intro__tagline .script { color: var(--rose-gold-deep); font-size: 1.25em; }
.hero-intro__sub { font-size: 1.12rem; color: var(--muted); max-width: 60ch; margin: 0 auto 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-deep); color: #cdd8e4; }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--maxw); margin: 0 auto; padding: 30px 24px; text-align: center;
}
.trustbar__stat .num { font-family: var(--serif); font-size: 2rem; color: #fff; line-height: 1; }
.trustbar__stat .label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); margin-top: 8px; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Service tiers ---------- */
.tier { position: relative; display: flex; flex-direction: column; }
.tier__icon { width: 52px; height: 52px; margin-bottom: 18px; color: var(--rose-gold-deep); }
.tier__icon svg { width: 100%; height: 100%; }
.tier h3 { margin-bottom: 6px; }
.tier__for { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rose-gold-deep); margin-bottom: 14px; font-weight: 600; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; }
.tier li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--muted); font-size: .96rem; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 7px;
  border-left: 2px solid var(--rose-gold); border-bottom: 2px solid var(--rose-gold);
  transform: rotate(-45deg);
}
.tier--featured { border-color: var(--rose-gold); box-shadow: var(--shadow-md); }
.tier__tag {
  position: absolute; top: -13px; left: 30px; background: var(--rose-gold); color: #fff;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 5px 14px; border-radius: 999px;
}
.tier .btn { margin-top: auto; }

/* ---------- Split / intro ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.media-placeholder {
  border-radius: var(--radius-lg); border: 1px dashed var(--rose-gold);
  background: linear-gradient(135deg, var(--ivory-warm), #fff);
  display: grid; place-items: center; min-height: 340px; color: var(--rose-gold-deep);
  text-align: center; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: 20px;
}
.media-placeholder small { display: block; margin-top: 6px; opacity: .7; letter-spacing: normal; text-transform: none; font-size: .85rem; }

/* ---------- Deals ---------- */
.deal-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 8px; }
.chip {
  font-family: var(--sans); font-size: .9rem; font-weight: 500; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--rose-gold); }
.chip.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.deal-controls__spacer { flex: 1; }
.deal-sort { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); }
.deal-sort select { font-family: var(--sans); padding: 8px 12px; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--navy); }

.brand-block { margin-top: 46px; }
.brand-block__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.brand-logo {
  min-width: 90px; height: 52px; border: 1px dashed var(--rose-gold); border-radius: 8px; background: #fff;
  display: grid; place-items: center; font-size: .56rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-gold-deep); text-align: center; padding: 4px 8px; line-height: 1.1;
}
.brand-logo-img { height: 52px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.brand-block__head h3 { margin: 0; }
/* Styled text wordmark shown until a real logo image is dropped in */
.brand-wordmark { margin: 0; font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; color: var(--navy); letter-spacing: .015em; line-height: 1.12; }
.brand-wordmark.has-logo { line-height: 0; }
.brand-block__count { margin-left: auto; font-size: .82rem; color: var(--muted); }

.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.deal-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.deal-card.is-expired { opacity: .72; }
.deal-card__brand { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-gold-deep); margin: 0 0 10px; }
.deal-card__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.badge--exclusive { background: var(--navy); color: #fff; }
.badge--signature { background: var(--rose-gold); color: #fff; }
.badge--expired { background: #f3e3e3; color: var(--danger); }
.badge--live { background: var(--rose-soft); color: var(--rose-gold-deep); }
.deal-card h4 { font-family: var(--serif); font-size: 1.32rem; color: var(--navy); margin: 0 0 8px; line-height: 1.2; }
.deal-card__desc { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.deal-card__meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; font-size: .9rem; }
.deal-card__meta .row { display: flex; flex-direction: column; gap: 3px; }
.deal-card__meta .k { color: var(--rose-gold-deep); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.deal-card__meta .v { color: var(--navy); font-weight: 500; line-height: 1.4; }
.deal-card__price { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); }
.deal-card__discount { color: var(--rose-gold-deep); font-weight: 600; font-size: .92rem; }
.deal-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.deal-card__valid { font-size: .8rem; color: var(--muted); }
.deal-card__valid.is-expired { color: var(--danger); font-weight: 600; }

.deals-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.deals-updated { font-size: .86rem; color: var(--muted); margin-top: 6px; }

/* ---------- Deal preview (home) ---------- */
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote-card p { font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--navy); line-height: 1.45; }
.quote-card .who { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: .9rem; color: var(--rose-gold-deep); margin: 0; }
.stars { color: var(--rose-gold); letter-spacing: 2px; margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; padding: clamp(60px, 9vw, 108px) 24px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd8e4; font-size: 1.14rem; }
.cta-band .btn { margin-top: 10px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--navy); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; padding: 13px 15px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose-gold); box-shadow: 0 0 0 3px var(--rose-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .84rem; color: var(--muted); }
.form-success { background: var(--rose-soft); border: 1px solid var(--rose); color: var(--navy); padding: 16px 18px; border-radius: 10px; display: none; }

/* ---------- Info list (contact) ---------- */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ic { color: var(--rose-gold-deep); width: 24px; height: 24px; flex: none; margin-top: 3px; }
.info-list .ic svg { width: 100%; height: 100%; }
.info-list .k { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.info-list .v { font-weight: 600; color: var(--navy); }

/* ---------- Page header ---------- */
.page-hero { background: var(--navy); color: #fff; padding: clamp(60px, 9vw, 110px) 0 clamp(48px, 7vw, 84px); }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero .lead { color: #c7d3e0; }
.page-hero .script { color: var(--rose); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b7c4d2; padding: 64px 0 30px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.site-footer a { color: #b7c4d2; }
.site-footer a:hover { color: var(--rose); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-brand .brand-lockup__name .primary { color: #fff; }
.footer-brand .brand-lockup__name .sub { color: #8fa1b3; }
.footer-brand .brand-lockup__logo { background: transparent; color: var(--rose); border-color: rgba(217,167,174,.5); }
.footer-brand p { color: #9fb0c0; max-width: 34ch; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { border-color: var(--rose); }
.footer-social svg { width: 18px; height: 18px; }
.footer-disclosure { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 24px; font-size: .82rem; color: #8195a6; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.footer-disclosure p { margin: 0; max-width: 70ch; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .preview-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .nav {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--ivory); border-bottom: 1px solid var(--line); padding: 14px 24px 22px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .nav a { padding: 12px 10px; }
  .split, .grid--2, .form .row2 { grid-template-columns: 1fr; }
  .split .media-placeholder { order: -1; }
}
@media (max-width: 620px) {
  .grid--3, .preview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-lockup__name .sub { display: none; }
  .hero__badge { display: none; }
  body { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card:hover, .deal-card:hover { transform: none; }
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--rose-gold); outline-offset: 2px; border-radius: 4px;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 12px; color: #fff; }

/* Visually hidden but available to screen readers & SEO */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
