:root {
  --pink: #F599C6;
  --yellow: #FFEA88;
  --green: #7DCCAD;
  --navy: #4D6787;

  --ink: #26374b;
  --cream: #fffdf8;
  --white: #ffffff;
  --muted: #637083;
  --border: rgba(77, 103, 135, 0.17);
  --shadow: 0 20px 50px rgba(46, 67, 92, 0.13);
  --shadow-soft: 0 10px 30px rgba(46, 67, 92, 0.1);

  --header-height: 92px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 90px 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

p {
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.center {
  text-align: center;
}

.light-text,
.light-text .eyebrow {
  color: var(--white);
}

/* ---------- self edits ---------- */
.logo {
  width: 100px;
  height: auto;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
  color: var(--navy);
  background: var(--yellow);
}

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--navy);
}

.btn-navy {
  color: var(--white);
  background: var(--navy);
}

.btn-yellow {
  color: var(--navy);
  background: var(--yellow);
}

.btn-large {
  padding: 15px 25px;
  min-height: 52px;
}

.btn-full {
  width: 100%;
  min-height: 52px;
}

/* ---------- FIXED NAV ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  width: min(1380px, calc(100% - 36px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50% 50% 46% 54% / 57% 45% 55% 43%;
  background: var(--pink);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  transform: rotate(-4deg);
  box-shadow: inset -7px -6px 0 rgba(255, 255, 255, 0.22);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-nav > a:not(.btn) {
  position: relative;
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  transition: right 0.2s ease;
}

.main-nav > a:not(.btn):hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  gap: 10px;
  margin-left: 2px;
}

.nav-actions .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--yellow);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- HERO ---------- */

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 8% 22%, rgba(245, 153, 198, 0.45), transparent 28%),
    radial-gradient(circle at 91% 13%, rgba(125, 204, 173, 0.34), transparent 24%),
    linear-gradient(135deg, #fffdf8 0%, #fff9dd 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -120px;
  bottom: -210px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 153, 198, 0.19);
}

.decor-bubble {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.bubble-one {
  width: 85px;
  height: 85px;
  left: 3%;
  bottom: 8%;
  border: 13px solid rgba(125, 204, 173, 0.4);
}

.bubble-two {
  width: 42px;
  height: 42px;
  right: 46%;
  top: 13%;
  background: rgba(255, 234, 136, 0.82);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.hero-copy .eyebrow {
  color: #966187;
}

.hero-copy h1 {
  color: var(--navy);
}

.hero-text {
  max-width: 660px;
  margin-top: 22px;
  font-size: 1.15rem;
  color: #4f5c6c;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.service-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(77, 103, 135, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(77, 103, 135, 0.05);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(77, 103, 135, 0.11);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.quote-card-heading {
  margin-bottom: 22px;
}

.quote-card-heading h2 {
  color: var(--navy);
  font-size: 2.25rem;
}

.quote-card-heading p:last-child {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #d8e0e8;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 48px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(245, 153, 198, 0.2);
}

.honeypot {
  display: none !important;
}

/* ---------- ABOUT ---------- */

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.section-copy h2 {
  color: var(--navy);
  max-width: 14ch;
  margin-bottom: 20px;
}

.section-copy p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.family-photo-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 35% 65% 47% 53% / 51% 37% 63% 49%;
  background:
    linear-gradient(135deg, rgba(245, 153, 198, 0.78), rgba(125, 204, 173, 0.8));
  box-shadow: var(--shadow);
}

.family-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-copy {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 30px;
  text-align: center;
  color: var(--navy);
}

.placeholder-copy span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.placeholder-copy small {
  font-weight: 700;
}

.family-photo-frame.image-placeholder .placeholder-copy {
  display: grid;
}

/* ---------- SECTION HEADINGS ---------- */

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-heading h2 {
  color: var(--navy);
}

.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- CAROUSELS ---------- */

.carousel {
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(77, 103, 135, 0.94);
  box-shadow: 0 8px 25px rgba(36, 52, 72, 0.2);
  font-size: 1.5rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  background: var(--ink);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(77, 103, 135, 0.28);
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  width: 29px;
  background: var(--navy);
}

/* Mixed-size image support:
   Images keep their natural proportions inside a consistent frame.
   Portrait, landscape, and square images can all be used without distortion. */
.image-slide {
  height: clamp(340px, 55vw, 610px);
  padding: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: #f7f4ef;
}

/* ---------- REVIEWS ---------- */
.reviews { background: #fff8fb; }
.review-carousel { max-width: 1180px; margin-inline: auto; }
.review-carousel .carousel-viewport { overflow: hidden; border-radius: 0; padding: 10px 4px 22px; }
.review-carousel .carousel-track { gap: 20px; }
.review-carousel .carousel-slide { min-width: 0; flex: 0 0 calc((100% - 40px) / 3); }
.review-card { display: flex; flex-direction: column; align-items: center; min-height: 430px; padding: 30px 24px; text-align: center; background: var(--white); border: 1px solid rgba(245,153,198,.32); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.review-profile { display: grid; justify-items: center; gap: 10px; }
.review-avatar { position: relative; width: 86px; height: 86px; overflow: hidden; border-radius: 50%; background: linear-gradient(135deg, rgba(245,153,198,.55), rgba(125,204,173,.55)); border: 4px solid var(--white); box-shadow: 0 7px 20px rgba(46,67,92,.14); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-fallback { position: absolute; inset: 0; display: none; place-items: center; color: var(--navy); font-size: 2rem; }
.review-name { color: var(--ink); font-family: var(--font-display); font-size: 1.22rem; line-height: 1.1; }
.review-card .stars { margin-top: 12px; color: #e8af2b; font-size: 1.25rem; letter-spacing: .08em; }
.review-text { margin-top: 18px; color: var(--navy); font-size: 1rem; line-height: 1.65; }
.review-source { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: auto; padding-top: 24px; color: var(--muted); font-size: .9rem; font-weight: 800; }
.review-source i { font-size: 1.05rem; }
.google-review i { color: #4285f4; }
.facebook-review i { color: #1877f2; }

/* ---------- SERVICE SECTIONS ---------- */

.service-section {
  overflow: hidden;
}

.pink-section {
  background: rgba(245, 153, 198, 0.62);
}

.yellow-section {
  background: rgba(255, 234, 136, 0.78);
}

.green-section {
  background: rgba(125, 204, 173, 0.74);
}

.navy-section {
  background: var(--navy);
}

.service-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.service-section-heading > div {
  max-width: 760px;
}

.service-section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.navy-section .service-section-actions .btn-outline {
  background: var(--white);
  border-color: var(--white);
}

.service-section-heading h2 {
  color: var(--navy);
}

.service-section-heading > div > p:last-child {
  max-width: 620px;
  margin-top: 11px;
  color: rgba(38, 55, 75, 0.77);
}

.service-section-heading.light-text h2,
.service-section-heading.light-text > div > p:last-child {
  color: var(--white);
}

.navy-section .carousel-dot {
  background: rgba(255, 255, 255, 0.32);
}

.navy-section .carousel-dot.active {
  background: var(--yellow);
}

/* ---------- FOOTER ---------- */

.site-footer {
  padding: 55px 0 20px;
  background: #f8f4ed;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand > p {
  max-width: 480px;
  margin-top: 14px;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1220px) {
  .brand-name {
    font-size: 1.1rem;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav > a:not(.btn) {
    font-size: 0.82rem;
  }

  .nav-actions .btn {
    padding-inline: 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1080px) {
  .review-carousel .carousel-slide { flex-basis: calc((100% - 20px) / 2); }

  :root {
    --header-height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    text-align: left;
    gap: 0;
    padding: 18px 20px 25px;
    background: rgba(255, 253, 248, 0.99);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

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

  .main-nav > a:not(.btn) {
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .main-nav > a:not(.btn)::after {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 18px 0 0;
  }

  .nav-actions .btn {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-text {
    margin-inline: auto;
  }

  .service-pills,
  .hero-buttons {
    justify-content: center;
  }

  .quote-card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .about-grid {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  .review-carousel .carousel-slide { flex-basis: 100%; }
  .review-card { min-height: 390px; padding: 30px 26px; }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .brand-mark {
    width: 47px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .section-copy {
    text-align: center;
  }

  .section-copy h2,
  .section-copy p {
    margin-inline: auto;
  }

  .family-photo-frame {
    min-height: 380px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .service-section-heading {
    display: grid;
    align-items: start;
  }

  .service-section-heading .btn {
    justify-self: start;
  }

  .service-section-actions {
    justify-content: flex-start;
  }

  .carousel {
    padding-inline: 0;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .carousel-btn.prev {
    left: 8px;
  }

  .carousel-btn.next {
    right: 8px;
  }

  .image-slide {
    height: clamp(310px, 88vw, 520px);
    padding: 8px;
  }

  .footer-grid {
    display: grid;
    text-align: center;
  }

  .footer-brand .brand {
    justify-content: center;
  }

  .footer-brand > p {
    margin-inline: auto;
  }

  .footer-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 74px;
  }

  .nav-container {
    width: calc(100% - 22px);
  }

  .brand-mark {
    width: 43px;
    font-size: 1.1rem;
  }

  .brand-name {
    max-width: 130px;
    font-size: 0.94rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 45px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .service-pills {
    gap: 7px;
  }

  .service-pills span {
    font-size: 0.82rem;
  }

  .family-photo-frame {
    min-height: 310px;
  }

  .service-section-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .service-section-actions .btn {
    width: 100%;
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   GALLERY PAGE
   Supports portrait, landscape, square, and mixed-size photos
   ========================================================== */

.gallery-page main {
  padding-top: var(--header-height);
}

.gallery-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(245, 153, 198, 0.42), transparent 29%),
    radial-gradient(circle at 88% 20%, rgba(125, 204, 173, 0.34), transparent 27%),
    linear-gradient(135deg, #fffdf8 0%, #fff9dd 100%);
}

.gallery-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -180px;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 153, 198, 0.16);
}

.gallery-hero-inner {
  max-width: 860px;
  text-align: center;
}

.gallery-hero h1 {
  max-width: none;
  color: var(--navy);
}

.gallery-hero-inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.gallery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.gallery-section {
  background: #fff8fb;
}

/* CSS columns create a masonry-style grid while preserving each
   image's natural aspect ratio. */
.photo-grid {
  column-count: 4;
  column-gap: 18px;
  margin-top: 38px;
}

.gallery-item {
  position: relative;
  width: 100%;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.32s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-cta {
  background: var(--white);
}

.gallery-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 234, 136, 0.82),
    rgba(125, 204, 173, 0.58)
  );
  box-shadow: var(--shadow-soft);
}

.gallery-cta-card h2 {
  max-width: 620px;
  color: var(--navy);
}

@media (max-width: 1080px) {
  .photo-grid {
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .photo-grid {
    column-count: 2;
    column-gap: 12px;
    margin-top: 28px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 15px;
  }

  .gallery-cta-card {
    display: grid;
    padding: 30px 24px;
    text-align: center;
  }

  .gallery-cta-card .btn {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .gallery-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-grid {
    column-count: 1;
  }

  .gallery-item {
    margin-bottom: 14px;
  }
}


/* ==========================================================
   INVENTORY PAGE
   Expandable rental cards
   ========================================================== */

.inventory-page main { padding-top: var(--header-height); }

.inventory-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 153, 198, 0.42), transparent 30%),
    radial-gradient(circle at 90% 22%, rgba(125, 204, 173, 0.34), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #fff9dd 100%);
}

.inventory-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -200px;
  width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 153, 198, 0.16);
}

.inventory-hero-inner { max-width: 940px; margin-inline: auto; text-align: center; }
.inventory-hero h1 { max-width: none; color: var(--navy); }
.inventory-hero-text { max-width: 760px; margin: 18px auto 0; color: var(--muted); font-size: 1.12rem; }

.inventory-notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.inventory-notice {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(77, 103, 135, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.inventory-notice-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 1.2rem;
}

.inventory-notice:nth-child(2) .inventory-notice-icon { background: rgba(125, 204, 173, 0.72); }
.inventory-notice h2 { color: var(--navy); font-size: 1.35rem; }
.inventory-notice p { margin-top: 4px; color: var(--muted); font-size: 0.96rem; }
.inventory-notice .btn { margin-top: 14px; }

.inventory-section { background: #fff8fb; }

.inventory-heading { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.inventory-heading h2 { color: var(--navy); }
.inventory-heading > p:last-child { margin-top: 12px; color: var(--muted); }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.inventory-card {
  overflow: hidden;
  border: 1px solid rgba(77, 103, 135, 0.14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.inventory-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.inventory-card[open] { border-color: rgba(245, 153, 198, 0.48); }
.inventory-card summary { list-style: none; cursor: pointer; }
.inventory-card summary::-webkit-details-marker { display: none; }
.inventory-card-summary { display: block; }

.inventory-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,153,198,.14), rgba(125,204,173,.14)), #f7f4ef;
}

.inventory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.32s ease;
}

.inventory-card:hover .inventory-card-image img { transform: scale(1.025); }

.inventory-card-category {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 5px 18px rgba(46, 67, 92, 0.1);
}

.inventory-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 20px 18px;
}

.inventory-card-heading h3 { color: var(--navy); font-size: 1.55rem; }
.inventory-card-hint { margin-top: 4px; color: var(--muted); font-size: 0.88rem; font-weight: 700; }

.inventory-card-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  transition: transform 0.24s ease;
}

.inventory-card[open] .inventory-card-toggle { transform: rotate(180deg); }

.inventory-details { padding: 0 20px 22px; border-top: 1px solid var(--border); }
.inventory-details-intro { padding-top: 18px; color: var(--muted); font-size: 0.93rem; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.spec-item { padding: 12px 13px; border-radius: 14px; background: #f8f6f1; }
.spec-item dt { color: var(--muted); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-item dd { margin-top: 2px; color: var(--ink); font-size: 0.95rem; font-weight: 800; }

.inventory-details-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.inventory-card-note { margin-top: 13px; color: var(--muted); font-size: 0.82rem; }

.inventory-bottom-cta { background: var(--white); }

.inventory-bottom-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(245, 153, 198, 0.42), rgba(255, 234, 136, 0.72), rgba(125, 204, 173, 0.52));
  box-shadow: var(--shadow-soft);
}

.inventory-bottom-card h2 { max-width: 650px; color: var(--navy); }
.inventory-bottom-card p:not(.eyebrow) { max-width: 650px; margin-top: 8px; color: rgba(38, 55, 75, 0.78); }
.inventory-bottom-actions { display: flex; flex-wrap: wrap; gap: 10px; flex-shrink: 0; }

@media (max-width: 1080px) {
  .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .inventory-notice-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; gap: 18px; }
  .inventory-bottom-card { display: grid; padding: 30px 24px; text-align: center; }
  .inventory-bottom-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .inventory-notice { display: grid; }
  .inventory-notice-icon { width: 44px; height: 44px; }
  .inventory-card-heading { padding: 18px 16px 16px; }
  .inventory-details { padding: 0 16px 18px; }
  .spec-grid { grid-template-columns: 1fr; }
  .inventory-bottom-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .inventory-bottom-actions .btn { width: 100%; }
}
