/* ========================================
   COLOR PALETTE - Edit colors here only
   All colors should use these variables
   ======================================== */
:root {
      
  --fixed-header-height: 88px;
      
      /* Brand Colors - Primary (Green) */
      --primary: #2E7D6B;
      --primary-light: #3D9B85;
      --primary-dark: #1E5A4D;
      
      /* Brand Colors - Accent (Peach/Coral) */
      --accent: #E8A87C;
      --accent-light: #F5C9A8;
      
      /* Background Colors */
      --white: #FFFFFF;
      --cream: #FDF8F3;
      --warm-white: #FFFAF5;
      
      /* Text Colors */
      --text-dark: #2D2D2D;
      --text-medium: #5A5A5A;
      --text-light: #888888;
      
      /* UI Colors */
      --star-gold: #FFD700;
      --link-footer: #7dc9b8;
      --link-footer-hover: #a5ddd2;
      
      /* Status Colors (future use) */
      --success: #2E7D6B;
      --error: #D64545;
    }

    @media (max-width: 768px) {
      :root { --fixed-header-height: 96px; }
    }

    /* Fix for mobile overscroll white space below footer */
    html {
      background-color: #2D2D2D;
      scroll-padding-top: calc(var(--fixed-header-height) + 16px);
    }

    .saras-title-green { color: var(--primary-dark) !important; }

    /* SKIP LINK - Accessibility */
    .skip-link {
      position: absolute;
      top: -50px;
      left: 0;
      background: var(--primary);
      color: white;
      padding: 12px 24px;
      z-index: 9999;
      text-decoration: none;
      font-weight: 600;
      border-radius: 0 0 8px 0;
      transition: top 0.3s;
    }
    .skip-link:focus {
      top: 0;
    }

    /* FOCUS STATES - Accessibility */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    .hamburger-menu:focus {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }
    
    a:focus:not(:focus-visible),
    button:focus:not(:focus-visible) {
      outline: none;
    }
    
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    .hamburger-menu:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }

    /* CONTENT LINKS - Brand-styled hyperlinks in content areas */
    .about-story-content a,
    .services-intro a,
    .staff-intro a,
    .trust-bar a,
    p a {
      color: var(--primary);
      text-decoration: underline;
      font-weight: 500;
      transition: color 0.2s ease;
    }
    
    .about-story-content a:hover,
    .services-intro a:hover,
    .staff-intro a:hover,
    .trust-bar a:hover,
    p a:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }
    
    .about-story-content a:visited,
    .services-intro a:visited,
    .staff-intro a:visited,
    .trust-bar a:visited,
    p a:visited {
      color: var(--primary-dark);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Open Sans', sans-serif;
      color: var(--text-dark);
      line-height: 1.7;
      background: var(--warm-white);
    }
    
    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.3;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    
    /* HEADER */
    header {
      background: white;
      padding: 16px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1002;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    }
    
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .logo-icon {
      width: 32px;
      height: 32px;
      border-radius: 6px;
    }
    
    .logo span {
      color: var(--primary-dark);
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 32px;
    }
    
    nav a {
      text-decoration: none;
      color: var(--text-medium);
      font-weight: 500;
      transition: color 0.3s;
    }
    
    nav a:hover {
      color: var(--primary);
    }
    
    .header-cta {
      background: var(--primary);
      color: white;
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
    }
    
    .header-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    
    /* HERO */
    .hero {
      padding: 160px 0 100px;
      background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(46,125,107,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    
    .hero-content h1 {
      font-size: 52px;
      color: var(--text-dark);
      margin-bottom: 24px;
    }
    
    .hero-content h1 span {
      color: var(--primary);
    }
    
    .hero-content p {
      font-size: 20px;
      color: var(--text-medium);
      margin-bottom: 32px;
      max-width: 500px;
    }
    
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    
    .btn-primary {
      background: var(--primary);
      color: white;
      padding: 16px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(46,125,107,0.3);
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(46,125,107,0.4);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      padding: 16px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 18px;
      border: 2px solid var(--primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    
    .btn-secondary:hover {
      background: var(--primary);
      color: white;
    }
    
    .hero-image {
      position: relative;
    }
    
    .hero-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(46,125,107,0.3);
    }
    
    /* TRUST BAR */
    .trust-bar {
      background: white;
      padding: 30px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .trust-items {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-medium);
    }
    
    .trust-item .icon {
      width: 40px;
      height: 40px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
    }
    
    .trust-item strong {
      color: var(--text-dark);
    }
    
    /* SERVICES */
    .services {
      padding: 100px 0;
      background: var(--primary);
    }

    .services .section-header h2,
    .services .section-header p {
      color: white;
    }

    .services .section-header p { opacity: 0.9; }

    .services .service-card {
      color: var(--text);
    }

    .services .service-card h3 { color: var(--text); }

    .services .service-card p { color: var(--text-light); }

    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h2 {
      font-size: 42px;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    
    .section-header p {
      font-size: 18px;
      color: var(--text-medium);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    
    .service-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 0;
      text-align: center;
      transition: all 0.3s;
      overflow: hidden;
    }
    
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .service-image {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }
    
    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      font-size: 36px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .service-card h3 {
      font-size: 22px;
      margin-bottom: 12px;
      color: var(--text-dark);
      padding: 24px 20px 0;
    }
    
    .service-card p {
      color: var(--text-medium);
      font-size: 15px;
      padding: 0 20px 24px;
    }
    
    /* WHY CHOOSE US */
    .why-us {
      padding: 100px 0;
      background: var(--cream);
    }
    
    .why-us-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    
    .why-card {
      background: white;
      border-radius: 20px;
      padding: 40px;
      display: flex;
      gap: 24px;
      transition: all 0.3s;
    }
    
    .why-card:hover {
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    
    .why-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      flex-shrink: 0;
    }
    
    .why-content h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: var(--text-dark);
    }
    
    .why-content p {
      color: var(--text-medium);
    }
    
    /* ABOUT */
    .about {
      padding: 100px 0;
      background: white;
    }
    
    .about .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    
    .about-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    
    .about-content h2 {
      font-size: 42px;
      margin-bottom: 24px;
    }
    
    .about-content p {
      color: var(--text-medium);
      margin-bottom: 20px;
      font-size: 17px;
    }
    
    .about-quote {
      background: var(--cream);
      border-left: 4px solid var(--primary);
      padding: 24px 30px;
      margin-top: 30px;
      border-radius: 0 16px 16px 0;
    }
    
    .about-quote p {
      font-style: italic;
      font-size: 18px;
      color: var(--text-dark);
      margin: 0;
    }
    
    /* TESTIMONIALS */
    .testimonials {
      padding: 100px 0;
      background: var(--primary);
      color: white;
    }
    
    .testimonials .section-header h2 {
      color: white;
    }
    
    .testimonials .section-header p {
      color: rgba(255,255,255,0.8);
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    /* TESTIMONIAL CAROUSEL (AUTO-SCROLL + ARROWS + SEAMLESS LOOP) */
    .testimonial-carousel {
      position: relative;
      margin-top: 40px;
    }

    .testimonial-viewport {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: none;
      padding: 10px 64px; /* space for arrows on desktop */
      box-sizing: border-box;
      scroll-padding-left: 64px;
      scroll-padding-right: 64px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .testimonial-viewport.manual-snap {
      scroll-snap-type: x proximity;
    }

    .testimonial-viewport::-webkit-scrollbar {
      display: none;
    }

    .testimonial-viewport.is-snapping {
      scroll-behavior: smooth;
    }

.testimonial-track {
      display: flex;
      gap: 24px;
      width: max-content;
      will-change: transform;
      align-items: stretch;
    }

    /* Keep cards readable and consistent */
    .testimonial-card {
      flex: 0 0 360px; /* Desktop: designed to fit 3 across on typical screens */
      max-width: 520px;
      scroll-snap-align: start;
      height: 100%;
    }

    @media (max-width: 1024px) {
      .testimonial-card { flex-basis: 420px; } /* Tablet: 2 across */
      .testimonial-viewport { padding-left: 56px; padding-right: 56px; scroll-padding-left: 56px; scroll-padding-right: 56px; }
    }

    @media (max-width: 640px) {
      .testimonial-card { flex-basis: calc(100vw - 32px); max-width: none; } /* Mobile: 1 full card */
      .testimonial-viewport { padding-left: 16px; padding-right: 16px; scroll-padding-left: 16px; scroll-padding-right: 16px; }
    }

    .testimonial-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.15);
      color: white;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 5;
      transition: background 0.2s ease, transform 0.2s ease;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .testimonial-arrow:hover {
      background: rgba(255,255,255,0.25);
    }

    .testimonial-arrow:active {
      transform: translateY(-50%) scale(0.98);
    }

    .testimonial-arrow-left { left: 10px; }
    .testimonial-arrow-right { right: 10px; }

    @media (max-width: 768px) {
      .testimonial-track {
      display: flex;
      gap: 24px;
      width: 100%;
      will-change: transform;
      align-items: stretch;
    }
      .testimonial-arrow { display: none; } /* swipe on mobile */
      .testimonial-card {
      flex: 0 0 calc((100% - (24px * 2)) / 3); /* 3 cards per view (desktop) */
      max-width: 520px;
      scroll-snap-align: start;
      height: 100%;
    }
    }

    
    .testimonial-card {
      flex: 0 0 calc((100% - (24px * 2)) / 3); /* 3 cards per view (desktop) */
      max-width: 520px;
      scroll-snap-align: start;
      height: 100%;
    }
    
    .testimonial-rating {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }

    .testimonial-rating .star {
      width: 18px;
      height: 18px;
      fill: var(--accent);
      flex: 0 0 auto;
    }

.testimonial-card p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.95);
    }

    .testimonial-card p::before {
      content: "\201C";
    }

    .testimonial-card p::after {
      content: "\201D";
    }
    
    .testimonial-author {
      font-weight: 600;
      color: var(--accent-light);
    }
    
    /* CONTACT */
    .contact {
      padding: 100px 0;
      background: var(--cream);
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 50px;
      align-items: center;
    }
    
    /* Reversed contact grid - image on left, info on right */
    .contact-grid-reversed {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .contact-grid-reversed .contact-image {
      order: -1;
    }
    
    .contact-grid-reversed .contact-info {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding-right: 20px;
    }
    
    .contact-grid-reversed .contact-info h2 {
      text-align: right;
      width: 100%;
    }
    
    .contact-grid-reversed .contact-item {
      width: 280px;
    }
    
    .contact-image {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    
    .contact-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .contact-info h2 {
      font-size: 42px;
      margin-bottom: 30px;
    }
    
    .contact-item {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 22px;
      flex-shrink: 0;
    }
    
    .contact-details h4 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--text-dark);
    }
    
    .contact-details p {
      color: var(--text-medium);
    }
    
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    
    .map-container iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }
    
    /* CTA BANNER */
    .cta-banner {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
      padding: 80px 0;
      text-align: center;
    }
    
    .cta-banner h2 {
      font-size: 38px;
      color: white;
      margin-bottom: 16px;
    }
    
    .cta-banner p {
      font-size: 20px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 30px;
    }
    
    .cta-banner .btn-primary {
      background: white;
      color: var(--primary);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    
    .cta-banner .btn-primary:hover {
      background: var(--primary);
      color: white;
    }
    
    /* FOOTER */
    footer {
      background: var(--text-dark);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-brand .logo {
      margin-bottom: 16px;
      color: var(--white);
    }
    
    .footer-brand p {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
    }
    
    .footer-col h4 {
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 16px;
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col li {
      margin-bottom: 12px;
    }
    
    .footer-col a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-col a:hover {
      color: var(--accent);
    }

    /* SOCIAL LINKS WITH ICONS */
    .social-links-text {
      display: flex;
      flex-direction: column;
      gap: 12px;
      list-style: none;
    }

    .social-link-row {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-link-row:hover {
      color: var(--accent);
    }

    .social-link-row svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      text-align: center;
    }

    .footer-bottom .service-area-line {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .footer-bottom .copyright {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
    }
    
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero .container,
      .about .container,
      .contact .container {
        grid-template-columns: 1fr;
      }
      
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }
      
      .services-grid,
      .why-us-grid {
        grid-template-columns: 1fr;
      }
      
      nav ul {
        display: none;
      }
      
      .trust-items {
        flex-direction: column;
        gap: 20px;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .contact-image {
        order: -1;
      }
    }
  /* Image positioning fix for desktop */
@media (min-width: 1024px) {
  .hero img,
  .about img,
  .image-wrapper img {
    object-fit: cover;
    object-position: center 20%;
  }
}

/* Subtle zoom-on-hover (desktop only) */
@media (min-width: 1024px) {
  .hero-image,
  .about-image {
    overflow: hidden;
  }
  .hero-image img,
  .about-image img {
    transition: transform 600ms ease;
    transform-origin: center;
    will-change: transform;
  }
  .hero-image:hover img,
  .about-image:hover img {
    transform: scale(1.03);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-image img,
  .about-image img {
    transition: none !important;
  }
  .hero-image:hover img,
  .about-image:hover img {
    transform: none !important;
  }
}


/* Responsive carousel sizing */
@media (max-width: 1024px) {
  .testimonial-viewport {
    padding: 10px 48px;
    scroll-padding-left: 48px;
    scroll-padding-right: 48px;
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 cards per view (tablet) */
  }
}

@media (max-width: 640px) {
  .testimonial-viewport {
    padding: 10px 16px;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
  }
  .testimonial-card {
    flex: 0 0 100%; /* 1 card per view (mobile) */
    max-width: none;
  }
}


    /* Responsive testimonial sizing (ensures full cards, no clipping) */
    @media (max-width: 1024px) {
      .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
    }
    @media (max-width: 640px) {
      .testimonial-viewport { padding: 10px 14px; scroll-padding-left: 14px; scroll-padding-right: 14px; }
      .testimonial-card { flex: 0 0 100%; }
    }



    /* CONTACT: SEND MESSAGE BUTTON + FORM CARD */
    .btn-send-message {
      margin-top: 10px;
      padding: 12px 18px;
      font-size: 16px;
      border-radius: 999px;
      box-shadow: 0 4px 18px rgba(46,125,107,0.25);
    }
    .btn-send-message .btn-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: rgba(255,255,255,0.18);
    }
    .contact-form-card {
      margin-top: 28px;
      padding: 22px;
      border-radius: 22px;
      background: var(--white);
      box-shadow: 0 16px 45px rgba(0,0,0,0.08);
    }
    .contact-form-card h3 {
      margin: 0 0 6px 0;
      color: var(--primary-dark);
      font-size: 26px;
    }
    .contact-form-subtext {
      margin: 0 0 14px 0;
      color: var(--text-light);
    }
    .contact-form {
      display: grid;
      gap: 12px;
    }
    .contact-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .contact-form .form-row {
      display: grid;
      gap: 6px;
    }
    .contact-form label {
      font-weight: 600;
      font-size: 14px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.18);
      font-size: 16px;
      background: rgba(255,255,255,0.98);
    }
    /* Honeypot field - layered hiding */
    .form-field-extra {
      position: absolute;
      left: -9999px;
      top: -9999px;
      opacity: 0;
      height: 0;
      width: 0;
      z-index: -1;
      pointer-events: none;
    }
    .btn-send-message-submit {
      width: fit-content;
      padding: 12px 22px;
      font-size: 16px;
      text-align: center;
    }
    .contact-form-note {
      margin: 4px 0 0 0;
      font-size: 13px;
      color: var(--text-light);
    }
    @media (max-width: 860px) {
      .contact-form-grid { grid-template-columns: 1fr; }
      .btn-send-message-submit { width: 100%; }
    }


/* Contact form toggle */
.contact-form-card {
  display: none;
}
.contact-form-card.is-open {
  display: block;
}
.contact-btn-inline {
  margin-top: 0.75rem;
}
.contact-form-card .contact-form-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
}
.contact-form-card .contact-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


/* Contact form submitted state */
.contact-thanks {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(46, 125, 107, 0.10);
  border: 1px solid rgba(46, 125, 107, 0.25);
}
.contact-form-card.is-submitted form .form-grid,
.contact-form-card.is-submitted form .form-row,
.contact-form-card.is-submitted form button[type="submit"] {
  display: none;
}
.contact-form-card.is-submitted .contact-thanks {
  display: block;
}

/* HAMBURGER MENU */
.hamburger-menu {
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger-line:nth-child(1) { top: 6px; }
.hamburger-line:nth-child(2) { top: 14px; }
.hamburger-line:nth-child(3) { top: 22px; }

.hamburger-menu.active .hamburger-line:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

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

.hamburger-menu.active .hamburger-line:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 100px 30px 40px;
}

.mobile-menu-overlay.active {
  right: 0;
}

.mobile-menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-overlay nav a {
  font-size: 18px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.3s;
}

.mobile-menu-overlay nav a:hover {
  color: var(--primary);
}

.mobile-menu-overlay .mobile-cta {
  margin-top: 20px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: background 0.3s;
}

.mobile-menu-overlay .mobile-cta:hover {
  background: var(--primary-dark);
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE - Show hamburger, hide desktop nav */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  header nav,
  header .header-cta {
    display: none;
  }
}

/* STICKY PHONE BUTTON (Mobile Only) */
.sticky-phone {
  display: none;
}

@media (max-width: 768px) {
  .sticky-phone {
    position: fixed;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    
    /* Fluid sizing: min 48px, scales with viewport, max 64px */
    width: clamp(48px, 14vw, 64px);
    height: clamp(48px, 14vw, 64px);
    
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 20px rgba(46, 125, 107, 0.4);
    
    /* Start hidden */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, background 0.2s;
    
    z-index: 1000;
    text-decoration: none;
    
    -webkit-tap-highlight-color: transparent;
  }

  .sticky-phone.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
  }

  .sticky-phone:hover,
  .sticky-phone:focus {
    background: var(--primary-dark);
  }

  .sticky-phone:active {
    transform: scale(0.95) translateY(0);
  }

  .sticky-phone svg {
    width: 45%;
    height: 45%;
    color: white;
  }

  .sticky-phone .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}


/* ========================================
   MULTI-PAGE ADDITIONS - v1.0
   ======================================== */

/* Static Testimonials Grid (Homepage) */
.testimonials-static-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonials-static-grid .testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.testimonials-static-grid .testimonial-card p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonials-static-grid .testimonial-author {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Button on dark background */
.btn-on-dark {
  border-color: white;
  color: white;
}

.btn-on-dark:hover {
  background: white;
  color: var(--primary);
}

/* Logo as link */
a.logo {
  text-decoration: none;
}

/* Responsive: Static testimonials */
@media (max-width: 768px) {
  .testimonials-static-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Header (for subpages) */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Us Card - Green */
.contact-us-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 700px;
  margin: 0 auto;
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-us-card h1 {
  font-size: 48px;
  margin-bottom: 12px;
  color: white;
}

.contact-us-card p {
  font-size: 18px;
  opacity: 0.9;
  color: white;
  max-width: none;
}

/* Hero Header - Common styles for all pages with hero images */
.hero-header {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

@media (max-width: 1200px) {
  .hero-header {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero-header {
    height: 450px;
    padding-top: 100px;
    margin-top: 90px;
    align-items: flex-start;
  }
  
  .hero-header h1 {
    font-size: 32px;
  }
  
  .hero-header p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-header {
    height: 400px;
    padding-top: 90px;
    margin-top: 90px;
    align-items: flex-start;
  }
  
  .hero-header h1 {
    font-size: 28px;
  }
}

/* Services Page Header - Background Image */
.services-page-header {
  background-image: url('/services/scissors-hero.webp');
  background-size: cover;
  background-position: center 15%;
  position: relative;
}

.services-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
}

.services-page-header .container {
  position: relative;
  z-index: 1;
}

.services-page-header h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.services-page-header p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Contact Page Header - Background Image */
.contact-page-header {
  background-image: url('/contact/front-desk-hero.webp');
  background-size: cover;
  background-position: center 80%;
  position: relative;
}

.contact-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
}

.contact-page-header .container {
  position: relative;
  z-index: 1;
}

.contact-page-header h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.contact-page-header p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Reviews Page Header - Background Image */
.reviews-page-header {
  background-image: url('/reviews/sdgb-sign-hero.webp');
  background-size: cover;
  background-position: center 30%;
  position: relative;
}

.reviews-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
}

.reviews-page-header .container {
  position: relative;
  z-index: 1;
}

.reviews-page-header h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.reviews-page-header p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Reviews Page Feature Image */
.reviews-image-section {
  padding: 50px 0;
  background: var(--warm-white);
}

.reviews-feature-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* About Page Header - Background Image */
.about-page-header {
  background-image: url('/about/smiling-dog-hero.webp');
  background-size: cover;
  background-position: center 20%;
  position: relative;
}

.about-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
}

.about-page-header .container {
  position: relative;
  z-index: 1;
}

.about-page-header h1 {
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-page-header p {
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Page Content Section */
.page-content {
  padding: 80px 0;
  background: white;
}

/* ========================================
   STAFF PAGE HERO
   ======================================== */
.staff-hero-wrapper {
  background-color: #3a4a3a;
  margin-top: calc(var(--fixed-header-height) + env(safe-area-inset-top, 0px));
}

.staff-hero {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  height: 700px;
  background-image: url('/staff/team-pic.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.staff-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.staff-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.staff-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.staff-hero p {
  font-size: 22px;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Staff Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.staff-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.staff-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.staff-card-content {
  padding: 24px;
}

.staff-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.staff-card .staff-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.staff-card p {
  color: var(--text-medium);
  font-size: 15px;
}

/* Placeholder for staff photos */
.staff-photo-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 64px;
}

/* Circular Staff Photos */
.staff-photo-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 30px 0;
  background: var(--cream);
}

.staff-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(46, 125, 107, 0.2);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

/* Martin - adjust crop position */
.staff-photo-martin {
  object-position: center 30%;
}

/* Contact Page - Inline Form */
.contact-form-inline {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
}

.contact-form-inline h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-form-inline .contact-form-subtext {
  color: var(--text-medium);
  margin-bottom: 24px;
}

/* Privacy Policy Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.privacy-content ul {
  color: var(--text-medium);
  margin-bottom: 16px;
  padding-left: 24px;
}

.privacy-content li {
  margin-bottom: 8px;
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Intro */
.services-intro {
  max-width: 800px;
  margin: 0 auto 35px;
  text-align: center;
}

.services-intro p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
}

/* Services Section Titles */
.services-section-title {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.services-section-subtitle {
  font-size: 16px;
  color: var(--text-medium);
  text-align: center;
  margin-bottom: 25px;
}

/* Services Detail Grid - Main Services */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-detail-card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.service-detail-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.service-detail-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.service-detail-content {
  padding: 18px;
}

.service-detail-content h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.service-detail-content > p {
  color: var(--text-medium);
  margin-bottom: 12px;
  line-height: 1.6;
}

.service-includes {
  list-style: none;
  margin-bottom: 12px;
}

.service-includes li {
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--text-medium);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-includes li:last-child {
  border-bottom: none;
}

.service-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
}

.service-price-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(46, 125, 107, 0.1);
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
}

/* À La Carte / Add-on Services Grid */
.services-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.addon-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.addon-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.addon-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.addon-card p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.addon-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* Service Images Row (between sections) */
.service-images-row {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  background: var(--cream);
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-images-row img {
  flex: 1;
  max-width: calc(33.333% - 14px);
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .service-images-row {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }
  .service-images-row img {
    max-width: 100%;
    width: 100%;
    height: 180px;
  }
}

/* Spa Services Section - Green Background */
.spa-services-section {
  background: var(--primary);
  padding: 50px 20px;
  margin: 0 -20px;
}

.spa-services-section .services-section-title {
  color: white;
}

.spa-services-section .services-section-subtitle {
  color: rgba(255,255,255,0.85);
}

.spa-services-section .spa-addon-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}

.spa-services-section .spa-addon-name {
  color: white;
}

.spa-services-section .spa-addon-price {
  color: white;
}

.spa-services-section .spa-addon-note {
  color: rgba(255,255,255,0.8);
}

/* Spa Services / Add-Ons Card Grid */
.spa-addons-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.spa-addon-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.spa-addon-card-content {
  display: flex;
  flex-direction: column;
}

.spa-addon-name {
  font-weight: 600;
  color: var(--text-dark);
}

.spa-addon-price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.spa-addon-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 3px;
}

@media (max-width: 600px) {
  .spa-addons-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Spa Day Package */
.spa-day-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 35px auto;
}

/* Centered Addon Card */
.centered-addon-card {
  display: flex;
  justify-content: center;
  margin: 25px 0 35px 0;
}

.centered-addon-card .addon-card {
  max-width: 400px;
}

/* Hugs & Belly Rubs special card */
.hugs-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

.hugs-card h3 {
  color: var(--text-dark);
}

.hugs-card p {
  color: var(--text-dark);
}

.hugs-card .addon-price {
  color: var(--text-dark);
  background: rgba(255,255,255,0.3);
}

.spa-day-card {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.spa-day-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}

.spa-day-card strong {
  color: var(--primary);
}

.spa-day-card .savings {
  color: var(--primary-light);
  font-weight: 600;
}

@media (max-width: 600px) {
  .spa-day-package-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Note Box */
.pricing-note-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note-box h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.pricing-note-box p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.95;
}

.pricing-note-box p:last-child {
  margin-bottom: 0;
}

.pricing-note-box strong {
  color: var(--accent-light);
}

/* Services Page Specific - why-us with more top padding */
.services-page + .why-us {
  padding-top: 100px;
}

/* Responsive - Services */
@media (max-width: 1024px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .services-addon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .spa-day-package-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .services-section-title {
    font-size: 26px;
  }
  
  .services-section-subtitle {
    margin-bottom: 20px;
    font-size: 15px;
  }
  
  .services-addon-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .service-detail-content {
    padding: 16px;
  }
  
  .service-detail-content h3 {
    font-size: 20px;
  }
  
  .service-detail-icon {
    font-size: 28px;
    padding: 16px 16px 0;
  }
  
  .spa-day-package-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .spa-addons-card-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .spa-addon-card {
    padding: 10px 12px;
  }
  
  .centered-addon-card {
    margin: 20px 0 30px 0;
  }
  
  .centered-addon-card .addon-card {
    max-width: 100%;
  }
  
  .pricing-note-box {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .services-section-title {
    font-size: 24px;
  }
  
  .service-detail-content {
    padding: 14px;
  }
  
  .service-detail-content h3 {
    font-size: 18px;
  }
  
  .addon-card {
    padding: 14px;
  }
  
  .addon-card h3 {
    font-size: 16px;
  }
  
  .addon-price {
    font-size: 18px;
  }
  
  .spa-addon-name {
    font-size: 14px;
  }
  
  .spa-addon-price {
    font-size: 14px;
  }
  
  .spa-day-card {
    padding: 14px;
  }
  
  .spa-day-card p {
    font-size: 15px;
  }
  
  .pricing-note-box {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .pricing-note-box h3 {
    font-size: 22px;
  }
  
  .pricing-note-box p {
    font-size: 14px;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-page {
  padding: 80px 0;
  background: white;
}

/* About Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(46, 125, 107, 0.25);
}

.about-story-image .image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: 0 20px 60px rgba(46, 125, 107, 0.25);
}

.about-story-content h2 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-story-content p {
  color: var(--text-medium);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* About Philosophy */
.about-philosophy {
  margin-bottom: 80px;
}

.philosophy-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.philosophy-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.philosophy-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.philosophy-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.philosophy-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* About Quote Block */
.about-quote-block {
  background: var(--cream);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin-bottom: 80px;
}

.about-quote-block blockquote {
  max-width: 700px;
  margin: 0 auto;
}

.about-quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-quote-block cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px;
  background: var(--cream);
  border-radius: 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 500;
}

/* Team CTA Section */
.team-cta {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
  color: white;
}

.team-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.team-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.team-cta .btn-primary {
  background: white;
  color: var(--primary);
}

.team-cta .btn-primary:hover {
  background: var(--cream);
}

/* Responsive - About */
@media (max-width: 1024px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-story-image {
    order: -1;
  }
  
  .philosophy-images {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story-content h2 {
    font-size: 32px;
  }
  
  .about-quote-block {
    padding: 40px 24px;
  }
  
  .about-quote-block p {
    font-size: 22px;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .stat-number {
    font-size: 32px;
  }
}

/* ========================================
   STAFF PAGE STYLES
   ======================================== */

.staff-page {
  padding: 80px 0;
  background: white;
}

.staff-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.staff-intro p {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
}

/* Staff Grid - 2 columns (2x2 layout) */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.staff-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.staff-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.staff-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 64px;
}

/* Circular Staff Photos - Tablet */
.staff-photo-wrapper {
  padding: 25px 25px 0;
}

.staff-photo {
  width: 250px;
  height: 250px;
  aspect-ratio: 1 / 1;
  min-width: 250px;
  min-height: 250px;
}

.staff-card-content {
  padding: 28px 24px;
}

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

.staff-card .staff-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}

.staff-card p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.6;
}

/* Staff Why Section */
.staff-why-section {
  background: var(--cream);
  border-radius: 24px;
  padding: 60px;
}

.staff-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.staff-why-card {
  text-align: center;
  padding: 20px;
}

.staff-why-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.staff-why-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.staff-why-card p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive - Staff */
@media (max-width: 1200px) {
  .staff-hero {
    height: 600px;
  }
}

@media (max-width: 1024px) {
  .staff-grid {
    max-width: 100%;
  }
  
  .staff-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .staff-why-section {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .staff-hero {
    height: 450px;
    padding-top: 80px;
    background-position: center 15%;
  }
  
  .staff-hero h1 {
    font-size: 36px;
  }
  
  .staff-hero p {
    font-size: 18px;
  }
  
  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .staff-photo-placeholder {
    height: 260px;
  }
  
  /* Circular Staff Photos - Mobile */
  .staff-photo-wrapper {
    padding: 25px 25px 0;
  }
  
  .staff-photo {
    width: 220px;
    height: 220px;
    min-width: 220px;
    min-height: 220px;
    aspect-ratio: 1 / 1;
    object-position: center 25%;
  }
}

@media (max-width: 480px) {
  .staff-photo {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    aspect-ratio: 1 / 1;
    object-position: center 30%;
  }
  
  .staff-hero {
    height: 400px;
    padding-top: 60px;
    background-position: center 20%;
  }
  
  .staff-hero h1 {
    font-size: 28px;
  }
  
  .staff-hero p {
    font-size: 16px;
  }
}

/* ========================================
   REVIEWS PAGE STYLES
   ======================================== */

/* Reviews Summary */
.reviews-summary {
  padding: 60px 0;
  background: white;
}

.reviews-summary-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-stars {
  display: flex;
  gap: 4px;
}

.reviews-stars .star {
  font-size: 32px;
  color: var(--star-gold);
}

.reviews-stars .star.partial {
  background: linear-gradient(90deg, var(--star-gold) 80%, rgba(255,255,255,0.3) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
}

.reviews-meta {
  flex: 1;
}

.reviews-count {
  font-size: 18px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.reviews-badge {
  font-size: 16px;
  opacity: 0.9;
}

.btn-google-reviews {
  background: white;
  color: var(--primary-dark);
  white-space: nowrap;
}

.btn-google-reviews:hover {
  background: var(--cream);
}

.btn-google-reviews svg {
  flex-shrink: 0;
}

/* Featured Reviews */
.reviews-featured {
  padding: 80px 0;
  background: var(--primary);
  color: white;
}

.reviews-featured .section-header h2 {
  color: white;
}

.reviews-featured .section-header p {
  color: rgba(255,255,255,0.8);
}

/* Leave Review CTA */
.reviews-leave-cta {
  padding: 60px 0;
  background: white;
}

.reviews-leave-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.reviews-leave-content h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.reviews-leave-content p {
  color: var(--text-medium);
  font-size: 17px;
}

.reviews-leave-card .btn-primary {
  white-space: nowrap;
}

/* Trust Stats on Reviews Page */
.reviews-trust-stats {
  padding: 60px 0;
  background: var(--primary);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-stat {
  color: white;
}

.trust-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 15px;
  opacity: 0.9;
}

/* Responsive - Reviews */
@media (max-width: 1024px) {
  .reviews-summary-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .reviews-rating {
    flex-direction: column;
    gap: 12px;
  }
  
  .reviews-leave-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-score {
    font-size: 48px;
  }
  
  .trust-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .trust-stat-number {
    font-size: 36px;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page-main {
  padding: 80px 0;
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info Card */
.contact-page-info h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-info-details p {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-info-details a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-details a:hover {
  text-decoration: underline;
}

.contact-subtext {
  color: var(--text-light);
  font-size: 14px;
}

.contact-directions-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 20px;
}

.hours-day {
  color: var(--text-dark);
  font-weight: 500;
}

.hours-time {
  color: var(--text-medium);
}

.contact-social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 8px;
  transition: background 0.2s;
}

.contact-social-link:hover {
  background: rgba(46, 125, 107, 0.1);
}

.contact-social-link svg {
  flex-shrink: 0;
}

/* Contact Form Card */
.contact-page-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-page-form-card h3 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-page-form-card .contact-form-subtext {
  color: var(--text-medium);
  margin-bottom: 28px;
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page-form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-page-form label .required {
  color: var(--accent);
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--warm-white);
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 107, 0.1);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: var(--text-light);
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  position: relative;
}

.btn-submit .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.btn-submit .btn-loading {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn-submit .btn-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.is-loading .btn-text {
  display: none;
}

.btn-submit.is-loading .btn-loading {
  display: inline-flex;
}

.btn-submit.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

/* Thank You State */
.contact-thanks {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact-thanks-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.contact-thanks h4 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-thanks p {
  color: var(--text-medium);
}

.contact-page-form-card.is-submitted .contact-thanks {
  display: block;
}

.contact-page-form-card.is-submitted .contact-page-form {
  display: none;
}

/* Map Section */
.contact-map-section {
  padding: 80px 0 0;
  background: white;
}

.contact-map-section .container {
  text-align: center;
  margin-bottom: 40px;
}

.contact-map-section h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-map-section p {
  color: var(--text-medium);
  font-size: 17px;
}

.contact-map-wrapper {
  width: 100%;
  height: 450px;
  background: var(--cream);
  margin-bottom: 0;
  overflow: hidden;
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Service Area Section */
.contact-service-area {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.contact-service-area h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-service-area > .container > p {
  color: var(--text-medium);
  font-size: 17px;
  margin-bottom: 40px;
}

.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.service-area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-area-pin {
  font-size: 18px;
}

/* Responsive - Contact Page */
@media (max-width: 1024px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-page-info {
    order: 2;
  }
  
  .contact-page-form-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-us-card {
    padding: 40px 30px;
  }
  
  .contact-us-card h1 {
    font-size: 36px;
  }
  
  .contact-page-main {
    padding: 60px 0;
  }
  
  .contact-page-form-card {
    padding: 30px 24px;
  }
  
  .contact-info-card {
    padding: 28px 24px;
  }
  
  .form-row-group {
    grid-template-columns: 1fr;
  }
  
  .contact-map-wrapper {
    height: 350px;
  }
  
  .contact-service-area {
    padding-top: 60px;
  }
  
  .contact-social-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-social-link {
    justify-content: center;
  }
}

/* ========================================
   PRIVACY PAGE STYLES
   ======================================== */

.privacy-content {
  padding: 80px 0;
  background: white;
}

.privacy-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-updated {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.privacy-content h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.privacy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-content h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.privacy-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.privacy-content li {
  color: var(--text-medium);
  margin-bottom: 8px;
  line-height: 1.7;
}

.privacy-content a {
  color: var(--primary);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

.privacy-contact {
  background: var(--cream);
  padding: 24px 30px;
  border-radius: 12px;
  margin-top: 20px;
}

.privacy-contact p {
  margin-bottom: 8px;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .privacy-content {
    padding: 60px 0;
  }
  
  .privacy-content h2 {
    font-size: 24px;
  }
}

/* CONTACT LABELS (replacing H4s) */
.contact-label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FOOTER TITLES (replacing H4s) */
.footer-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
  color: white;
}

/* CONTACT THANKS TITLE (replacing H4) */
.contact-thanks-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

/* FOOTER LINK COLORS */
.footer-bottom .copyright a {
  color: var(--link-footer);
  transition: color 0.3s;
}

.footer-bottom .copyright a:hover {
  color: var(--link-footer-hover);
}

/* MOBILE LOGO SIZING */
@media (max-width: 768px) {
  .logo {
    font-size: 20px;
  }
  
  .mobile-menu-overlay {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }
}
