/* =========================================================
   MAIN.CSS — Component & Layout Styles
   1st Glimpse — Soft & Airy Theme
   ========================================================= */

/* =========================================================
   SITE HEADER / NAV
   ========================================================= */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s;
}
#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(58,46,43,0.07);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo a,
.site-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--plum);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--white);
  flex-shrink: 0;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--text); line-height: 1.2;
}
.logo-name small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

/* Custom logo image sizing */
.site-logo .custom-logo-link img {
  max-height: 52px; width: auto;
}

/* Primary nav */
#primary-nav ul {
  display: flex; gap: 32px; list-style: none;
}
#primary-nav ul li a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
#primary-nav ul li a:hover,
#primary-nav ul li.active a {
  color: var(--plum);
  border-bottom-color: var(--plum);
}

/* Header CTA */
.header-cta {
  background: var(--plum);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--plum-dark); color: var(--white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* =========================================================
   HERO — HOMEPAGE
   ========================================================= */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 76px);
}

.hero-content {
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 100px;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 24px; display: block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300; line-height: 1.08;
  color: var(--text); margin-bottom: 14px;
}
.hero-title em { font-style: italic; color: var(--plum); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 300;
  color: var(--muted); margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.hero-desc {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.85;
  max-width: 420px; margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 18px; align-items: center; }

.hero-image {
  position: relative; overflow: hidden;
  background: var(--blush);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-image-placeholder {
  width: 100%; height: 100%; min-height: calc(100vh - 76px);
  background: linear-gradient(145deg, #ecdbd6 0%, #d9c0ba 50%, #cbb0aa 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--rose-dark); opacity: 0.7;
}
.hero-image-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px; opacity: 0.6;
}

.hero-badge {
  position: absolute; bottom: 52px; left: -24px;
  background: var(--white);
  padding: 20px 28px; border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  z-index: 10;
}
.hero-badge-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); display: block; margin-bottom: 4px;
}
.hero-badge-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--text); display: block; line-height: 1.1;
}
.hero-badge-sub {
  font-size: 11px; color: var(--muted);
  text-decoration: line-through; display: block;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(145deg, #e0cec8 0%, #c4a098 100%);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-dark); opacity: 0.4;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
}

.about-content { padding: 60px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }

/* =========================================================
   SERVICES STRIP
   ========================================================= */
.services-strip {
  background: var(--white);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-item { text-align: center; padding: 32px 24px; }
.service-icon {
  font-size: 36px; margin-bottom: 16px; display: block;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; margin-bottom: 10px; color: var(--text);
}
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
}
.why-icon {
  font-size: 32px; display: block; margin-bottom: 18px;
}
.why-card h3 {
  font-size: 22px; margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* =========================================================
   PRICING SECTION
   ========================================================= */
.pricing-section {
  background: var(--white);
  padding: 100px 60px;
}
.pricing-section .pricing-grid { max-width: 1100px; margin: 0 auto; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: linear-gradient(135deg, #e8d5d0 0%, #dfc7c0 100%);
  padding: 100px 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 32px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--text); line-height: 1.65; margin-bottom: 24px;
}
.testimonial-quote::before { content: '\201C'; color: var(--rose); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testimonial-quote::after  { content: '\201D'; color: var(--rose); font-size: 28px; line-height: 0; vertical-align: -8px; margin-left: 2px; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--blush);
  overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-date { font-size: 11px; color: var(--muted); }
.stars { color: var(--rose); font-size: 14px; margin-bottom: 16px; }

/* =========================================================
   BOOKING EMBED
   ========================================================= */
.booking-section { background: var(--white); padding: 100px 60px; }
.booking-section h2 { text-align: center; margin-bottom: 48px; }
.booking-embed-wrap {
  max-width: 900px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; min-height: 500px;
  background: var(--light);
}
.booking-embed-wrap iframe { width: 100%; min-height: 600px; border: none; display: block; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--blush); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; color: var(--text); }
.contact-social { display: flex; gap: 12px; margin-top: 36px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--blush); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background 0.2s;
}
.social-link:hover { background: var(--plum); }

/* =========================================================
   ABOUT PAGE — TEAM / STORY
   ========================================================= */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  align-items: center;
}
.story-content h2 { margin-bottom: 24px; }
.story-content p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.story-image { border-radius: 4px; overflow: hidden; }
.story-image img { width: 100%; height: auto; display: block; }

.values-section { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.value-item {
  background: var(--white);
  padding: 48px 40px;
}
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; font-style: italic;
  color: var(--blush); line-height: 1; display: block; margin-bottom: 16px;
}
.value-title { font-size: 20px; margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page { padding: 80px 60px; max-width: 1300px; margin: 0 auto; }
.gallery-page .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-page .gallery-item { aspect-ratio: 1; cursor: pointer; }

/* =========================================================
   FAQ PAGE
   ========================================================= */
.faq-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 60px;
}
.faq-layout h2 { text-align: center; margin-bottom: 56px; }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
}

.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-name small { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.45);
  max-width: 260px; margin-top: 16px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.6);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--plum); color: var(--white); }

.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px; font-weight: 300;
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404-page {
  text-align: center;
  padding: 120px 60px;
  max-width: 600px;
  margin: 0 auto;
}
.error-404-page .error-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 300;
  color: var(--blush); line-height: 1;
  margin-bottom: 0;
}
.error-404-page h1 { font-size: 36px; margin-bottom: 16px; }
.error-404-page p { font-size: 16px; color: var(--muted); margin-bottom: 40px; }

/* =========================================================
   RESPONSIVE — COMPREHENSIVE BREAKPOINTS
   ========================================================= */

/* ----------------------------------------------------------
   1200px — Large laptop
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
  .header-inner { padding: 0 40px; }
  .hero-content { padding: 64px 60px 64px 80px; }
  .footer-inner { padding: 0 60px 60px; }
  .footer-bottom { padding: 20px 60px; }
  .about-section { padding: 80px 40px; }
  .story-section { padding: 80px 40px; gap: 60px; }
  .contact-layout { padding: 80px 40px; gap: 60px; }
  .gallery-page { padding: 60px 40px; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------------------------
   1024px — Tablet landscape: collapse 3-col grids to 2-col
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(42px, 6vw, 64px); }
  .header-inner { padding: 0 32px; gap: 20px; }
  #primary-nav ul { gap: 22px; }
  #primary-nav ul li a { font-size: 11px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Center lone third pricing card */
  .pricing-grid .pricing-card:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-inner { padding: 0 40px 56px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { padding: 20px 40px; }

  .about-section { padding: 72px 40px; gap: 40px; }
  .about-content { padding: 0 0 0 40px; }
  .story-section { padding: 72px 40px; gap: 48px; }
  .contact-layout { padding: 72px 40px; gap: 48px; }
  .values-grid { max-width: 100%; }
}

/* ----------------------------------------------------------
   900px — Tablet portrait: stack two-column layouts
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  /* Hero: single column, blurred image as background tint */
  .hero-section { grid-template-columns: 1fr; min-height: auto; position: relative; }
  .hero-image { position: absolute; inset: 0; z-index: 0; opacity: 0.18; }
  .hero-image-placeholder { min-height: 0; }
  .hero-content { position: relative; z-index: 1; padding: 72px 48px 80px; background: var(--cream); min-height: 600px; }
  .hero-badge { display: none; }
  .hero-desc { max-width: 560px; }
  .trust-row { flex-wrap: wrap; gap: 28px; padding-top: 36px; margin-top: 36px; }
  .trust-item { min-width: 80px; }

  /* About: stack, image on top */
  .about-section { grid-template-columns: 1fr; padding: 60px 40px; gap: 36px; }
  .about-image { aspect-ratio: 16/9; max-height: 420px; }
  .about-content { padding: 0; }

  /* Sections padding */
  .services-strip { padding: 60px 40px; }
  .pricing-section { padding: 72px 40px; }
  .booking-section { padding: 72px 40px; }
  .cta-section { padding: 72px 40px; }
  .testimonials-section { padding: 72px 40px; }

  /* Pricing: single column centered */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid .pricing-card:nth-child(3):last-child { grid-column: auto; max-width: 100%; margin: 0; }

  /* Why: stay 2-col on tablet portrait */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Story: stack, image first */
  .story-section { grid-template-columns: 1fr; padding: 60px 40px; gap: 36px; }
  .story-image { order: -1; }
  .story-image img { max-height: 380px; object-fit: cover; width: 100%; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  .value-item { padding: 36px 32px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; padding: 60px 40px; gap: 48px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  /* Gallery */
  .gallery-page { padding: 48px 32px; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 32px 48px; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 32px; }
}

/* ----------------------------------------------------------
   768px — Mobile: hamburger nav, full single-column
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  /* Mobile nav drawer */
  #primary-nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(58,46,43,0.1);
    padding: 8px 0 24px;
    z-index: 199;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  #primary-nav.open { display: block; }
  #primary-nav ul { flex-direction: column; gap: 0; }
  #primary-nav ul li a {
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.06em;
    padding: 15px 28px;
    display: block;
    border-bottom: none;
    border-top: 1px solid var(--border);
    color: var(--text);
    min-height: 48px; /* Touch-friendly */
  }
  #primary-nav ul li:first-child a { border-top: none; }
  #primary-nav ul li a:hover,
  #primary-nav ul li.active a { background: var(--cream); color: var(--plum); }

  /* Hamburger show + animation */
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Header */
  .header-inner { height: 68px; padding: 0 24px; gap: 16px; }

  /* Hero */
  .hero-content { padding: 56px 24px 64px; min-height: auto; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-subtitle { font-size: 18px; }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { text-align: center; padding: 16px; }
  .trust-row { gap: 20px; }
  .trust-num { font-size: 30px; }

  /* Divider strip */
  .divider-strip { font-size: 10px; padding: 14px 24px; }

  /* About */
  .about-section { padding: 48px 24px; }
  .about-image { aspect-ratio: 4/3; }
  .about-content h2 { font-size: 34px; }

  /* Services */
  .services-strip { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-item { padding: 24px 16px; }
  .service-icon { font-size: 28px; }
  .service-name { font-size: 18px; }

  /* Why */
  .why-section .container { padding: 0 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }

  /* Pricing */
  .pricing-section { padding: 56px 24px; }
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 36px 24px; }
  .pricing-price { font-size: 52px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 34px; }

  /* Booking */
  .booking-section { padding: 56px 24px; }
  .booking-embed-wrap { min-height: 400px; }
  .booking-embed-wrap iframe { min-height: 500px; }

  /* CTA */
  .cta-section { padding: 64px 24px; }
  .cta-section h2 { font-size: 36px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 14px; }
  .cta-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Story / About page */
  .story-section { padding: 48px 24px; }
  .story-content h2 { font-size: 34px; }
  .values-section .container { padding: 0 24px; }
  .value-item { padding: 32px 24px; }

  /* Contact */
  .contact-layout { padding: 48px 24px; gap: 40px; }
  .contact-info h2 { font-size: 34px; }

  /* Gallery */
  .gallery-page { padding: 40px 24px; }
  .gallery-page .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* FAQ */
  .faq-layout { padding: 48px 24px; }
  .faq-layout h2 { font-size: 34px; margin-bottom: 36px; }
  .accordion-btn { font-size: 15px; padding: 20px 0; }

  /* Page hero */
  .page-hero { padding: 56px 24px; }
  .page-hero h1 { font-size: 38px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; padding: 0 24px 44px; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }

  /* 404 */
  .error-404-page { padding: 80px 24px; }
  .error-404-page .error-num { font-size: 100px; }

  /* Prevent iOS input zoom */
  .form-control { font-size: 16px; }
}

/* ----------------------------------------------------------
   480px — Small mobile
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-content { padding: 48px 20px 56px; }
  .hero-title { font-size: clamp(32px, 11vw, 46px); }
  .hero-eyebrow { font-size: 10px; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-num { font-size: 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 20px 16px; }

  .gallery-page .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }

  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 48px; }
  .pricing-name { font-size: 24px; }

  .btn { padding: 14px 24px; }
  .hero-actions .btn { padding: 16px 20px; }

  .footer-inner { padding: 0 20px 40px; }
  .footer-bottom { padding: 14px 20px; font-size: 11px; }

  .cta-section { padding: 52px 20px; }
  .cta-section h2 { font-size: 32px; }

  .about-section,
  .contact-layout,
  .story-section,
  .faq-layout { padding-left: 20px; padding-right: 20px; }

  .page-hero { padding: 48px 20px; }
  .page-hero h1 { font-size: 34px; }
  .why-card { padding: 24px 20px; }
  .value-item { padding: 28px 20px; value-num: 40px; }
  .booking-section { padding: 48px 20px; }
}

/* ----------------------------------------------------------
   360px — Smallest phones
   ---------------------------------------------------------- */
@media (max-width: 360px) {
  .hero-title { font-size: 30px; }
  .header-inner { padding: 0 16px; }
  .hero-content { padding: 40px 16px 48px; }
  .trust-num { font-size: 24px; }
  .pricing-price { font-size: 42px; }
  .cta-section h2 { font-size: 28px; }
  .page-hero h1 { font-size: 30px; }
  .footer-inner { padding: 0 16px 36px; }
  .footer-bottom { padding: 14px 16px; }
  .accordion-btn { font-size: 14px; }
}
