/* =========================================
   STREETS DETAILS LTD  -  styles.css
   Light theme · Kanit + Barlow · Grey scale
   ========================================= */

   @view-transition {
      navigation: auto;
   }

/* --- CUSTOM PROPERTIES --- */
:root {
  --black:       #0a0a0a;
  --grey-900:    #1a1a1a;
  --grey-800:    #2c2c2c;
  --grey-700:    #444444;
  --grey-500:    #888888;
  --grey-300:    #cccccc;
  --grey-200:    #e2e2e2;
  --grey-100:    #f4f4f4;
  --white:       #ffffff;

  --hero-gradient: linear-gradient(to right, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.3) 100%);

  --heading-font: 'Kanit', sans-serif;
  --body-font:    'Barlow', sans-serif;

  --header-h:    72px;
  --max-w:       1200px;
  --radius:      4px;

  --transition:  0.25s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--header-h) + 2rem); }

body {
  font-family: var(--body-font);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

p { font-size: 1rem; color: var(--grey-700); line-height: 1.75; }

/* --- UTILITIES --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-header h2 { margin-bottom: 1rem; color: var(--black); }
.section-header p { font-size: 1.05rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: var(--grey-300); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--heading-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-primary:hover { background: var(--grey-800); border-color: var(--grey-800); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--grey-300);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.logo { height: 52px; width: auto;
  transform: scale(1.5);
  transform-origin: top left;
  transition: transform 0.5s;
  transition-delay: 0.1s;
  border-radius: 100%;

}

.big-logo {
  transform: scale(3);
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-700);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: black;;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../media/images/hero.webp') center center / cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
  opacity: 0;
  animation: fade-hero-bg 1s forwards ease;
}

@keyframes fade-hero-bg {
  0% {opacity: 0;}
  100% {opacity: 1};
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  max-width: 560px;
  color: var(--grey-100);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.hero-cta .btn-primary:hover {
  background: var(--grey-200);
  border-color: var(--grey-200);
}

.hero-cta .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- INTRO STRIP --- */
.intro-strip {
  background: var(--black);
  padding: 1.25rem 0;
  text-align: center;
}

.intro-strip p {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--grey-300);
  text-transform: uppercase;
}

.intro-strip strong {
  color: var(--white);
  font-weight: 600;
}

/* --- WHY US --- */
.why-us { background: var(--white); }

/* --- WHY US INTRO --- */
.why-us-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.why-us-text h2 {
  color: var(--black);
  margin-bottom: 1.25rem;
}

.why-us-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2rem 1.5rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  border-color: var(--grey-400, #aaa);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--grey-800);
  margin-bottom: 1.25rem;
}

.pillar-icon svg { width: 100%; height: 100%; }

.pillar h3 { color: var(--black); margin-bottom: 0.75rem; font-size: 1.05rem; }
.pillar p { font-size: 0.95rem; }

/* --- SERVICE CARDS --- */
.services-overview { background: var(--grey-100); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  display: block;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card-text {
  padding: 2rem;
}

.service-card:hover {
  border-color: var(--grey-800);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.service-card h3 {
  color: var(--black);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-right: 2rem;
}

.service-card p { font-size: 0.95rem; }

.card-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: var(--grey-500);
  transition: transform var(--transition), color var(--transition);
}

.service-card:hover .card-arrow {
  transform: translateX(4px);
  color: var(--black);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.services-cta { text-align: center; }

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--grey-900);
}

.testimonials .section-header { margin-bottom: 3rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial {
  padding: 2rem;
  border: 1px solid var(--grey-700);
  border-radius: var(--radius);
}

.testimonial--featured {
  grid-column: span 2;
  background: var(--grey-800);
  border-color: var(--grey-600, #555);
}

.testimonial p {
  font-size: 1rem;
  color: var(--grey-200);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial cite {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-style: normal;
}

.reviews-cta { text-align: center; }

/* --- SERVICE AREA / MAP --- */
.service-area { background: var(--white); }

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.area-text h2 { color: var(--black); margin-bottom: 1.25rem; }
.area-text p { margin-bottom: 2rem; }

#map {
  height: 400px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-200);
  background: var(--grey-100);
}

/* --- CTA BANNER --- */
.cta-banner {
  background-image: 
    linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%),
    url('../media/images/cta-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: var(--grey-300, #aaa); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: var(--grey-200);
  border-color: var(--grey-200);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--grey-900);
  padding: 5rem 0 0;
  color: var(--grey-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-800);
}

.footer-logo { height: 120px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; color: var(--grey-500); max-width: 260px; }

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact li,
.footer-social a {
  display: block;
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-contact a {
  font-size: 1.3rem;
  color: var(--grey-300);
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover { color: var(--white); }

.social-links { display: flex; flex-direction: column; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p { font-size: 0.85rem; color: var(--grey-300); }
.footer-bottom a { color: var(--grey-100); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1100px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }

  /* Nav */
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 2rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey-200);
    font-size: 1.1rem;
  }

  /* Hero */
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Pillars */
  .pillars { grid-template-columns: 1fr; gap: 1rem; }

  /* Service cards */
  .service-cards { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial--featured { grid-column: span 1; }

  /* Map area */
  .area-layout { grid-template-columns: 1fr; gap: 2rem; }
  #map { height: 280px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .why-us-intro { grid-template-columns: 1fr; gap: 2rem; }

  .big-logo {
  transform: scale(1.9);
  }
}

/* --- STARS --- */
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: var(--grey-300);
}

/* --- PAGE BANNER --- */
.page-banner {
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 7rem 0 4rem;
  margin-top: var(--header-h);
}

.banner-eyebrow {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 0.75rem;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.banner-sub {
  color: var(--grey-100);
  max-width: 560px;
  font-size: 1.05rem;
}

.banner-sub a {
  color: var(--grey-200);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- VEHICLE SIZES --- */
.vehicle-sizes {
  background: var(--grey-100);
  padding: 3rem 0;
}

.sizes-title {
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
}

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.size-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.size-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-card p {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.5;
}

.size-card img {
  display: block;
  width: 30%;
  height: auto;
  margin-bottom: 1rem;
  filter: opacity(0.7);
}



/* --- SERVICES NOTICE --- */
.services-notice {
  background: var(--grey-100);
  border-left: 3px solid goldenrod;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.services-notice p {
  font-size: 0.95rem;
  color: var(--grey-700);
}

.services-notice strong { color: var(--black); }

/* --- ACCORDIONS --- */
.accordion {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: var(--white);
  padding: 1.75rem 2rem;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: var(--grey-100); }
.accordion-trigger[aria-expanded="true"] { background: var(--grey-100); }

.acc-trigger-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.acc-tag {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 0.4rem;
}

.acc-label h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--black);
  font-weight: 700;
}

.acc-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.acc-from {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-800);
  white-space: nowrap;
}

.acc-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.acc-icon::before,
.acc-icon::after {
  content: '';
  position: absolute;
  background: var(--grey-800);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.acc-icon::before {
  width: 2px; height: 14px;
  top: 5px; left: 11px;
}

.acc-icon::after {
  width: 14px; height: 2px;
  top: 11px; left: 5px;
}

.accordion-trigger[aria-expanded="true"] .acc-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

/* Accordion panel */
.accordion-panel { border-top: 1px solid var(--grey-200); }
.accordion-panel[hidden] { display: none; }

.acc-content {
  padding: 2rem;
}

.acc-desc {
  font-size: 1rem;
  color: var(--grey-700);
  margin-bottom: 2rem;
  max-width: 680px;
}

.acc-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.acc-includes h3,
.acc-pricing h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1rem;
}

.acc-includes h3.mt { margin-top: 1.75rem; }

.acc-includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acc-includes li {
  font-size: 0.95rem;
  color: var(--grey-700);
  padding-left: 1.25rem;
  position: relative;
}

.acc-includes li::before {
  content: ' - ';
  position: absolute;
  left: 0;
  color: var(--grey-400, #aaa);
}

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.75rem;
}

.price-table th,
.price-table td {
  padding: 0.65rem 0.75rem;
  text-align: center;
  font-family: var(--heading-font);
  border: 1px solid var(--grey-200);
}

.price-table thead th {
  background: var(--grey-100);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.price-table tbody td {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
}

.price-table--simple th {
  text-align: left;
  background: var(--grey-100);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table--simple td {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.price-note {
  font-size: 0.85rem;
  color: var(--grey-500);
  font-style: italic;
  margin-top: 0.5rem;
}

/* --- ADD-ONS --- */
.addons { background: var(--grey-100); }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.addon-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.addon-item h3 {
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 600;
}

.addon-item span {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-500);
}

/* --- RESPONSIVE: SERVICES --- */
@media (max-width: 1100px) {
  .addons-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .acc-trigger-inner { flex-wrap: wrap; gap: 0.5rem; }
  .acc-meta { width: 100%; justify-content: space-between; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sizes-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .accordion-trigger { padding: 1.25rem; }
  .acc-content { padding: 1.25rem; }
}

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--grey-200);
  opacity: 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* --- REVIEW SUMMARY --- */
.review-summary {
  background: var(--grey-100);
  padding: 3rem 0;
  border-bottom: 1px solid var(--grey-200);
}

.summary-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.score-number {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.summary-score .stars svg {
  width: 22px;
  height: 22px;
  color: var(--grey-800);
}

.score-label {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.summary-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* --- REVIEWS GRID --- */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.review-card:hover {
  border-color: var(--grey-400, #aaa);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.review-card--featured {
  grid-column: span 3;
  background: var(--grey-100);
}

.review-card p {
  font-size: 0.975rem;
  color: var(--grey-700);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
}

.review-card cite {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-style: normal;
}

.review-card .stars svg {
  width: 16px;
  height: 16px;
  color: var(--grey-700);
}

/* --- RESPONSIVE: REVIEWS --- */
@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .summary-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .summary-text p { margin-left: auto; margin-right: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--featured { grid-column: span 1; }
}

/* --- CONTACT --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap h2 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

.contact-form-wrap > p {
  margin-bottom: 2.5rem;
}

/* Form elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.form-group label span { color: var(--grey-500); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body-font);
  font-size: 0.975rem;
  color: var(--grey-900);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--grey-800);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-400, #aaa);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-required-note {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-top: -0.25rem;
}

.btn-submit { align-self: flex-start; }

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.info-block h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 0.4rem;
}

.info-block p {
  font-size: 0.975rem;
  color: var(--grey-700);
  line-height: 1.6;
}

.info-link {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  transition: color var(--transition);
}

.info-link:hover { color: var(--grey-600, #666); }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-social a {
  font-size: 0.975rem;
  color: var(--grey-700);
  transition: color var(--transition);
}

.contact-social a:hover { color: var(--black); }

.info-map #map {
  height: 280px;
  margin-top: 0.5rem;
  z-index: 1;
}

.leaflet-tile-pane {
  filter: grayscale(0)
}

.leaflet-attribution-flag {
    width: 0 !important; /* Sorry, some clients don't want their site to be politicized
 */
}

.leaflet-marker-shadow {
    background-color: transparent;
}


/* --- RESPONSIVE: CONTACT --- */
@media (max-width: 1100px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info { position: static; }
  .info-map #map { height: 280px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.975rem;
  color: var(--grey-700);
  transition: color var(--transition);
}

.contact-social a:hover { color: var(--black); }

.contact-social svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- STATUS PAGES (success / failure) --- */
.status-page {
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 6rem 0;
  margin-top: var(--header-h);
}

.status-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem;
}

.status-icon svg { width: 100%; height: 100%; }
.status-icon--success { color: var(--grey-800); }
.status-icon--failure { color: var(--grey-500); }

.status-inner h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 1rem;
}

.status-inner > p {
  font-size: 1.05rem;
  color: var(--grey-700);
  margin-bottom: 2rem;
}

.status-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.status-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- PRIVACY POLICY --- */
.privacy-content {
  max-width: 740px;
}

.privacy-block {
  margin-bottom: 3rem;
}

.privacy-block h2 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.privacy-block p {
  margin-bottom: 0.75rem;
}

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

.privacy-block ul {
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.privacy-block li {
  font-size: 0.975rem;
  color: var(--grey-700);
  padding-left: 1.25rem;
  position: relative;
}

.privacy-block li::before {
  content: ' - ';
  position: absolute;
  left: 0;
  color: var(--grey-400, #aaa);
}

.privacy-block a {
  color: var(--grey-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.privacy-block a:hover { color: var(--black); }

/*=============== SCROLL ANIMATIONS ===============*/
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-left {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-right {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-down {
    from { transform: translateY(-40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { scale: 1; }
    50% { scale: 1.1; }
    100% { scale: 1; }
}

@media (prefers-reduced-motion: no-preference) {

    /* FADE IN --------------------------------- */
    .fade-in { opacity: 0; }
    .is-cms .fade-in { opacity: 1; }
    .fade-in-animation { animation: fade-in 1s ease forwards; }
    .is-cms .fade-in-animation { animation: none; }

    /* SLIDE LEFT ------------------------------ */
    .slide-left { opacity: 0; }
    .is-cms .slide-left { opacity: 1; }
    .slide-left-animation { animation: slide-left 1s ease forwards; }
    .is-cms .slide-left-animation { animation: none; }

    /* SLIDE RIGHT ----------------------------- */
    .slide-right { opacity: 0; }
    .is-cms .slide-right { opacity: 1; }
    .slide-right-animation { animation: slide-right 1s ease forwards; }
    .is-cms .slide-right-animation { animation: none; }

    /* SLIDE DOWN ------------------------------ */
    .slide-down { opacity: 0; }
    .is-cms .slide-down { opacity: 1; }
    .slide-down-animation { animation: slide-down 1s ease forwards; }
    .is-cms .slide-down-animation { animation: none; }

    /* SLIDE UP -------------------------------- */
    .slide-up { opacity: 0; }
    .is-cms .slide-up { opacity: 1; }
    .slide-up-animation { animation: slide-up 1s ease forwards; }
    .is-cms .slide-up-animation { animation: none; }

    /* PULSE ----------------------------------- */
    .pulse-animation { animation: pulse 0.7s ease forwards; }
    .is-cms .pulse-animation { animation: none; }

    /* ANIMATION DELAYS ------------------------ */
    .delay-200ms  { animation-delay: 200ms;  animation-fill-mode: both; }
    .delay-300ms  { animation-delay: 300ms;  animation-fill-mode: both; }
    .delay-400ms  { animation-delay: 400ms;  animation-fill-mode: both; }
    .delay-500ms  { animation-delay: 500ms;  animation-fill-mode: both; }
    .delay-600ms  { animation-delay: 600ms;  animation-fill-mode: both; }
    .delay-700ms  { animation-delay: 700ms;  animation-fill-mode: both; }
    .delay-800ms  { animation-delay: 800ms;  animation-fill-mode: both; }
    .delay-900ms  { animation-delay: 900ms;  animation-fill-mode: both; }
    .delay-1000ms { animation-delay: 1000ms; animation-fill-mode: both; }
}