/* ========================================
   RESET & BASE STYLES
======================================== */

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

:root {
  --bg-main: #FAF7F2;
  --bg-alt: #F3EFE8;
  --text-dark: #2F2F2F;
  --text-light: #4A4A4A;
  --accent: #C3B9A3;
  --accent-pink: #c05965;
  --font-script: 'Dancing Script', cursive;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --announcement-height: 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.6;
}


/* ========================================
   TYPOGRAPHY
======================================== */

.script-heading {
  font-family: var(--font-script);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c1c1c;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6f6a5c;
}

.section-title {
  font-family: var(--font-script);
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 15px;
}


/* ========================================
   BUTTONS
======================================== */

.btn-accent {
  display: inline-block;
  padding: 13px 34px;
  background: var(--accent-pink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.6px;
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background: #B5AA92;
}

.btn-outline {
  padding: 12px 28px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.cta-btn,
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-pink);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-btn:hover,
.cta-button:hover {
  background: #333;
}


/* ========================================
   ANNOUNCEMENT BAR
======================================== */

.announcement-bar {
  width: 100%;
  background: #f6f2ec;
  color: #000;
  border-bottom: 1px solid #e5e0d8;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 0;
}

.announcement-track {
  display: flex;
  padding-left: 100%;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.announcement-track span {
  margin: 0 40px;
  letter-spacing: 0.5px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ========================================
   NAVIGATION
======================================== */


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  position: sticky;
  top: 0; 
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  isolation: isolate;
}

.logo a {
  display: block;
  cursor: pointer;
}

.logo img {
  height: 64px;
  display: block;
  transition: opacity 0.3s ease;
}

.logo a:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  margin-left: 26px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 18px;
}

nav a:hover {
  color: var(--text-dark);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dropdown-menu a {
  padding: 12px 0 12px 30px ;
  color: var(--text-light);
  display: block;
  white-space: nowrap;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
/* ========================================
   HERO SECTIONS
======================================== */

.hero {
  height: auto;
  min-height: 100vh;
  width: 100%;
  background: url("images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: clamp(40px, 8vw, 100px) 20px;
}


.hero-text {
  max-width: 540px;
}

.hero-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 6vw, 50px);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.hero p {
  margin-bottom: 28px;
}

.hero-logo img {
  max-width: 320px;
  width: 100%;
  opacity: 0.95;
}

/* collections hero */
.collections-hero,
.about-hero {
  text-align: center;
  padding: 80px 10%;
  background: #f7f3ee;
}

.collections-hero h1,
.about-hero h1 {
  font-family: var(--font-script);
  font-size: 42px;
}

/* blouse hero */
.blouse-hero {
  padding: 90px 20px 70px;
  text-align: center;
  background: var(--bg-alt);
}

.blouse-hero h1 {
  font-family: var(--font-script);
  font-size: 50px;
  margin-bottom: 10px;
}

.blouse-hero p {
  font-size: 15px;
  color: #666;
  max-width: 620px;
  margin: 0 auto;
}


/* ========================================
   CARD COMPONENTS
======================================== */

.card {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-text {
  margin-top: 14px;
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-sans);
}

.card-text h3 {
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.card-text span {
  font-size: 13px;
  color: #777;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   GRIDS & LAYOUTS
======================================== */


.collection-grid {
  display: grid;           /* ← THIS creates the 3xn grid */
  grid-template-columns: repeat(3, 1fr);  /* ← THIS makes 3 columns */
  gap: 30px;               /* ← Spacing between cards */
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: var(--font-sans);
}


.blouse-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.see-more-btn {
  margin: 40px auto 80px; /* bottom spacing after button */
}

.end-message {
  text-align: center;
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--text-light);
  margin: 40px auto 0;
  opacity: 0.85;
}




/* ========================================
   SECTIONS
======================================== */

.intro {
  padding: 20px 22%;
  text-align: center;
  font-size: 18px;
}

.collections {
  background: var(--bg-alt);
  padding: 90px 60px;
  text-align: center;
  font-size: 18px;
}

.section {
  padding: 80px 40px;
}


/* ========================================
   FILTERS
======================================== */

.filters {
  display: flex;
  gap: 16px;
  padding: 30px 8%;
}

.filters select {
  padding: 10px 14px;
  font-size: 14px;
}

.tag-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag-btn {
  padding: 6px 14px;
  font-size: 12px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
}

.tag-btn.active,
.tag-btn:hover {
  background: #000;
  color: #fff;
}


/* ========================================
   MODAL
======================================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal h3 {
  font-family: var(--font-script);
}

.modal-content {
  background: #fff;
  padding: 24px;
  max-width: 520px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  font-family: var(--font-sans);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  margin-bottom: 16px;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

/* Navigation buttons */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 36px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  z-index: 10;
}

.modal-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.modal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


/* ========================================
   FOUNDERS SECTION
======================================== */

.founders {
  padding: 70px 12%;
  background: #fff;
}

.founders h2 {
  text-align: center;
  font-family: var(--font-script);
  font-size: 42px;
  margin-bottom: 60px;
  color: #2F2F2F;
}

.founders-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.founders-image {
  display: flex;
  justify-content: center;
}

.founders-image img {
  width: auto;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  vertical-align: middle;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founders-text p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 2.0;
}


/* ========================================
   PRESS FEATURE
======================================== */


.press-feature {
  padding: 80px 8%;
  background: #faf7f2;
  text-align: center;
}

.press-intro {
  font-size: 15px;
  color: #6f6a61;
  margin-top: 8px;
  margin-bottom: 30px;
}

.press-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-text {
  max-width: 460px;
  text-align: left;
}

.press-quote {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.press-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
}


/* ========================================
   TESTIMONIALS
======================================== */

.testimonials {
  background: #FAF7F2;
  padding: 90px 12%;
}

.testimonials h2 {
  text-align: center;
  font-family: var(--font-script);
  font-size: 30px;
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 36px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-pink) #f0f0f0;
}
.testimonial-grid::-webkit-scrollbar {
  height: 8px;
}

.testimonial-grid::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  background: var(--accent-pink);
  border-radius: 10px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  font-size: 14px;
  line-height: 1.7;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: #777;
}


/* ========================================
   VISIT STUDIO
======================================== */

.visit-studio {
  padding: 100px 8%;
  background: #fff;
  text-align: center;
}

.visit-content {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.visit-text {
  flex: 1;
  text-align: left;
}

.visit-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

.visit-note {
  font-size: 13px;
  color: #8a847a;
  margin-bottom: 15px;
}

.visit-map {
  flex: 1;
}

.visit-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ========================================
   CONTACT & FORMS
======================================== */

.contact-inquiry {
  padding: 100px 12%;
  background: var(--bg-alt);
  text-align: center;
}

.contact-sub {
  font-size: 15px;
  color: #6f6a61;
  margin: 15px auto 40px;
  max-width: 520px;
}

.inquiry-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: var(--font-sans);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #000;
}

.inquiry-form button {
  margin-top: 10px;
}


/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  padding: 90px 10%;
  background: #FAF7F2;
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* ========================================
   CTA SECTIONS
======================================== */

.cta {
  background: #fff;
  color: #000;
  padding: 80px 20%;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-serif);
  margin-bottom: 26px;
}

.collections-cta {
  text-align: center;
  padding: 80px 20px;
  background: #f6f2ec;
  margin-top: 80px;
}

.collections-cta h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 16px;
}

.collections-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ========================================
   EXHIBITION TIMELINE
======================================== */

.exhibition-timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto;
  padding: 60px 20px;
}

/* Vertical line */
.exhibition-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #d8d3c8, #c3b9a3, #d8d3c8);
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline item */
.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.timeline-item:hover {
  opacity: 1;
  transform: scale(1.02);
}

/* Left items */
.timeline-item.left {
  padding-right: 50%;
  padding-left: 0;
  text-align: right;
}

.timeline-item.left .timeline-content {
  margin-right: 40px;
}

/* Right items */
.timeline-item.right {
  padding-left: 50%;
  padding-right: 0;
  text-align: left;
}

.timeline-item.right .timeline-content {
  margin-left: 40px;
}

/* Timeline dot */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #c3b9a3;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover::after {
  width: 20px;
  height: 20px;
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 6px rgba(192, 89, 101, 0.2);
}

/* Content card */
.timeline-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 8px 30px rgba(192, 89, 101, 0.15);
  background: #fffbf7;
}

/* Date badge */
.timeline-date {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9a7b6f;
  background: #f6f2ec;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-date {
  background: var(--accent-pink);
  color: #fff;
  transform: scale(1.05);
}

/* Title */
.timeline-content h3 {
  font-family: var(--font-script);
  font-size: 22px;
  margin: 8px 0 10px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
  color: var(--accent-pink);
}

/* Description */
.timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Year markers on timeline */
.timeline-year {
  position: relative;
  text-align: center;
  margin: 80px 0 40px;
  z-index: 3;
}

.timeline-year span {
  display: inline-block;
  background: var(--bg-main);
  padding: 8px 24px;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent-pink);
  position: relative;
}

/* ========================================
   PROCESS TIMELINE
======================================== */

    /* PROCESS TIMELINE */
    .design-journey {
      position: relative;
      max-width: 1000px;
      margin: 100px auto;
      padding: 0 40px;
    }

    /* Vertical connecting line */
    .design-journey::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 60px;
      bottom: 60px;
      width: 2px;
      background: linear-gradient(
        to bottom,
        transparent,
        var(--accent) 10%,
        var(--accent) 90%,
        transparent
      );
      transform: translateX(-50%);
      z-index: 0;
    }

    /* Individual step */
    .journey-step {
      position: relative;
      display: flex;
      align-items: center;
      margin-bottom: 80px;
      gap: 60px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .journey-step:nth-child(1) { animation-delay: 0.1s; }
    .journey-step:nth-child(2) { animation-delay: 0.2s; }
    .journey-step:nth-child(3) { animation-delay: 0.3s; }
    .journey-step:nth-child(4) { animation-delay: 0.4s; }
    .journey-step:nth-child(5) { animation-delay: 0.5s; }
    .journey-step:nth-child(6) { animation-delay: 0.6s; }
    .journey-step:nth-child(7) { animation-delay: 0.7s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Alternate left/right */
    .journey-step.left {
      flex-direction: row;
    }

    .journey-step.right {
      flex-direction: row-reverse;
    }

    /* Step number badge */
    .step-number {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background: #fff;
      border: 3px solid var(--accent-pink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 600;
      color: var(--accent-pink);
      z-index: 10;
      transition: all 0.4s ease;
    }

    .journey-step:hover .step-number {
      background: var(--accent-pink);
      color: #fff;
      transform: translateX(-50%) scale(1.15);
      box-shadow: 0 0 0 8px rgba(192, 89, 101, 0.15);
    }

    /* Image container */
    .step-image {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .step-image img {
      width: 100%;
      max-width: 400px;
      height: 300px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

    .journey-step.left .step-image img {
      margin-left: auto;
    }

    .journey-step.right .step-image img {
      margin-right: auto;
    }

    .journey-step:hover .step-image img {
      transform: scale(1.03);
      box-shadow: 0 15px 50px rgba(192, 89, 101, 0.2);
    }

    /* Content */
    .step-content {
      flex: 1;
      position: relative;
      z-index: 2;
    }

    .journey-step.left .step-content {
      text-align: right;
      padding-right: 40px;
    }

    .journey-step.right .step-content {
      text-align: left;
      padding-left: 40px;
    }

    .step-label {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent-pink);
      background: rgba(192, 89, 101, 0.1);
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 14px;
      font-weight: 500;
    }

    .step-content h3 {
      font-family: var(--font-script);
      font-size: 32px;
      color: var(--text-dark);
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }

    .journey-step:hover .step-content h3 {
      color: var(--accent-pink);
    }

    .step-content p {
      font-size: 15px;
      line-height: 1.8;
      color: #666;
      max-width: 380px;
    }

    .journey-step.left .step-content p {
      margin-left: auto;
    }

/* ========================================
   FOOTER
======================================== */

.site-footer {
  position: relative;
  background: #F3EFE8;
  padding: 90px 60px 30px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  overflow: visible; /* Allow overflow */
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-script);
  font-size: 22px;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-family: var(--font-script);
  font-size: 25px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-cta {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: #000;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 30px;
}

.footer-cta:hover {
  opacity: 0.85;
}

/* Brand image - whole image with top 25% overflowing up */
.footer-brand {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin: -80px 0 0 0; /* Negative margin pulls it up to overlap */
  max-width: 100%;
  padding: 0;
}

.footer-brand img {
  width: auto;
  max-width: 100%;
  height: auto;
  opacity: 1.00;
  object-fit: cover;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dark);
}

.contact-strip {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 20px;
}

.contact-strip a {
  font-size: 20px;
  color: var(--text-dark);
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-strip a:hover {
  transform: translateY(-2px);
  color: var(--accent);
}
