/* ============================================
   GILI STORIES — Global Stylesheet
   Private Island Experience Studio
   ============================================ */

/* --- Design Tokens --- */
:root {
  --navy:       #0b1a2e;
  --deep-blue:  #102a44;
  --ocean:      #1a4a6e;
  --ocean-light:#2a6a9e;
  --gold:       #c4a35a;
  --gold-light: #d4b872;
  --sand:       #f5f0e6;
  --warm-white: #faf8f4;
  --text:       #1a1a1a;
  --text-light: #6b6b6b;
  --text-on-dark:#e8e4dc;
  --border:     #e0dbd2;
  --shadow:     0 2px 20px rgba(11,26,46,0.08);
  --shadow-lg:  0 8px 40px rgba(11,26,46,0.12);
  --radius:     2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--text-on-dark);
}

.section-sand {
  background: var(--sand);
}

.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

.subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  letter-spacing: 0.02em;
  line-height: 1.8;
  max-width: 600px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-dark .subtitle {
  color: rgba(232, 228, 220, 0.7);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 163, 90, 0.3);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.btn-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-lang {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-lang:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.8);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 26, 46, 0.3) 0%,
    rgba(11, 26, 46, 0.15) 40%,
    rgba(11, 26, 46, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero .subtitle {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Brand Statement --- */
.brand-statement {
  padding: 120px 0;
}

.brand-statement-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 40px;
}

.brand-statement h2 em {
  font-style: italic;
  color: var(--gold);
}

.brand-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.brand-feature {
  text-align: center;
}

.brand-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.brand-feature span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* --- Story Cards --- */
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 250%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(11,26,46,0.8), transparent);
  color: #fff;
}

.story-card-body {
  padding: 24px;
}

.story-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.story-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 400;
}

.story-card-tagline {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.story-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.story-card-feature {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.story-card-cta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.story-card-cta:hover {
  gap: 10px;
}

/* Story Cards Grid */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* --- Featured Story (large card) --- */
.featured-story {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
}

.featured-story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
}

.featured-story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,26,46,0.85) 0%,
    rgba(11,26,46,0.3) 50%,
    transparent 100%
  );
}

.featured-story-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  color: #fff;
  max-width: 600px;
}

.featured-story-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 300;
}

.featured-story-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Delivery Tiers --- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.tier {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.tier:last-child {
  border-right: none;
}

.tier:hover {
  background: var(--sand);
}

.tier-recommended {
  background: var(--navy);
  color: var(--text-on-dark);
}

.tier-recommended:hover {
  background: var(--deep-blue);
}

.tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 16px;
  font-weight: 600;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.tier-recommended .tier-desc {
  color: rgba(232,228,220,0.6);
}

.tier-items {
  list-style: none;
}

.tier-items li {
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(224,219,210,0.3);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tier-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.tier-recommended .tier-items li {
  border-color: rgba(255,255,255,0.1);
}

/* --- Route Map --- */
.route-map {
  position: relative;
  padding: 80px 0;
}

.route-islands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
}

.route-islands::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.route-island {
  text-align: center;
  position: relative;
  z-index: 1;
}

.route-island-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 12px;
  box-shadow: 0 0 0 4px rgba(196,163,90,0.2);
}

.route-island-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.route-island-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* --- Testimonials / Stories Wall --- */
.stories-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.stories-wall-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.stories-wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.stories-wall-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(11,26,46,0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.stories-wall-item:hover img {
  transform: scale(1.1);
}

/* --- Final CTA --- */
.final-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 46, 0.7);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 24px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 16px;
}

.final-cta .subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 40px;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(232,228,220,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(196,163,90,0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
}

.footer-social a:hover svg {
  fill: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(232,228,220,0.5);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bar span {
  font-size: 0.75rem;
  color: rgba(232,228,220,0.3);
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-item span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* --- Capture List --- */
.capture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.capture-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.capture-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196,163,90,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.capture-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.capture-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.capture-item-text p {
  font-size: 0.8rem;
  color: rgba(232,228,220,0.5);
}

/* --- Product Page --- */
.product-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top center;
}

.product-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,46,0.8), transparent 60%);
}

.product-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px;
  color: #fff;
  max-width: 700px;
}

.product-section {
  padding: 80px 0;
}

.experience-timeline {
  max-width: 600px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tiers {
    grid-template-columns: 1fr;
  }

  .tier {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .tier:last-child {
    border-bottom: none;
  }

  .featured-story {
    min-height: 500px;
  }

  .featured-story-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,26,46,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
  }

  .nav-hamburger {
    display: flex;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .brand-features {
    gap: 24px;
  }

  .route-islands {
    flex-direction: column;
    gap: 32px;
  }

  .route-islands::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: 100%;
  }

  .stories-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .trust-bar {
    gap: 24px;
  }

  .featured-story-content {
    padding: 24px;
  }

  .product-hero-content {
    padding: 40px 24px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 100svh;
  }
}
