/* ===== Colors India Tours and Travel — Spice Route design system ===== */

:root {
  --bg: #FBF6EC;
  --surface: #FFFFFF;
  --ink: #1B1A2E;
  --ink-60: rgba(27,26,46,0.6);
  --ink-15: rgba(27,26,46,0.15);
  --accent: #F2A93C;
  --accent-ink: #1B1A2E;
  --support: #C1272D;
  --night: #171633;
  --night-ink: #FBF6EC;

  --font-heading: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Switzer', sans-serif;

  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 32px;
  --sp-xl: 64px;
  --sp-xxl: 112px;

  --r-sm: 2px;
  --r-md: 6px;
  --r-pill: 999px;

  --container: 1240px;
}

:where(*, *::before, *::after) { box-sizing: border-box; margin: 0; padding: 0; }
:where(html) { scroll-behavior: smooth; }
:where(body) { min-height: 100vh; }
:where(img, svg, video) { display: block; max-width: 100%; }
:where(a) { color: inherit; text-decoration: none; }
:where(ul, ol) { list-style: none; }
:where(button, input, textarea, select) { font: inherit; color: inherit; }
:where(h1, h2, h3, h4, h5, h6, p, blockquote, figure, dl, dd) { margin: 0; padding: 0; border: 0; }

html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-lg); }
@media (max-width: 640px) { .container { padding: 0 var(--sp-md); } }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--support);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #E89A26; }
.btn-ghost-light { background: transparent; color: var(--night-ink); border-color: rgba(251,246,236,0.5); }
.btn-ghost-light:hover { border-color: var(--night-ink); }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink-15); }
.btn-ghost-dark:hover { border-color: var(--ink); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--ink-15);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.main-nav { display: flex; align-items: center; gap: var(--sp-xl); }
.main-nav ul { display: flex; gap: var(--sp-lg); }
.main-nav a { font-weight: 500; font-size: 15px; }
.main-nav a:hover { color: var(--support); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
@media (max-width: 880px) {
  .main-nav ul { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open ul {
    display: flex; flex-direction: column; gap: var(--sp-md);
    position: absolute; top: 84px; left: 0; right: 0; background: var(--bg);
    padding: var(--sp-lg); border-bottom: 1px solid var(--ink-15);
  }
  .main-nav .btn-primary { display: none; }
}

.hero {
  background: var(--night);
  color: var(--night-ink);
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: var(--sp-xl);
  min-height: 640px; padding-top: var(--sp-xxl); padding-bottom: var(--sp-xxl);
}
.hero-eyebrow { color: var(--accent); }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  color: var(--night-ink);
  margin-top: var(--sp-md);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lede {
  margin-top: var(--sp-lg); max-width: 46ch;
  font-size: 18px; color: rgba(251,246,236,0.78);
}
.hero-actions { display: flex; gap: var(--sp-md); margin-top: var(--sp-xl); flex-wrap: wrap; }
.hero-art {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-md);
  background: linear-gradient(155deg, #241F49 0%, #171633 55%, #2A1420 100%);
  overflow: hidden;
}
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art .dot { fill: var(--accent); }
.hero-art .route { stroke: var(--accent); stroke-width: 1.4; fill: none; stroke-dasharray: 5 6; opacity: 0.85; }
.hero-art .label {
  position: absolute; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(251,246,236,0.85);
}
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; min-height: auto; padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }
  .hero-art { order: -1; aspect-ratio: 16/10; }
}

.stat-strip { border-bottom: 1px solid var(--ink-15); background: var(--surface); }
.stat-strip .container {
  display: flex; flex-wrap: wrap; gap: var(--sp-xl);
  padding-top: var(--sp-lg); padding-bottom: var(--sp-lg);
}
.stat { flex: 1 1 160px; }
.stat .num { font-family: var(--font-heading); font-size: 40px; color: var(--support); line-height: 1; }
.stat .label { margin-top: 6px; font-size: 14px; color: var(--ink-60); }

.section { padding-top: var(--sp-xxl); padding-bottom: var(--sp-xxl); }
.section-head { max-width: 640px; margin-bottom: var(--sp-xl); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); margin-top: var(--sp-sm); }
.section-tight { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }

.region-bento {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px;
  gap: var(--sp-md);
}
.region-card {
  position: relative; grid-column: span 3; border-radius: var(--r-md);
  padding: var(--sp-lg); color: var(--night-ink); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.35s ease;
}
.region-card:hover { transform: translateY(-4px); }
.region-card.north { grid-column: span 3; grid-row: span 2; background: linear-gradient(150deg,#2A2657,#171633); }
.region-card.south { grid-column: span 3; grid-row: span 2; background: linear-gradient(150deg,#7A2A24,#171633); }
.region-card.west  { grid-column: span 3; background: linear-gradient(150deg,#8A5A17,#171633); }
.region-card.east  { grid-column: span 3; background: linear-gradient(150deg,#3A2657,#171633); }
.region-card .rname { font-family: var(--font-heading); font-size: 26px; }
.region-card .rdesc { margin-top: 6px; font-size: 14px; color: rgba(251,246,236,0.75); max-width: 34ch; }
.region-card .rlink { margin-top: var(--sp-md); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 880px) {
  .region-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .region-card, .region-card.north, .region-card.south, .region-card.west, .region-card.east { grid-column: span 1; grid-row: span 1; min-height: 220px; }
}

.journey-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl);
  align-items: center; padding: var(--sp-xl) 0; border-top: 1px solid var(--ink-15);
}
.journey-row:last-child { border-bottom: 1px solid var(--ink-15); }
.journey-row.reverse .journey-media { order: 2; }
.journey-media { aspect-ratio: 5/4; border-radius: var(--r-md); overflow: hidden; }
.journey-media .ph { width: 100%; height: 100%; }
.journey-region { color: var(--support); }
.journey-row h3 { font-size: clamp(24px,2.6vw,34px); margin-top: var(--sp-sm); }
.journey-meta { display: flex; gap: var(--sp-lg); margin-top: var(--sp-md); font-size: 14px; color: var(--ink-60); }
.journey-meta strong { color: var(--ink); font-family: var(--font-heading); }
.journey-row p.desc { margin-top: var(--sp-md); color: var(--ink-60); max-width: 48ch; }
.journey-row .btn { margin-top: var(--sp-lg); }
@media (max-width: 780px) {
  .journey-row, .journey-row.reverse { grid-template-columns: 1fr; }
  .journey-row.reverse .journey-media { order: 0; }
}

.journey-band {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end; color: var(--night-ink);
  margin: var(--sp-xl) 0;
}
.journey-band .ph { position: absolute; inset: 0; }
.journey-band .content { position: relative; padding: var(--sp-xl); max-width: 560px; }
.journey-band .journey-region { color: var(--accent); }

.ph { background: linear-gradient(160deg, #E8DFC8 0%, #F2A93C 45%, #C1272D 100%); position: relative; }
.ph.alt { background: linear-gradient(160deg, #241F49 0%, #171633 60%, #7A2A24 100%); }
.ph.alt2 { background: linear-gradient(160deg, #8A5A17 0%, #171633 70%); }

.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-xxl); }
.why-grid .big-line { font-family: var(--font-heading); font-size: clamp(26px,3vw,38px); line-height: 1.15; }
.why-list li { display: flex; gap: var(--sp-lg); padding: var(--sp-lg) 0; border-top: 1px solid var(--ink-15); }
.why-list li:last-child { border-bottom: 1px solid var(--ink-15); }
.why-list .n { font-family: var(--font-heading); color: var(--accent); font-size: 14px; padding-top: 3px; }
.why-list h4 { font-size: 18px; }
.why-list p { margin-top: 6px; color: var(--ink-60); font-size: 15px; }
@media (max-width: 780px) { .why-grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

.cta-band { background: var(--night); color: var(--night-ink); text-align: left; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-lg); flex-wrap: wrap; }
.cta-band h2 { color: var(--night-ink); font-size: clamp(28px,3.4vw,44px); max-width: 16ch; }

.site-footer { background: var(--ink); color: var(--bg); }
.site-footer .container { padding-top: var(--sp-xxl); padding-bottom: var(--sp-lg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: var(--sp-xl); }\n.footer-grid-5 { grid-template-columns: 1.3fr 1fr 0.8fr 0.9fr 0.9fr; }
.footer-grid h5 { font-family: var(--font-body); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: var(--sp-md); }
.footer-grid a, .footer-grid p { color: rgba(251,246,236,0.72); font-size: 15px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--bg); }
.footer-brand .logo { color: var(--bg); }
.footer-brand .logo .logo-mark { color: var(--bg); }
.footer-brand p { margin-top: var(--sp-md); max-width: 34ch; }
.footer-bottom { margin-top: var(--sp-xxl); padding-top: var(--sp-lg); border-top: 1px solid rgba(251,246,236,0.15); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-md); font-size: 13px; color: rgba(251,246,236,0.5); }
@media (max-width: 900px) { .footer-grid-5 { grid-template-columns: 1fr 1fr 1fr; } .footer-grid-5 .footer-brand { grid-column: span 3; } }\n@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }\n@media (max-width: 560px) { .footer-grid-5 { grid-template-columns: 1fr 1fr; } .footer-grid-5 .footer-brand { grid-column: span 2; } }

.tour-filter { display: flex; gap: var(--sp-md); flex-wrap: wrap; margin-bottom: var(--sp-xl); }
.tour-filter a { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 10px 18px; border: 1px solid var(--ink-15); border-radius: var(--r-pill); }
.tour-filter a.active, .tour-filter a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.tour-card { border-top: 1px solid var(--ink-15); padding-top: var(--sp-lg); }
.tour-card .ph { aspect-ratio: 4/3; border-radius: var(--r-md); margin-bottom: var(--sp-md); }
.tour-card .journey-region { font-size: 12px; }
.tour-card h3 { font-size: 21px; margin-top: 6px; }
.tour-card .meta { display: flex; justify-content: space-between; margin-top: var(--sp-md); font-size: 14px; }
.tour-card .meta .price { color: var(--support); font-weight: 600; }
@media (max-width: 980px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tour-grid { grid-template-columns: 1fr; } }

.tour-hero { background: var(--night); color: var(--night-ink); }
.tour-hero .container { padding-top: var(--sp-xxl); padding-bottom: var(--sp-xl); }
.tour-hero h1 { color: var(--night-ink); font-size: clamp(34px,4.6vw,58px); margin-top: var(--sp-sm); }
.tour-hero .meta-row { display: flex; gap: var(--sp-xl); margin-top: var(--sp-lg); flex-wrap: wrap; }
.tour-hero .meta-row div span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(251,246,236,0.55); }
.tour-hero .meta-row div strong { font-family: var(--font-heading); font-size: 20px; color: var(--accent); }

.tour-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--sp-xxl); }
@media (max-width: 900px) { .tour-body { grid-template-columns: 1fr; } }

.itinerary-day { display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-lg); padding: var(--sp-lg) 0; border-top: 1px solid var(--ink-15); }
.itinerary-day:last-child { border-bottom: 1px solid var(--ink-15); }
.itinerary-day .day-num { font-family: var(--font-heading); font-size: 28px; color: var(--accent); }
.itinerary-day h4 { font-size: 19px; }
.itinerary-day p { margin-top: 6px; color: var(--ink-60); font-size: 15px; }

.price-box { border: 1px solid var(--ink-15); border-radius: var(--r-md); padding: var(--sp-lg); position: sticky; top: 110px; height: fit-content; }
.price-box h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-60); margin-bottom: var(--sp-md); }
.price-row { display: flex; justify-content: space-between; padding: var(--sp-md) 0; border-top: 1px solid var(--ink-15); }
.price-row:first-of-type { border-top: 0; }
.price-row .label { font-weight: 500; }
.price-row .amount { font-family: var(--font-heading); color: var(--support); }
.price-box .btn { width: 100%; justify-content: center; margin-top: var(--sp-lg); }
.price-note { margin-top: var(--sp-md); font-size: 13px; color: var(--ink-60); }
.highlight-list li { position: relative; padding-left: 22px; margin-top: 10px; font-size: 15px; color: var(--ink-60); }
.highlight-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--accent); border-radius: 2px; }

.page-hero { background: var(--surface); border-bottom: 1px solid var(--ink-15); }
.page-hero .container { padding-top: var(--sp-xxl); padding-bottom: var(--sp-xl); }
.page-hero h1 { font-size: clamp(34px,4.4vw,54px); margin-top: var(--sp-sm); max-width: 18ch; }
.page-hero p { margin-top: var(--sp-md); max-width: 50ch; color: var(--ink-60); font-size: 18px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xxl); }
.contact-card { border-top: 1px solid var(--ink-15); padding-top: var(--sp-lg); margin-top: var(--sp-lg); }
.contact-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--support); }
.contact-card p, .contact-card a { margin-top: 6px; font-size: 18px; font-family: var(--font-heading); }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.about-body { max-width: 720px; }
.about-body p { margin-top: var(--sp-md); color: var(--ink-60); font-size: 18px; }
.about-body p:first-child { margin-top: 0; font-size: 21px; color: var(--ink); }

.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}


/* photo support (real images layered under text) */
.media-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-layer { position: absolute; inset: 0; z-index: 0; background: var(--night); }
.img-layer img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.92; }
.scrim::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(23,22,51,0.1) 0%, rgba(23,22,51,0.82) 100%); }
.scrim-flat::after { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(23,22,51,0.55); }
.above-scrim { position: relative; z-index: 2; }
.tour-hero.has-photo { position: relative; overflow: hidden; }
.tour-hero.has-photo .container { position: relative; z-index: 2; }


/* logo lockup: mark + wordmark */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo-mark { flex-shrink: 0; color: var(--ink); }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; line-height: 1; }
.logo-accent { color: var(--accent); }


/* FAQ accordion */
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--ink-15); padding: var(--sp-lg) 0; }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--ink-15); }
.faq-item summary { cursor: pointer; font-family: var(--font-heading); font-weight: 700; font-size: 18px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-md); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--sp-md); color: var(--ink-60); font-size: 16px; max-width: 68ch; }


/* Enquiry form */
.form-notice { padding: var(--sp-md) var(--sp-lg); border-radius: var(--r-md); margin-bottom: var(--sp-lg); font-size: 15px; }
.form-notice-success { background: rgba(242,169,60,0.15); border: 1px solid var(--accent); color: var(--ink); }
.form-notice-error { background: rgba(193,39,45,0.1); border: 1px solid var(--support); color: var(--ink); }
.ci-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.enquiry-form { display: flex; flex-direction: column; gap: var(--sp-lg); }
.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.enquiry-form label { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  padding: 13px 16px; border: 1px solid var(--ink-15); border-radius: var(--r-md);
  background: var(--surface); color: var(--ink);
}
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.enquiry-form textarea { resize: vertical; min-height: 100px; }
.enquiry-form button { align-self: flex-start; }
@media (max-width: 620px) { .enquiry-form .form-row { grid-template-columns: 1fr; } }

/* Signature circuit badge */
.badge-signature { display: inline-block; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-pill); margin-left: 10px; vertical-align: middle; }
.tour-card .badge-signature { position: absolute; top: 12px; left: 12px; z-index: 2; }
.tour-card { position: relative; }


/* page-hero with photo (about/contact) */
.page-hero.has-photo { position: relative; overflow: hidden; background: var(--night); border-bottom: none; }
.page-hero.has-photo h1, .page-hero.has-photo p { color: var(--night-ink); }
.page-hero.has-photo .eyebrow { color: var(--accent); }


/* Map embed */
.map-embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--ink-15); }
.map-embed iframe { display: block; filter: grayscale(0.15); }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(23,22,51,0.25);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 480px) { .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; } }

/* Mobile polish pass: tighter section spacing, disable desktop-only sticky, smaller map */
@media (max-width: 640px) {
  .section { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }
  .section-tight { padding-top: var(--sp-lg); padding-bottom: var(--sp-lg); }
  .page-hero .container, .page-hero.has-photo .container { padding-top: var(--sp-xl); padding-bottom: var(--sp-lg); }
  .tour-hero .container { padding-top: var(--sp-xl); padding-bottom: var(--sp-lg); }
  .cta-band .container { flex-direction: column; align-items: flex-start; text-align: left; }
  .journey-band .content { padding: var(--sp-lg); }
  .price-box { position: static; top: auto; }
  .map-embed iframe { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .stat-strip .container { gap: var(--sp-lg); }
  .stat { flex: 1 1 45%; }
}

/* Newsletter band (Hostinger Reach) */
.newsletter-band { background: var(--night); color: var(--night-ink); }
.newsletter-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-xl); padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); flex-wrap: wrap; }
.newsletter-inner h3 { color: var(--night-ink); font-size: clamp(22px, 2.6vw, 30px); margin-top: 6px; max-width: 26ch; }
.newsletter-form { min-width: 280px; }
.hostinger-reach-block-subscription-form-wrapper .hostinger-reach-block-form-fields {
  display: flex; gap: 10px; align-items: flex-end; flex-wrap: wrap;
}
.hostinger-reach-block-form-field label {
  display: block; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: rgba(251,246,236,0.7); margin-bottom: 6px;
}
.hostinger-reach-block-form-field input[type="email"] {
  font-family: var(--font-body); font-size: 15px; padding: 12px 16px;
  border-radius: var(--r-md); border: 1px solid rgba(251,246,236,0.25);
  background: rgba(251,246,236,0.06); color: var(--night-ink); min-width: 240px;
}
.hostinger-reach-block-form-field input[type="email"]::placeholder { color: rgba(251,246,236,0.4); }
.hostinger-reach-block-form-field .required { color: var(--accent); }
.hostinger-reach-block-submit {
  font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 13px 24px; border-radius: var(--r-md); border: none; cursor: pointer;
  background: var(--accent) !important; color: var(--accent-ink) !important;
}
.reach-subscription-message__text { font-size: 14px; margin-top: 10px; color: rgba(251,246,236,0.8); }
@media (max-width: 780px) { .newsletter-inner { flex-direction: column; align-items: flex-start; } }