/* ============================================================
   TripVeda — shared styles
   Demo website by Pavan Rengade · https://pavan.rengade.in
   ============================================================ */

:root {
  --coral: #ff5a3c;
  --coral-dark: #e6421f;
  --coral-soft: #fff0ec;
  --sunset: #ff9a3c;
  --teal: #0b4f5c;
  --teal-deep: #073842;
  --ocean: #0e7490;
  --sand: #fff8f3;
  --ink: #1c2b33;
  --muted: #5f7078;
  --line: #eee3da;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(11, 79, 92, 0.10);
  --shadow-lift: 0 18px 44px rgba(11, 79, 92, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; line-height: 1.25; color: var(--teal-deep); }

a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--coral-dark); }

img, svg { max-width: 100%; }

.container { width: min(1140px, 100% - 40px); margin-inline: auto; }

.muted { color: var(--muted); font-weight: 400; }

/* ---------- demo ribbon ---------- */
.demo-ribbon {
  background: var(--teal-deep);
  color: #ffe9d6;
  text-align: center;
  font-size: 0.82rem;
  padding: 8px 14px;
  line-height: 1.45;
}
.demo-ribbon a { color: #ffc48a; font-weight: 600; text-decoration: underline; }
.demo-ribbon a:hover { color: #fff; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand:hover { color: var(--teal-deep); }
.brand .brand-veda { color: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.current { color: var(--coral); border-bottom-color: var(--coral); }

.btn {
  display: inline-block;
  background: linear-gradient(120deg, var(--coral), var(--sunset));
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 90, 60, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 90, 60, 0.45); color: #fff; }
.btn.btn-ghost {
  background: transparent;
  color: var(--teal) !important;
  border: 2px solid var(--teal);
  box-shadow: none;
}
.btn.btn-ghost:hover { background: var(--teal); color: #fff !important; }
.btn.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 154, 60, 0.35), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(14, 116, 144, 0.45), transparent 60%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 55%, #0e6d80 100%);
  color: #fff;
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "🌴 ✈️ 🏔️ 🏖️ 🕌 🏝️";
  position: absolute;
  right: -20px;
  bottom: 10px;
  font-size: 2.2rem;
  opacity: 0.16;
  letter-spacing: 18px;
  pointer-events: none;
}
.hero .kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 700;
  max-width: 720px;
}
.hero h1 .accent { color: #ffc48a; }
.hero p.sub { max-width: 560px; margin-top: 14px; color: #d7ecf1; font-size: 1.05rem; }

/* page hero (inner pages) */
.page-hero { padding: 46px 0 54px; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }

/* ---------- search card ---------- */
.search-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 20px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  max-width: 880px;
}
.search-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 6px;
}
.search-card select, .field select, .field input, .field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--sand);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.search-card select:focus, .field select:focus, .field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
}

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section.tint { background: #fdf1e7; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.section-head p { color: var(--muted); margin-top: 8px; }
.section-head .eyebrow {
  color: var(--coral);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- destination tiles ---------- */
.dest-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.dest-tile {
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
  padding: 10px;
}
.dest-tile:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lift); color: #fff; }
.dest-tile .dest-emoji { font-size: 2.6rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25)); }
.dest-tile .dest-name { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.dest-tile .dest-sub { font-size: 0.75rem; opacity: 0.9; }

/* ---------- tour cards ---------- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); color: var(--ink); }
.tour-visual {
  position: relative;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-emoji { font-size: 4rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3)); }
.region-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}
.tour-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-meta { display: flex; justify-content: space-between; font-size: 0.83rem; color: var(--muted); }
.tour-rating { color: #e58e00; font-weight: 700; }
.tour-name { font-size: 1.12rem; }
.tour-highlights { font-size: 0.86rem; color: var(--muted); flex: 1; }
.tour-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.tour-price strong { font-family: "Poppins", sans-serif; font-size: 1.15rem; color: var(--teal-deep); }
.tour-price .muted { font-size: 0.78rem; }
.tour-cta { color: var(--coral); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

/* ---------- filter bar ---------- */
.filter-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-bottom: 26px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--line);
  background: var(--sand);
  color: var(--ink);
  font: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--coral); color: var(--coral); }
.chip.active {
  background: linear-gradient(120deg, var(--coral), var(--sunset));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 14px rgba(255, 90, 60, 0.3);
}
.filter-selects { display: flex; flex-wrap: wrap; gap: 10px; margin-left: auto; }
.filter-selects select {
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--sand);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}
.filter-selects select:focus { outline: none; border-color: var(--coral); }
.result-count { font-size: 0.95rem; color: var(--muted); margin-bottom: 18px; }
.result-count strong { color: var(--teal-deep); }

.empty-state {
  text-align: center;
  background: #fff;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 60px 24px;
}
.empty-state .big { font-size: 2.6rem; }
.empty-state h3 { margin: 10px 0 6px; }
.empty-state p { color: var(--muted); margin-bottom: 18px; }

/* ---------- feature / why us ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.feature .f-icon {
  width: 58px; height: 58px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: var(--coral-soft);
}
.feature h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature p { font-size: 0.88rem; color: var(--muted); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testi .stars { color: #e58e00; letter-spacing: 2px; }
.testi p.quote { font-size: 0.94rem; color: var(--ink); flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.testi .who strong { display: block; font-size: 0.94rem; color: var(--teal-deep); }
.testi .who span { font-size: 0.8rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--coral), var(--sunset));
  border-radius: var(--radius);
  color: #fff;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(255, 90, 60, 0.35);
}
.cta-band h2 { color: #fff; font-size: 1.5rem; }
.cta-band p { opacity: 0.92; margin-top: 4px; }
.cta-band .btn { background: #fff; color: var(--coral) !important; box-shadow: none; }

/* ---------- package detail ---------- */
.pkg-hero {
  color: #fff;
  padding: 60px 0;
  position: relative;
}
.pkg-hero .pkg-emoji { font-size: 4.2rem; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.3)); }
.pkg-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 8px 0 6px; }
.pkg-hero .pkg-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; font-weight: 600; align-items: center; }
.pkg-hero .pkg-meta .pill {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 44px 0 64px;
}
.pkg-main > section { margin-bottom: 40px; }
.pkg-main h2 { font-size: 1.35rem; margin-bottom: 16px; }

.hl-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hl-chip {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(11,79,92,0.06);
}

/* accordion */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11,79,92,0.06);
}
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: none;
  border: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.acc-head:hover { background: var(--coral-soft); }
.acc-day {
  flex-shrink: 0;
  background: linear-gradient(120deg, var(--coral), var(--sunset));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 10px;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.acc-title { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--teal-deep); flex: 1; }
.acc-arrow { color: var(--muted); transition: transform 0.2s ease; font-size: 0.8rem; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 18px 16px 18px; color: var(--muted); font-size: 0.93rem; }
.acc-item.open .acc-body { display: block; }
.acc-item.open { border-color: #ffd2c5; }

/* inclusions / exclusions */
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inc-box, .exc-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(11,79,92,0.06);
  border-top: 4px solid #2eaf6f;
}
.exc-box { border-top-color: #e05252; }
.inc-box h3, .exc-box h3 { font-size: 1rem; margin-bottom: 12px; }
.inc-box ul, .exc-box ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.inc-box li, .exc-box li { font-size: 0.9rem; padding-left: 26px; position: relative; }
.inc-box li::before { content: "✅"; position: absolute; left: 0; font-size: 0.8rem; }
.exc-box li::before { content: "❌"; position: absolute; left: 0; font-size: 0.8rem; }

/* booking box */
.booking-box {
  position: sticky;
  top: 88px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 24px;
  border-top: 5px solid var(--coral);
}
.booking-box h3 { font-size: 1.05rem; margin-bottom: 4px; }
.booking-box .price-line { margin-bottom: 16px; }
.booking-box .price-line strong { font-family: "Poppins", sans-serif; font-size: 1.5rem; color: var(--teal-deep); }
.booking-box .field { margin-bottom: 14px; }
.booking-box label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 6px; }
.stepper { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--sand); }
.stepper button {
  width: 44px; height: 44px;
  border: none;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
}
.stepper button:hover { background: #ffdcd2; }
.stepper .stepper-val { flex: 1; text-align: center; font-family: "Poppins", sans-serif; font-weight: 600; }
.bill { border-top: 1.5px dashed var(--line); margin-top: 6px; padding-top: 12px; font-size: 0.92rem; }
.bill-row { display: flex; justify-content: space-between; margin-bottom: 7px; }
.bill-row.discount { color: #1d9e63; font-weight: 600; }
.bill-row.total { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--teal-deep); border-top: 1.5px solid var(--line); padding-top: 10px; margin-top: 4px; }
.booking-box .btn { width: 100%; text-align: center; margin-top: 14px; }
.book-note { font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 10px; }
.form-error { color: #c93030; font-size: 0.83rem; margin-top: 8px; display: none; }

/* success panels */
.success-panel {
  background: #eefaf2;
  border: 1.5px solid #bfe8cf;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.success-panel .s-icon { font-size: 2.2rem; }
.success-panel h3 { color: #157347; margin: 8px 0 4px; }
.success-panel .booking-id {
  display: inline-block;
  background: #fff;
  border: 1.5px dashed #157347;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: "Poppins", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #157347;
  margin: 10px 0;
}
.success-panel p { font-size: 0.88rem; color: var(--muted); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: start; }
.info-card, .form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.info-card h2, .form-card h2 { font-size: 1.25rem; margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-row .i-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.info-row strong { display: block; font-size: 0.94rem; color: var(--teal-deep); }
.info-row p, .info-row a { font-size: 0.88rem; color: var(--muted); }
.map-box {
  margin-top: 8px;
  border-radius: 14px;
  height: 220px;
  background:
    linear-gradient(rgba(11,79,92,0.55), rgba(11,79,92,0.55)),
    repeating-linear-gradient(45deg, #9fc7cf 0 14px, #b7d8de 14px 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 6px;
  text-align: center;
  padding: 16px;
}
.map-box .pin { font-size: 2rem; }
.map-box small { opacity: 0.85; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- footer ---------- */
.footer {
  background: var(--teal-deep);
  color: #bcd7dd;
  margin-top: 40px;
  padding: 52px 0 0;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 36px; }
.footer p, .footer li { font-size: 0.88rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: #bcd7dd; }
.footer a:hover { color: #ffc48a; }
.footer .brand { color: #fff; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: #ffc48a; font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .search-card { grid-template-columns: 1fr 1fr; }
  .search-card .btn { grid-column: 1 / -1; }
  .pkg-layout { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.88rem; }
  .nav-links .btn { padding: 8px 16px; font-size: 0.85rem; }
  .hero { padding: 52px 0 70px; }
  .tour-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .dest-strip { grid-template-columns: repeat(2, 1fr); }
  .inc-exc { grid-template-columns: 1fr; }
  .filter-selects { margin-left: 0; width: 100%; }
  .filter-selects select { flex: 1; min-width: 120px; }
  .cta-band { padding: 30px 24px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .nav-inner { flex-wrap: wrap; justify-content: center; padding: 10px 0; gap: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .search-card { grid-template-columns: 1fr; padding: 16px; }
  .brand { font-size: 1.25rem; }
  .hero h1 { font-size: 1.7rem; }
}
