/* ============================================================
   kimono-tea-ceremony.com — Design System (Minimalist Japanese)
   Primary: Deep Matcha #1F3D2B | Soft Matcha #3F6F4F
   Background: Warm Off-White #F5F3EE | White #FFFFFF
   Accent: Muted Gold #C9A646 (sparingly)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Tokens ---- */
:root {
  --matcha: #1F3D2B;
  --matcha-dark: #173222;
  --matcha-soft: #3F6F4F;
  --matcha-light: #4E7D5A;
  --cream: #F5F3EE;
  --charcoal: #1A1A1A;
  --gold: #C9A646;
  --gold-btn: #C2A75A;
  --gold-btn-dark: #a8893e;
  --beige: #dce7c9;
  --sand: #DCD5C8;
  --white: #ffffff;
  --text-muted: #555555;
  --border: #DCD5C8;
  --shadow-sm: 0 2px 16px rgba(31,61,43,0.07);
  --shadow-md: 0 8px 32px rgba(31,61,43,0.11);
  --shadow-lg: 0 20px 60px rgba(31,61,43,0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.3s ease;
  --container: 1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 48px 0; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-btn);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-btn-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(194,167,90,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--matcha);
  border: 1.5px solid var(--matcha);
}
.btn-outline:hover {
  background: var(--matcha);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(31,61,43,0.08);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.site-header.scrolled .logo { color: var(--charcoal); }
/* Dark bg (hero / footer): Logo is natively #dce7c9 transparent PNG, no filters needed */
.logo-img { height: 32px; width: auto; object-fit: contain; }
/* Light bg (scrolled white header): swap transparent PNG to the #45614a version */
.site-header.scrolled .logo-img {
  content: url('images/leaf-logo-dark.png');
}
.logo-icon { font-size: 1.5rem; }
.header-cta { font-size: 0.85rem; padding: 10px 22px; }
.site-header:not(.scrolled) .header-cta {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.site-header:not(.scrolled) .header-cta:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

@media (max-width: 768px) {
  .header-cta { display: none !important; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset for header */
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero { padding-top: 100px; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/kyoto-kimono-tea-ceremony-kiyomizu-1.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,28,19,0.98) 0%, rgba(23,50,34,0.85) 35%, rgba(31,61,43,0.45) 75%, rgba(63,111,79,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--white);
  margin-top: -40px; /* Shift content up slightly */
}

@media (max-width: 768px) {
  .hero-content { margin-top: 0; padding-bottom: 40px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,166,70,0.15);
  border: 1px solid rgba(201,166,70,0.6);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; line-height: 1.1; margin-bottom: 20px; }
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 300;
}
.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.city-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.88;
  color: var(--white);
}
.hero-trust .stars { color: var(--gold); font-size: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  animation: scrollBounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--matcha);
  padding: 18px 0;
}
.trust-bar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 16px 36px;
  padding: 0;
  margin: 0;
}
.trust-bar-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.trust-bar-list li::before {
  content: '•';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
.trust-bar-list li strong { color: var(--gold); font-weight: 600; }
@media (max-width: 768px) {
  .trust-bar-list { gap: 12px 24px; padding: 0 20px; }
  .trust-bar-list li { font-size: 0.78rem; gap: 6px; }
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--matcha);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}
.section-divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--matcha), var(--gold));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ---- Why Section ---- */
.why-section { background: var(--beige); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: none;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-logo { height: 44px; width: auto; object-fit: contain; margin: 0 auto 20px auto; display: block; }
.why-card h3 { margin-bottom: 10px; font-size: 1.1rem; font-weight: 600; }
.why-card p { font-size: 0.9rem; line-height: 1.7; }

/* ---- Tour Cards ---- */
.tours-section { background: var(--cream); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: none;
  border-top: 3px solid var(--matcha-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tour-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tour-city {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--matcha-soft);
}
.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 500;
}
.tour-rating .stars { color: var(--gold); }
.tour-rating .count { color: var(--text-muted); font-weight: 400; }
.tour-card h3 { font-size: 1.1rem; line-height: 1.4; font-weight: 600; }
.tour-highlights { display: flex; flex-direction: column; gap: 6px; }
.tour-highlights li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.tour-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--matcha-soft);
  font-weight: 600;
}


/* ---- Photo Gallery ---- */
.gallery-section { background: var(--beige); }
.gallery-tour-block { margin-bottom: 56px; }
.gallery-tour-block:last-child { margin-bottom: 0; }
.gallery-tour-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.gallery-tour-header h3 { font-size: 1.2rem; }
.gallery-tour-header .city-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--matcha);
  flex-shrink: 0;
}
.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--matcha) var(--beige);
}
.gallery-scroll::-webkit-scrollbar { height: 5px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--beige); border-radius: 10px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--matcha); border-radius: 10px; }
.gallery-item {
  flex: 0 0 340px;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .gallery-item { flex: 0 0 280px; height: 200px; }
}

/* ---- Card Widgets ---- */
.card-widget,
.card-widget *,
.card-widget [data-gyg-widget],
.card-widget [data-gyg-href] {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.card-widget {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Reviews ---- */
.reviews-section { background: var(--beige); }
.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--matcha) var(--beige);
}
.reviews-scroll::-webkit-scrollbar { height: 5px; }
.reviews-scroll::-webkit-scrollbar-track { background: var(--beige); }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--matcha); border-radius: 10px; }
.review-card {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: none;
  scroll-snap-align: start;
  height: auto;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-text {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--matcha);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-meta { font-size: 0.75rem; color: var(--text-muted); }
.review-tour-tag {
  display: inline-block;
  background: var(--beige);
  color: var(--matcha-soft);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
@media (max-width: 768px) { .review-card { flex: 0 0 280px; } }

/* ---- Comparison Table ---- */
.comparison-section { background: var(--cream); }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.comparison-table th:first-child { border-radius: 0; }
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--cream); }
.comparison-table .highlight-city {
  font-weight: 700;
  color: var(--charcoal);
}
.comparison-table .check { color: var(--matcha); font-weight: 700; }
.comparison-table .price-cell {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: none;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  cursor: pointer;
}
.faq-question:hover { color: var(--matcha-soft); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--matcha);
}
.faq-item.open .faq-icon { background: var(--matcha); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}
.faq-answer p { font-size: 0.9rem; line-height: 1.75; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(160deg, var(--matcha) 0%, var(--matcha-soft) 100%);
  color: var(--white);
  text-align: center;
  padding: 88px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-image: url('images/leaf-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-weight: 400; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--matcha);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.75; max-width: 320px; margin-bottom: 18px; opacity: 0.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ---- Sticky Mobile CTA ---- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--sand);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(31,61,43,0.1);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-mobile-cta .price-label { font-size: 0.75rem; color: var(--text-muted); }
.sticky-mobile-cta .price { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--matcha); }
.sticky-mobile-cta .btn { padding: 12px 22px; font-size: 0.9rem; flex: 1; justify-content: center; }
@media (max-width: 768px) { .sticky-mobile-cta { display: flex; } }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.gold { color: var(--gold); }
.green { color: var(--matcha-soft); }
.free-cancel { display: inline-flex; align-items: center; gap: 5px; color: var(--matcha); font-size: 0.8rem; font-weight: 600; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.55s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .tours-grid { grid-template-columns: 1fr; }
  .availability-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; gap: 14px; }
  .hero h1 { font-size: 1.9rem; }
}
