/* ============================================
   GET ORGANIZED BY ALMA — Main Stylesheet
   ============================================ */

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

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --pink-light: #fce8ec;
  --pink-accent: #e8a0aa;
  --pink-text: #c97080;
  --grey-light: #f5f5f5;
  --grey-mid: #888888;
  --text-dark: #2c2c2c;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Section anchor offset so fixed nav doesn't cover headings */
#about, #my-work, #process, #faqs, #contact {
  scroll-margin-top: var(--nav-height);
}

/* ============================================
   NAVIGATION — fixed, transparent over hero, solid when scrolled
   ============================================ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#main-nav.nav-scrolled {
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Logo — left, hidden until scrolled */
.nav-logo-link {
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#main-nav.nav-scrolled .nav-logo-link {
  opacity: 1;
  pointer-events: auto;
}
.nav-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  display: block;
}

/* Centre links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active {
  opacity: 1;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}

/* CTA button — right, hidden until scrolled */
.nav-cta {
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.2s, color 0.2s;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  white-space: nowrap;
}
#main-nav.nav-scrolled .nav-cta {
  opacity: 1;
  pointer-events: auto;
}
.nav-cta:hover {
  background: var(--pink-accent);
  color: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--black); /* fallback while images load */
  display: flex;
  align-items: center;
  padding: 5rem 4rem 3rem;
  overflow: hidden;
}
/* Two stacked background layers that crossfade between them */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
/* Dark overlay sits on top of both background layers */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.72);
  z-index: 1;
}
/* hero-content must be above the overlay */
.hero-content { position: relative; z-index: 2; }
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
}
.hero-tagline-img {
  width: 1200px;
  max-width: 100%;
  margin-bottom: 2rem;
}
.logo-circle {
  background: var(--white);
  border-radius: 50%;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-primary.dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-primary.dark:hover {
  background: var(--pink-accent);
  color: var(--white);
  border-color: var(--pink-accent);
}

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
  background: var(--pink-light);
  padding: 1.25rem 2rem;
  text-align: center;
}
.tagline-strip p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
}

/* ============================================
   BENEFITS (accordion - closed by default)
   ============================================ */
.benefits {
  background: var(--black);
  padding: 4rem;
  color: var(--white);
}
.benefits h2 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.benefit-item {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.benefit-item:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.benefit-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.benefit-item:nth-child(even) .benefit-toggle { padding-left: 2rem; }
.chevron {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(180deg); /* closed = pointing down */
}
.benefit-item.open .chevron { transform: rotate(0deg); }
.benefit-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem 0 0;
}
.benefit-item:nth-child(even) .benefit-body { padding-left: 2rem; }
.benefit-item.open .benefit-body {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 1.25rem;
}
.benefit-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  margin-top: -1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { padding-top: 3.5rem; }
.about {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4rem 4rem;
}
.about-image {
  flex-shrink: 0;
  width: 330px;
}
.about-image img {
  width: 100%;
  height: 435px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--text-dark); font-weight: 600; }
.about-text p em { font-style: italic; color: var(--text-dark); }
.about-cta { margin-top: 1.5rem; text-align: right; }
.btn-outline {
  display: inline-block;
  background: var(--pink-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover {
  background: var(--pink-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   MY WORK — paginated gallery carousel + reviews
   ============================================ */
.gallery-section {
  background: var(--grey-light);
  padding: 3.5rem 2rem 0;
}
/* Carousel wrapper with room for arrow buttons */
.gallery-carousel {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}
/* Each page is a hidden 3×2 grid */
.gallery-page {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.28s ease;
}
.gallery-page.active { display: grid; }
.gallery-page img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-page img:hover { transform: scale(1.02); opacity: 0.9; }
/* Prev / Next arrow buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}
.gallery-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: -8px; }
.gallery-next { right: -8px; }
/* Page indicator dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0 2rem;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-mid);
  opacity: 0.35;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, background 0.2s;
}
.gallery-dot.active { opacity: 1; background: var(--text-dark); }

/* Reviews nested inside My Work */
.reviews-inner {
  background: var(--pink-light);
  padding: 3.5rem 2rem 4rem;
  margin-top: 2rem;
}
.reviews-inner .section-title { color: var(--text-dark); }
.review-location {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--pink-text);
  margin-top: -1.25rem;
  margin-bottom: 1.5rem;
}
.review-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--pink-accent);
  opacity: 0.4;
  text-align: center;
  margin-bottom: -1rem;
  user-select: none;
}
.review-caption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
  color: var(--pink-text);
  margin-top: 0.85rem;
}
.review-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.review-slide { display: none; width: 100%; opacity: 1; transition: opacity 0.28s ease; }
.review-slide.active { display: block; }
.review-slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }
.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-accent);
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dot.active { opacity: 1; }

/* ============================================
   PROCESS — dark background, 7-step accordion
   ============================================ */
.process-section {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem;
}
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.55); }
.process-steps {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.process-item {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.process-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.process-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.step-label { flex: 1; }
.step-chevron {
  font-size: 0.85rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.process-item.open .step-chevron { transform: rotate(0deg); }
.process-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.process-item.open .process-body {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 1.5rem;
}
.process-body p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.70);
  font-weight: 300;
  margin-bottom: 0.6rem;
}
.process-body p:last-child { margin-bottom: 0; }
.process-cta { text-align: center; }

/* ============================================
   FAQs — white background, serif headings
   ============================================ */
.faqs-section {
  background: var(--white);
  padding: 4rem 2rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.3;
}
.faq-chevron {
  font-size: 0.9rem;
  opacity: 0.4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.faq-item.open .faq-chevron { transform: rotate(0deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-body {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1.5rem;
}
.faq-body p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.8;
  margin-bottom: 0.6rem;
}
.faq-body p:last-child { margin-bottom: 0; }
.faqs-cta { text-align: center; }

/* ============================================
   CONTACT / FORM
   ============================================ */
.form-section {
  background: var(--black);
  padding: 4rem 2rem;
}
.form-card {
  max-width: 500px;
  margin: 0 auto;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 1rem;
}
/* Decorative rule beneath the title */
.form-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--pink-accent);
  margin: 0.65rem auto 0;
}
.form-subtitle {
  font-size: 0.9rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.form-subtitle a { color: var(--pink-accent); text-decoration: underline; }
.consultation-form input,
.consultation-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 0.85rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.consultation-form input::placeholder,
.consultation-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.consultation-form input:focus,
.consultation-form textarea:focus { border-bottom-color: var(--pink-accent); }
.consultation-form textarea { min-height: 90px; resize: none; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-checkbox input[type="checkbox"] {
  width: auto; border: none; margin: 0;
  accent-color: var(--pink-accent);
}
.form-checkbox label { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.btn-send {
  width: 100%;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.75rem;
}
.btn-send:hover { background: var(--pink-accent); color: var(--white); }
.form-note { font-size: 0.8rem; text-align: center; color: rgba(255,255,255,0.38); }

/* Inline form submission feedback */
.form-message {
  display: none;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: center;
}
.form-message:not(:empty) { display: block; }
.form-message--success {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--pink-accent);
  color: var(--white);
}
.form-message--error {
  background: rgba(220,60,60,0.12);
  border: 1px solid rgba(220,60,60,0.45);
  color: #f4a0a0;
}
.form-message-icon {
  display: inline-block;
  margin-right: 0.4rem;
  color: var(--pink-accent);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.footer-logo {
  flex-shrink: 0;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-left: auto;
}
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.icon { opacity: 0.7; }
.social-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  opacity: 0.75;
  margin-right: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-height: 56px; }

  /* ── NAV: drop absolute centering, shrink links, hide CTA pill ── */
  #main-nav {
    padding: 0 0.75rem;
    gap: 0;
    justify-content: space-between;
  }
  .nav-links {
    position: static;
    transform: none;
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  /* Hide nav CTA pill on mobile — hero already has a Book button */
  .nav-cta { display: none !important; }
  /* Shrink logo circle in nav */
  .nav-logo-img { height: 34px; width: 34px; }

  /* ── HERO: row layout matching desktop, scaled for mobile ── */
  .hero { padding: 4.5rem 1rem 2rem; min-height: 380px; }
  .hero-content { flex-direction: row; align-items: center; gap: 1rem; }
  .hero-left { display: flex; flex-direction: column; align-items: flex-start; flex: 1; min-width: 0; }
  .hero-tagline-img { width: 100%; max-width: 220px; margin-bottom: 1.25rem; }
  .hero-left .btn-primary {
    align-self: flex-start;
    width: auto;
    font-size: 0.65rem;
    padding: 0.75rem 1.4rem;
    white-space: normal;
    text-align: center;
  }
  .logo-circle { width: 130px; height: 130px; flex-shrink: 0; }

  .benefits { padding: 3rem 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item:nth-child(odd) { border-right: none; }
  .benefit-toggle,
  .benefit-item:nth-child(even) .benefit-toggle { padding-left: 0; }
  .benefit-body,
  .benefit-item:nth-child(even) .benefit-body { padding-left: 0; padding-right: 0; }

  .about { flex-direction: column; padding: 0 1.5rem 3rem; gap: 2rem; }
  .about-image { width: 100%; }
  .about-image img {
    height: 360px;
    object-position: center center;
  }
  .about-cta { text-align: center; }

  .gallery-page { grid-template-columns: repeat(2, 1fr); }
  .gallery-page img { height: 220px; }
  .gallery-carousel { padding: 0 20px; }

  .process-section,
  .faqs-section { padding: 3rem 1.5rem; }
  .faq-toggle { font-size: 1.1rem; }

  footer { flex-direction: column; padding: 2.5rem 1.5rem; text-align: center; }
  .footer-contact { margin: 0 auto; align-items: center; }
}

@media (max-width: 480px) {
  /* Gallery: single column at small screens — 2 images per page, taller for clarity */
  .gallery-page { grid-template-columns: repeat(2, 1fr); }
  .gallery-page img { height: 160px; }
  .nav-links a { font-size: 0.58rem; letter-spacing: 0.06em; }
}
