/* Default styles for Singpho Landing Page */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --forest: #FDFBF7;
    --forest-mid: #F4EFEB;
    --bamboo: #3A5C3C;
    --bamboo-light: #4D7A50;
    --smoke: #2C241B;
    --ember: #A0522D;
    --ember-light: #CD853F;
    --moss: #556B2F;
    --moss-light: #6B8E23;
    --text-muted: #5E5041;
    --border: rgba(44, 36, 27, 0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--forest);
    color: var(--smoke);
    line-height: 1.7;
    font-size: 1.125rem;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }

  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--bamboo);
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .nav-logo {
    height: 110px;
    border-radius: 50%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ember);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
  }

  .nav-cta:hover { background: var(--ember-light); transform: scale(1.03); }

  .nav-cta svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
  }

  /* Bamboo stalks — the signature element */
  .bamboo-stalks {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    opacity: 0.6;
  }

  .stalk {
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(58,92,60,0.08), transparent);
    position: relative;
  }

  .stalk::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(200,169,110,0.15) 5%,
      rgba(200,169,110,0.3) 15%,
      rgba(200,169,110,0.15) 25%,
      rgba(200,169,110,0.3) 35%,
      rgba(200,169,110,0.15) 45%,
      rgba(200,169,110,0.3) 55%,
      rgba(200,169,110,0.15) 65%,
      rgba(200,169,110,0.3) 75%,
      rgba(200,169,110,0.15) 85%,
      transparent 100%
    );
  }

  .stalk-node {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: rgba(200,169,110,0.2);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bamboo);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--bamboo);
    opacity: 0.5;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 600;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 0.3rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--bamboo-light);
  }

  .hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-weight: 400;
  }

  .hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--ember);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); }

  .btn-primary svg { width: 20px; height: 20px; fill: #fff; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bamboo);
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover { border-color: var(--bamboo); color: var(--bamboo-light); }

  /* SECTION COMMON */
  .section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bamboo);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--smoke);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-title em { font-style: italic; color: var(--bamboo-light); }

  .section-body {
    font-size: 0.975rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
  }

  /* DIVIDER */
  .divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ABOUT PREMIUM */
  .about-premium {
    padding: 8rem 0;
    background: var(--forest);
    overflow: hidden;
  }

  .about-premium-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-premium-text {
    position: relative;
    z-index: 2;
  }

  .about-premium-text .section-title {
    margin-bottom: 2rem;
  }

  .about-premium-text p + p {
    margin-top: 1.25rem;
  }

  .about-premium-visual {
    position: relative;
  }

  .premium-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(44, 36, 27, 0.15);
  }

  .premium-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
  }

  .premium-image-wrapper:hover .premium-image {
    transform: scale(1.05);
  }

  .premium-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
  }

  .premium-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
  }

  .premium-badge svg {
    width: 28px;
    height: 28px;
    stroke: var(--ember);
    fill: rgba(160,82,45,0.1);
  }

  .badge-text {
    display: flex;
    flex-direction: column;
  }

  .badge-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    line-height: 1;
  }

  .badge-text strong {
    font-family: 'Playfair Display', serif;
    color: var(--smoke);
    font-size: 1.1rem;
    line-height: 1.2;
    margin-top: 0.15rem;
  }

  .story-highlights-premium {
    position: absolute;
    top: -2rem;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
  }

  .story-card-premium {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(44, 36, 27, 0.08);
    max-width: 320px;
    border: 1px solid rgba(44, 36, 27, 0.05);
    transition: transform 0.3s ease;
  }

  .story-card-premium:hover {
    transform: translateY(-5px);
  }

  .card-icon {
    font-size: 1.5rem;
    background: var(--forest-mid);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .card-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .card-text strong {
    font-size: 0.95rem;
    color: var(--smoke);
    line-height: 1.2;
  }

  .card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  @media (max-width: 992px) {
    .about-premium-inner {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    .story-highlights-premium {
      position: relative;
      top: auto;
      right: auto;
      margin-top: -3rem;
      flex-direction: row;
      justify-content: center;
      padding: 0 1rem;
      flex-wrap: wrap;
    }
    .story-card-premium {
      max-width: 100%;
      flex: 1 1 300px;
    }
    .premium-image {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .story-highlights-premium {
      flex-direction: column;
      margin-top: -2rem;
    }
    .story-card-premium {
      flex: 1 1 100%;
    }
  }

  /* SIGNATURE DISHES */
  .dishes-full {
    background: var(--forest-mid);
    padding: 6rem 0;
  }

  .dishes-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3rem;
    background: var(--border);
  }

  .dish-card {
    background: var(--forest-mid);
    padding: 2rem 1.75rem;
    position: relative;
    transition: background 0.3s;
  }

  .dish-card:hover { background: rgba(255,255,255,0.02); }

  .dish-icon {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.7;
  }

  .dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--smoke);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }

  .dish-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
  }

  .dish-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ember-light);
    font-weight: 500;
  }

  /* GALLERY STRIP */
  .gallery-strip {
    padding: 0 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* GALLERY SLIDER */
  .gallery-slider {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 12px;
  }

  .slider-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    background: var(--forest-mid);
  }

  .slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .slider-item {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.4s;
  }

  .slider-item:hover img {
    filter: brightness(1) saturate(1);
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
  }

  .slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
  }

  .slider-prev {
    left: 2rem;
  }

  .slider-next {
    right: 2rem;
  }

  .slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
  }

  .slider-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    background: var(--forest-mid);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .stars {
    color: #FABB05;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 0.95rem;
    color: var(--smoke);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .reviewer {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  /* EXPERIENCE */
  .experience-full {
    background: var(--forest-mid);
    padding: 6rem 0;
  }

  .experience-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .pillars {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .pillar {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    align-items: start;
  }

  .pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: var(--bamboo);
    opacity: 0.5;
    padding-top: 0.25rem;
  }

  .pillar-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--smoke);
    margin-bottom: 0.35rem;
  }

  .pillar-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
  }

  .quote-block {
    border-left: 2px solid var(--ember);
    padding-left: 1.75rem;
    margin-top: 1.5rem;
  }

  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--smoke);
    line-height: 1.5;
  }

  .quote-attr {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--bamboo);
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  /* VISIT */
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }

  .info-block { margin-bottom: 2rem; }

  .info-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bamboo);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .info-value {
    font-size: 0.975rem;
    color: var(--smoke);
    line-height: 1.6;
    font-weight: 300;
  }

  .info-value a { color: var(--bamboo-light); text-decoration: none; }
  .info-value a:hover { text-decoration: underline; }

  .map-placeholder {
    background: rgba(58,92,60,0.08);
    border: 1px solid var(--border);
    border-radius: 2px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 2rem;
  }

  .map-placeholder svg { width: 2rem; height: 2rem; stroke: var(--bamboo); fill: none; opacity: 0.6; }

  .map-placeholder p { font-size: 0.85rem; color: var(--text-muted); }

  .map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--bamboo);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    transition: border-color 0.2s;
  }

  .map-link:hover { border-color: var(--bamboo); }

  /* CTA FULL */
  .cta-full {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at center, rgba(196,84,30,0.07) 0%, transparent 70%);
  }

  .cta-inner { position: relative; z-index: 1; }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    color: var(--smoke);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .cta-title em { font-style: italic; color: var(--bamboo-light); }

  .cta-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--ember);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.25rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 0 40px rgba(160,82,45,0.2);
  }

  .cta-wa:hover { background: var(--ember-light); transform: translateY(-3px); box-shadow: 0 6px 40px rgba(160,82,45,0.3); }

  .cta-wa svg { width: 22px; height: 22px; fill: #fff; }

  /* MOBILE FLOATING ACTIONS */
  .mobile-floating-actions { display: none; }
  .floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
  }
  .floating-call {
    background: rgba(200, 169, 110, 0.1);
    color: var(--bamboo);
    border: 1px solid var(--border);
  }
  .floating-order {
    background: var(--ember);
    color: #fff;
    flex: 2;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--bamboo);
    letter-spacing: 0.05em;
  }

  .footer-info {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.6;
  }

  /* MODALS & LIGHTBOX */
  .modal-overlay, .lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    padding: 1rem;
  }
  .modal-overlay.active, .lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-content {
    background: var(--forest);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  #modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--smoke);
    margin-bottom: 1rem;
  }
  #modal-text {
    font-size: 1rem;
    color: var(--text-muted);
  }
  .lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
  }

  #delivery-check-btn {
    background: var(--bamboo);
    color: #fff;
    border-color: var(--bamboo);
  }
  #delivery-check-btn:hover {
    background: var(--bamboo-light);
    border-color: var(--bamboo-light);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    body { padding-bottom: 5rem; }
    .mobile-floating-actions {
      display: flex;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--forest-mid);
      padding: 1rem;
      z-index: 1000;
      border-top: 1px solid var(--border);
      gap: 1rem;
    }
    nav { padding: 1rem 1.25rem; }
    .nav-logo { height: 77px; }
    .bamboo-stalks { display: none; }
    .about-redesigned { flex-direction: column; padding: 3rem 1.25rem; }
    .about-image { position: relative; width: 100%; height: 280px; top: 0; left: 0; margin-bottom: -3rem; }
    .about-card { width: 100%; margin: 0; padding: 2rem 1.5rem; }
    .dishes-grid { grid-template-columns: 1fr; }
    .slider-container { height: 380px; }
    .slider-prev { left: 1rem; }
    .slider-next { right: 1rem; }
    .slider-btn { width: 40px; height: 40px; }
    .slider-btn svg { width: 20px; height: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .experience-inner { grid-template-columns: 1fr; gap: 3rem; }
    .visit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { flex-direction: column; align-items: flex-start; }
    .footer-info { text-align: left; }
    .section { padding: 4rem 1.25rem; }
    .gallery-strip { padding: 0 1.25rem 4rem; }
  }

  @media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .slider-container { height: 300px; }
    .slider-prev { left: 0.75rem; }
    .slider-next { right: 0.75rem; }
    .slider-btn { width: 36px; height: 36px; }
    .slider-dots { bottom: 1rem; gap: 0.4rem; }
    .slider-dot { width: 8px; height: 8px; }
  }
