:root {
  --ink: #16203a;
  --ink-soft: #3a4665;
  --paper: #fbf7f0;
  --paper-2: #f2ebdf;
  --card: #ffffff;
  --line: #e4dccd;
  --red: #c1443b;
  --red-dark: #9d322b;
  --blue: #2b4a7e;
  --gold: #cf9a4c;
  --muted: #7c8296;
  --shadow: 0 18px 40px -22px rgba(22, 32, 58, 0.45);
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.015em; }

.wrap { width: min(var(--wrap), calc(100% - 3rem)); margin-inline: auto; }
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin: 0 0 0.75rem;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.brand .star { color: var(--red); }
.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a { font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
}
.nav-cta:hover { background: var(--red); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,30,0.15) 0%, rgba(10,16,30,0.15) 40%, rgba(10,16,30,0.82) 100%),
              url("/img/hero-usa.jpg") center/cover no-repeat;
  transform: scale(1.03);
}
.hero-inner { position: relative; padding-bottom: clamp(3rem, 8vh, 6rem); max-width: 720px; }
.hero .eyebrow { color: #ffd9a0; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 700; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,0.9); margin: 1.2rem 0 2rem; max-width: 560px; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-stats div strong { font-family: var(--serif); font-size: 1.8rem; display: block; }
.hero-stats div span { font-size: 0.85rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.75); text-transform: uppercase; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  background: var(--red); color: #fff; border: 0; border-radius: 999px;
  padding: 0.85rem 1.7rem; font-family: var(--font); font-size: 1rem; font-weight: 500;
  transition: transform 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); background: var(--red-dark); }
.btn.ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); }
.btn.ghost:hover { background: rgba(255,255,255,0.12); }
.btn.dark { background: var(--ink); }
.btn.dark:hover { background: #0d1526; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section.alt { background: var(--paper-2); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin: 0.9rem 0 0; }

/* Intro band */
.intro-band { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.intro-band p { font-size: 1.15rem; color: var(--ink-soft); }
.intro-band .lede { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); line-height: 1.35; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.chip { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 0.4rem 0.95rem; font-size: 0.9rem; }

/* Cities grid */
.cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.6rem; }
.city {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.city:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px rgba(22,32,58,0.55); }
.city-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.city-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.city:hover .city-img img { transform: scale(1.06); }
.city-rank {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
  background: var(--paper); color: var(--ink); font-family: var(--serif); font-weight: 700;
  width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center; font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.city-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.city-body h3 { font-size: 1.4rem; }
.city-body .region { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.city-body p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 0.8rem; }
.city-tags span { font-size: 0.78rem; background: var(--paper-2); border-radius: 6px; padding: 0.2rem 0.55rem; color: var(--ink-soft); }

/* Prepare grid */
.prepare { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.prep-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; }
.prep-card .ico { font-size: 1.8rem; }
.prep-card h3 { font-size: 1.2rem; margin: 0.7rem 0 0.4rem; }
.prep-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ESTA */
.esta { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.esta-media { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.esta-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.esta h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.esta ul { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.esta li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink-soft); }
.esta li::before { content: "✓"; color: var(--red); font-weight: 700; margin-top: 0.05rem; }
.callout { margin-top: 1.6rem; background: var(--paper-2); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; border-radius: 0 10px 10px 0; font-size: 0.95rem; }

/* FAQ */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0 1.3rem; }
.faq summary { cursor: pointer; padding: 1.1rem 0; font-weight: 500; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 1.2rem; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.9rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: var(--font); font-size: 1rem; padding: 0.8rem 1rem; border: 1px solid var(--line);
  border-radius: 10px; background: var(--card); color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.thanks { color: var(--blue); font-weight: 500; }
.contact-aside { background: var(--ink); color: #fff; border-radius: 18px; padding: 2rem; }
.contact-aside h3 { color: #fff; font-size: 1.5rem; }
.contact-aside p { color: rgba(255,255,255,0.75); }
.contact-aside .line { display: flex; gap: 0.7rem; align-items: center; margin-top: 1rem; }

/* ---------- E-commerce (Site B only) ---------- */
.offer { background: var(--ink); color: #fff; }
.offer .section-head h2 { color: #fff; }
.offer .section-head p { color: rgba(255,255,255,0.72); }
.offer-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; background: var(--card);
  color: var(--ink); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.offer-media { position: relative; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.offer-media .ribbon {
  position: absolute; top: 1.1rem; left: 1.1rem; background: var(--red); color: #fff;
  padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
}
.offer-body { padding: 2.4rem; display: flex; flex-direction: column; }
.offer-body h3 { font-size: 1.9rem; }
.offer-price { display: flex; align-items: baseline; gap: 0.5rem; margin: 1rem 0; }
.offer-price .amount { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--red); }
.offer-price .per { color: var(--muted); }
.offer-body ul { list-style: none; padding: 0; margin: 0.5rem 0 1.6rem; display: grid; gap: 0.7rem; }
.offer-body li { display: flex; gap: 0.6rem; color: var(--ink-soft); }
.offer-body li::before { content: "★"; color: var(--gold); }
.offer-actions { margin-top: auto; display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.secure-note { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }

.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--red); color: #fff;
  font-size: 0.72rem; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px;
}

/* Modal / checkout */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(12,18,30,0.6); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; background: var(--paper); border-radius: 18px; width: min(480px, 100%);
  max-height: 90vh; overflow: auto; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-size: 1.3rem; }
.modal-close { background: none; border: 0; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
.modal-body { padding: 1.5rem; }
.cart-line { display: flex; gap: 1rem; align-items: center; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; }
.cart-line img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; }
.cart-line .grow { flex: 1; }
.cart-line .price { font-weight: 600; color: var(--red); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { background: var(--card); border: 0; width: 30px; height: 30px; cursor: pointer; font-size: 1rem; }
.qty span { width: 34px; text-align: center; }
.pay-form { display: grid; gap: 0.9rem; margin-top: 0.5rem; }
.pay-form label { font-size: 0.85rem; font-weight: 500; display: grid; gap: 0.35rem; }
.pay-form input { padding: 0.7rem 0.9rem; border: 1px solid var(--line); border-radius: 9px; font-family: var(--font); font-size: 0.95rem; }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 600; margin: 1.2rem 0; }
.pay-success { text-align: center; padding: 1rem 0; }
.pay-success .check { width: 64px; height: 64px; border-radius: 50%; background: #e7f4ec; color: #2f9e5b; display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1rem; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: rgba(255,255,255,0.7); padding: 3.5rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.foot .brand { color: #fff; }
.foot h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 1rem; }
.foot a { display: block; padding: 0.25rem 0; color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.foot a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem 1.5rem; gap: 1rem;
  }
  .nav-toggle { display: block; }
  .intro-band, .esta, .contact-grid, .offer-card, .foot-grid { grid-template-columns: 1fr; }
  .offer-media img { min-height: 220px; }
}
