/* ==========================================================================
   Enliven Planters — New Jersey landing page
   Brand reference: enlivenplanters.com (colors, type, button style)
   ========================================================================== */

:root {
  --color-green: #A2BC35;
  --color-green-dark: #869C2B;
  --color-green-deep: #5E8403;
  --color-ink: #1E1E1E;
  --color-body: #36363D;
  --color-orange: #FFA500;
  --color-orange-dark: #E69500;
  --color-cream: #FBFBF7;
  --color-line: #E7E7DE;
  --header-height: 76px;

  --font-headline: "Open Sans Condensed", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-script: "Homemade Apple", cursive;

  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-body);
  background: #fff;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--color-ink);
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

section {
  scroll-margin-top: var(--header-height);
}

/* "Eyebrow" label style — matches brand's pre-heading treatment: a cursive
   script accent font, colored green. */
.eyebrow {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-green);
  margin-bottom: 0.4em;
}

/* Buttons — matches brand exactly: squared corners, tight padding, generous
   line-height (not padding) for height, 0.5s transition. */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.5s;
}

.btn-primary {
  background-color: var(--color-orange);
  color: #fff;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}

.btn-secondary:hover {
  background-color: var(--color-ink);
  color: #fff;
}

.btn-large {
  font-size: 14px;
  line-height: 29px;
  padding: 8px 28px;
}

.btn-small {
  font-size: 13px;
  line-height: 29px;
  padding: 7px 16px;
}

/* ---------------------------------- Header ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 54px;
  width: 140px;
  flex-shrink: 0;
}

.logo-fallback {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-green);
  letter-spacing: 0.5px;
}

.logo-fallback-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-body);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.site-nav a {
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  text-decoration: none;
  color: var(--color-body);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-green-dark);
}

.header-cta {
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 40px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-body);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--color-line);
  padding: 4px 24px 12px;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-body);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Higher specificity than ".mobile-nav a" so the .btn treatment (orange
   fill, white text, tight padding) wins instead of the plain nav-link style. */
.mobile-nav a.mobile-nav-cta {
  display: block;
  text-align: center;
  color: #fff;
  padding: 8px 28px;
  margin-top: 14px;
  border-bottom: none;
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 96px) 64px clamp(32px, 9vw, 144px);
}

.hero-text h1 {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 0.35em;
}

.hero-text h1 .accent {
  color: var(--color-green);
}

.hero-sub {
  font-size: 17px;
  color: var(--color-body);
  max-width: 460px;
  margin: 0 0 1.6em;
}

.hero-text .btn-large {
  align-self: flex-start;
}

/* Full-bleed image column — no padding, border, or radius, flush to the
   viewport edge, matching enlivenplanters.com's hero treatment. */
.hero-image {
  position: relative;
  height: clamp(480px, 82vh, 760px);
  overflow: hidden;
}

/* Native scroll-snap paging — the browser owns the touch/momentum physics
   (real per-frame finger tracking, velocity-based deceleration, edge
   rubber-banding) instead of a hand-rolled JS approximation of them. Same
   mechanism already used by .review-cards and .photo-thumbs. */
.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-track::-webkit-scrollbar {
  display: none;
}

.hero-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* ---------------------------------- Social proof ---------------------------------- */

.social-proof {
  background: var(--color-cream);
  padding: 40px 24px;
}

.social-proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.google-g-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.reviews-title {
  font-size: 28px;
  margin: 0;
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 48px;
  padding: 10px 22px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.google-rating-link:hover {
  border-color: var(--color-green);
  box-shadow: 0 2px 8px rgba(30, 30, 30, 0.08);
}

.single-star {
  color: var(--color-orange);
  font-size: 20px;
  line-height: 1;
}

.rating-bold {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-ink);
}

.rating-paren {
  font-size: 15px;
  color: #7a7a72;
  font-weight: 600;
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 3px;
  color: #DDD8C8;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-orange);
}

.stars-fill::before {
  content: "\2605\2605\2605\2605\2605";
}

.stars-small {
  font-size: 16px;
  letter-spacing: 2px;
}

/* Peek carousel: 3 cards fully visible + a partial 4th to hint there's more.
   Arrows sit in the reserved side padding so they never overlap card content. */
.reviews-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px;
}

.review-prev {
  left: 0;
}

.review-next {
  right: 0;
}

.review-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px 8px;
  text-align: left;
}

.review-cards::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  padding: 20px;
}

.review-quote {
  font-size: 14px;
  color: var(--color-body);
  margin: 10px 0 12px;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  margin: 0;
}

/* ---------------------------------- Install story video (mobile only) ---------------------------------- */

.story-video {
  display: none;
}

.story-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-ink);
  pointer-events: none;
}

/* ---------------------------------- Consultation / Cal.com ---------------------------------- */

.consultation {
  padding: 48px 24px 32px;
  background: #fff;
  text-align: center;
}

.consultation-inner {
  max-width: 780px;
  margin: 0 auto;
}

.consultation h2 {
  font-size: 48px;
  margin-bottom: 0.4em;
}

.consultation-sub {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 2.5em;
}

/* Cal's own widget already renders its own bordered, rounded card — this
   wrapper is intentionally unstyled so it doesn't add a second outline, and
   has no fixed height so it sizes naturally to Cal's actual content instead
   of leaving a whitespace gap when the widget is shorter than a hard-coded
   height. */
.cal-embed-container {
}

/* ---------------------------------- How It Works ---------------------------------- */

.how-it-works {
  background: var(--color-cream);
  padding: 32px 24px 48px;
}

.how-it-works-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.how-it-works h2 {
  font-size: 48px;
  margin-bottom: 1em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-green);
  color: var(--color-green-deep);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 28px;
  color: var(--color-green);
  margin-bottom: 0.5em;
}

.step p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-body);
}

/* ---------------------------------- CTA banner ---------------------------------- */

.cta-banner {
  text-align: center;
  padding: 24px 24px 32px;
}

/* ---------------------------------- Pricing ---------------------------------- */

.pricing {
  padding: 48px 24px;
  text-align: center;
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing h2 {
  font-size: 48px;
}

.pricing-intro {
  max-width: 620px;
  margin: 0 auto 2.5em;
  font-size: 15px;
  color: #7a7a72;
}

.pricing-table-wrap {
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  overflow: hidden;
}

.pricing-caption {
  max-width: 560px;
  margin: 1.5em auto 0;
  font-size: 14px;
  color: #7a7a72;
}

/* Mobile only — the transition into the full-bleed gallery photo felt
   abrupt without a closing action here; desktop's existing rhythm
   (pricing table -> caption -> gallery) stays untouched. */
.pricing-cta {
  display: none;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  table-layout: fixed;
}

/* Circular and Square hold equal width so the two size columns read as a
   matched pair; Price takes the remainder. */
.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1),
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 35%;
}

.pricing-table th {
  background: var(--color-green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  font-weight: 700;
}

.pricing-table td {
  padding: 14px 24px;
  border-top: 1px solid var(--color-line);
  font-size: 16px;
}

.pricing-table tr:nth-child(even) td {
  background: var(--color-cream);
}

.price-cell {
  font-weight: 700;
  color: var(--color-green-dark);
}

/* ---------------------------------- Gallery ---------------------------------- */

.gallery-section {
  background: var(--color-cream);
}

.gallery-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 48px;
}

.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.gallery-split > .gallery-inner {
  grid-column: 1 / -1;
}

.gallery-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 96px) 64px clamp(32px, 9vw, 144px);
}

.gallery-title {
  text-align: center;
  margin-bottom: 28px;
}

.gallery-title .eyebrow {
  margin-bottom: -6px;
}

.gallery-section h2 {
  font-size: 48px;
  margin-bottom: 0;
}

.gallery-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.season-blurb {
  margin-bottom: 20px;
}

.season-period {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.season-blurb p {
  font-size: 16px;
  color: var(--color-body);
  max-width: 440px;
  margin: 0;
}

.toggle-btn {
  border: 1px solid var(--color-line);
  background: transparent;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--color-body);
}

.toggle-btn.is-active {
  border-color: var(--color-green);
  background: var(--color-green);
  color: #fff;
}

/* Hero-style treatment: photos fill the frame edge-to-edge (object-fit:cover)
   instead of floating uncropped over a blurred backdrop. Cleaner and more
   commanding, at the cost of cropping some of each photo — the aspect ratio
   below is biased taller than the hero's to keep more of each portrait shot
   in frame. Outlier photos that crop badly can get a per-image
   object-position override rather than a full re-crop/re-export. */
.photo-carousel-stage {
  position: relative;
  height: clamp(480px, 82vh, 760px);
  overflow: hidden;
  background: var(--color-line);
}

/* Native scroll-snap paging — see .hero-track for why this replaced a
   hand-rolled JS drag-tracking approximation. */
.photo-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.photo-track::-webkit-scrollbar {
  display: none;
}

.photo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-body);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.carousel-arrow:hover {
  background: #fff;
  color: var(--color-green-dark);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.photo-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  max-width: 1140px;
  margin: 20px auto 0;
  padding-bottom: 6px;
}

.photo-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 6px;
  background-color: var(--color-cream);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  box-shadow: inset 0 0 0 2px transparent;
  transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.photo-thumb:hover {
  opacity: 0.85;
}

.photo-thumb.is-active {
  opacity: 1;
  box-shadow: inset 0 0 0 2px var(--color-green);
}

/* ---------------------------------- FAQ ---------------------------------- */

.faq {
  padding: 48px 24px 24px;
}

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

.faq h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 1em;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group h3 {
  font-size: 20px;
  color: var(--color-green-dark);
  margin-bottom: 0.8em;
}

.faq-group details {
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}

.faq-group summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-ink);
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  font-size: 20px;
  color: var(--color-green-dark);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-group details[open] summary::after {
  transform: rotate(45deg);
}

.faq-group details p {
  margin: 12px 0 0;
  font-size: 15px;
  color: #8a8a80;
  font-style: italic;
}

/* ---------------------------------- Footer ---------------------------------- */

.site-footer {
  background: var(--color-body);
  padding: 45px 16px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  font-size: 14px;
  color: #fff;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .slash {
  color: #A8BA4E;
  margin: 0 10px;
}

.footer-social {
  display: inline-flex;
  gap: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #A8BA4E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

.social-link--text {
  font-family: var(--font-body);
  font-weight: 700;
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    height: 340px;
  }

  .hero-text {
    padding: 40px 20px;
  }

  .pricing-cta {
    display: inline-block;
    margin-top: 24px;
  }

  .story-video {
    display: block;
  }


  .gallery-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding-top: 32px;
  }

  /* The desktop rule spans .gallery-inner across both columns; with only
     one column at this width that span still measures against the
     unconstrained thumbnail filmstrip instead of the actual track. Auto
     left/right margins also make a grid item size to its own content
     instead of stretching to the track (a real, if obscure, spec
     behavior) — the thumbnail row's un-wrapped content width was winning,
     overflowing the page horizontally. Reset the margin so it stretches. */
  .gallery-split > .gallery-inner {
    grid-column: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* .gallery-text exists only to center its children as a group next to the
     tall desktop photo column — at this width there's no column to center
     against, and the title/photo/toggle/thumbs/caption need to interleave
     in a different order than they're written in the markup. display:contents
     drops the wrapper's own box so its children become direct items of
     .gallery-split, letting each one take an independent `order`. */
  .gallery-text {
    display: contents;
  }

  /* Grid items default to min-width:auto, so a flex-wrap row's own
     unwrapped min-content size (the toggle pills) can force the single
     1fr column wider than the viewport ("grid blowout") even though
     flex-wrap would happily wrap it given the actual available space. */
  .gallery-split > * {
    min-width: 0;
  }

  .gallery-title,
  .gallery-toggle,
  .season-blurb {
    padding: 0 20px;
    min-width: 0;
  }

  .gallery-title {
    order: 1;
  }

  .photo-carousel-stage {
    order: 2;
    height: 380px;
  }

  .gallery-toggle {
    order: 3;
    justify-content: center;
    margin-bottom: 0;
  }

  /* .gallery-inner's own 24px/48px padding was designed for its desktop
     role (full-width block below the split) and stacked on top of the
     grid's own 20px gap here, making the toggle-to-thumbs and
     thumbs-to-caption gaps much larger than everything else. */
  .gallery-split > .gallery-inner {
    order: 4;
    padding: 0;
  }

  .season-blurb {
    order: 5;
    margin-bottom: 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo-link {
    grid-column: 2;
    justify-self: center;
  }

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

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .reviews-carousel {
    padding: 0 48px;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .social-proof {
    padding: 24px 20px;
  }

  .consultation {
    padding: 32px 20px 24px;
  }

  .how-it-works {
    padding: 24px 20px 32px;
  }

  .cta-banner {
    padding: 20px 20px 24px;
  }

  .pricing {
    padding: 32px 20px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 12px;
  }

  .pricing-table th {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .pricing-table td {
    font-size: 15px;
  }

  .gallery-inner {
    padding: 20px 20px 32px;
  }

  .faq {
    padding: 32px 20px 20px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .consultation h2,
  .pricing h2,
  .gallery-section h2,
  .faq h2,
  .how-it-works h2 {
    font-size: 32px;
  }

  .google-reviews-header {
    gap: 8px;
    margin-bottom: 12px;
  }

  .google-g-icon {
    width: 22px;
    height: 22px;
  }

  .reviews-title {
    font-size: 17px;
  }

  .google-rating-link {
    margin: 0 0 20px;
    padding: 8px 18px;
  }

  .reviews-carousel {
    padding: 0 40px;
  }

  .review-card {
    flex-basis: 240px;
  }

  .photo-carousel-stage {
    height: 340px;
    border-radius: 0;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .photo-thumb {
    width: 56px;
    height: 56px;
  }

  .toggle-btn {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a,
  .footer-links span {
    display: inline-block;
  }
}

