/* =========================
   1. ROOT DESIGN TOKENS
========================= */
:root {
  --primary: #3c637b;
  --primary-soft: #7fa6c1;
  --secondary: #526069;
  --tertiary: #58614e;

  --surface: #f9f9f9;
  --surface-low: #f3f3f3;
  --surface-mid: #eeeeee;
  --surface-high: #e2e2e2;
  --surface-white: #ffffff;

  --text-main: #1a1c1c;
  --text-muted: #42474c;
  --text-soft: #72787d;

  --outline-soft: rgba(193, 199, 205, 0.15);

  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --radius-full: 9999px;

  --shadow-soft: 0 12px 40px rgba(60, 99, 123, 0.08);

  --font-headline: "Plus Jakarta Sans", sans-serif;
  --font-body: "Be Vietnam Pro", sans-serif;

  --header-height: 84px;
}

/* =========================
   2. RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

/* =========================
   3. TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-headline);
  letter-spacing: -0.02em;
  color: var(--text-main);
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

.small-label {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   4. LAYOUT
========================= */
.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
}

.has-fixed-header {
  padding-top: var(--header-height);
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* =========================
   5. BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem;
  font-family: var(--font-headline);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: var(--surface-high);
  color: var(--text-main);
}

/* =========================
   6. SHARED HEADER
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  flex: 0 0 auto;
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-soft);
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--primary);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.site-header__cta {
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Temporary waitlist notice: remove this block and the .waitlist-banner markup when bookings reopen. */
.waitlist-banner {
  position: fixed;
  z-index: 900;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
  padding: 0.7rem 1.1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(38, 70, 83, 0.14);
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(20, 42, 53, 0.16);
  backdrop-filter: blur(14px);
  color: var(--text-soft);
  text-align: center;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.waitlist-banner strong {
  margin-right: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.site-mobile-menu {
  display: none;
  padding: 0 0 1.25rem;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.site-mobile-menu.is-open {
  display: block;
}

.site-mobile-nav {
  display: grid;
  gap: 0.5rem;
  padding: 0 1rem 0.25rem;
}

.site-mobile-nav a {
  text-decoration: none;
  color: var(--text-main);
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-mobile-nav a.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
}

.mobile-menu-cta {
  text-align: center;
}

/* =========================
   7. HERO
========================= */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: var(--surface-low);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  background: #d3e2ec;
  color: #56656d;
}

.hero-title {
  max-width: 10ch;
}

.hero-title span {
  color: var(--primary);
  font-style: italic;
}

.hero-copy {
  max-width: 32rem;
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
}

.hero-blob {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(155, 165, 142, 0.18);
  filter: blur(42px);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  transition: transform 0.35s ease;
}

.hero-image-wrap:hover {
  transform: rotate(0deg);
}

.hero-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-quote {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: 2;
  max-width: 260px;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.hero-quote p {
  margin-bottom: 0.9rem;
  font-style: italic;
  color: var(--text-main);
}

.hero-quote-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-quote-dot {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #b9d0de;
  flex: 0 0 auto;
}

.hero-quote-meta small {
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* =========================
   8. PHILOSOPHY / ABOUT
========================= */
.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-collage img {
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.about-image-1 {
  height: 22rem;
  border-radius: 2rem 1rem 2rem 1rem;
}

.about-image-2 {
  height: 16.5rem;
  margin-top: 3.25rem;
  border-radius: 1rem 2rem 1rem 2rem;
}

.about-label {
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-title {
  margin-bottom: 1.25rem;
}

.about-copy + .about-copy {
  margin-top: 1rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-stat-value {
  display: block;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* =========================
   9. SERVICES
========================= */
.services-section {
  background: var(--surface-mid);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-head-copy {
  max-width: 40rem;
}

.section-head-copy h2 {
  margin-bottom: 0.6rem;
}

.section-link {
  text-decoration: none;
  color: var(--primary);
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
}

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

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(60, 99, 123, 0.35);
  outline-offset: 4px;
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-top {
  display: block;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4edf3;
  color: var(--primary);
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.9rem;
}

.service-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.service-price {
  font-family: var(--font-headline);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-plus {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--surface-high);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* =========================
   10. GALLERY
========================= */
.gallery-section {
  background: var(--surface);
}

.gallery-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.gallery-item {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface-white);
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-shape-a {
  border-radius: 3rem 1rem 1rem 2rem;
}

.gallery-shape-b {
  border-radius: 1rem 3rem 2rem 1rem;
}

.gallery-shape-c {
  border-radius: 1.75rem 1.75rem 1rem 1rem;
}

.gallery-shape-d {
  border-radius: 1rem 1rem 3rem 1rem;
}

/* =========================
   11. CONSULTATION FORM
========================= */
.consult-section {
  background: var(--surface-low);
}

.consult-shell {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
}

.consult-aside {
  background: var(--primary);
  color: #ffffff;
  padding: 2.5rem 2rem;
}

.consult-aside h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.consult-aside p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.75rem;
}

.consult-points {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.consult-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-headline);
  font-size: 0.86rem;
  font-weight: 600;
}

.consult-points li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.consult-form-wrap {
  padding: 2rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: none;
  background: var(--surface-mid);
  transition: background 0.3s ease, outline-color 0.3s ease;
}

input:focus,
textarea:focus {
  background: var(--surface-high);
  outline: 2px solid rgba(60, 99, 123, 0.2);
}


/* =========================
   CONTACT ACTION BLOCKS
========================= */
.contact-direct-card {
  display: grid;
  gap: 1rem;
}

.contact-direct-card h3 {
  margin: 0;
}

.contact-direct-label {
  color: var(--primary);
}

.contact-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.contact-direct-note {
  font-size: 0.88rem;
  color: var(--text-soft);
}

@media (max-width: 768px) {
  .waitlist-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }

  .contact-action-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-action-stack .btn {
    width: 100%;
  }
}

/* =========================
   12. SHARED FOOTER
========================= */
.site-footer {
  margin-top: 5rem;
  background: #edf1f5;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  padding-top: 3.75rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.site-footer__logo {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.site-footer__brand p {
  max-width: 280px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.site-footer__brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-footer__logo-link {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-footer__logo-mark {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.site-footer__brand-lockup p {
  margin: 0;
  max-width: 240px;
  line-height: 1.7;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__social-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.site-footer__links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.site-footer__links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-footer__links a:hover {
  color: var(--primary);
}

.site-footer__icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.site-footer__icons a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.8;
}

.site-footer__bottom {
  border-top: 1px solid rgba(193, 199, 205, 0.35);
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-soft);
}

/* =========================
   13. RESPONSIVE
========================= */
@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-nav--desktop,
  .site-header__cta {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .hero-inner,
  .about-grid,
  .consult-shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero-image {
    height: 520px;
    object-fit: contain;
    object-position: center;
    background: var(--surface-white);
  }

  .hero-title {
    max-width: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__brand p {
    max-width: none;
  }

  .site-footer__brand-lockup {
    max-width: 560px;
  }
}

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

  .container {
    width: min(1200px, calc(100% - 1.25rem));
  }

  .hero {
    min-height: 46rem;
    position: relative;
    background: var(--text-main);
  }

  .hero-inner {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 46rem;
    padding: 0;
  }

  .hero-copy-wrap {
    position: relative;
    z-index: 2;
    max-width: 34rem;
    padding: 3.5rem 1.5rem 15.5rem;
    color: #ffffff;
  }

  .hero-badge {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(10px);
  }

  .hero-title,
  .hero-copy {
    color: #ffffff;
  }

  .hero-copy {
    max-width: 24rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: auto;
    flex: 1 1 0;
    text-align: center;
  }

  .hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
  }

  .hero-media {
    position: absolute;
    inset: 0;
  }

  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 20, 26, 0.5), rgba(9, 20, 26, 0.12) 42%, rgba(9, 20, 26, 0.8));
    pointer-events: none;
    z-index: 1;
  }

  .hero-blob {
    display: none;
  }

  .hero-image-wrap {
    height: 100%;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .hero-image-wrap:hover {
    transform: none;
  }

  .hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-quote {
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: none;
    margin: 0;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.9);
  }

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

  .about-image-1 {
    height: 240px;
  }

  .about-image-2 {
    height: 190px;
    margin-top: 1.5rem;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 2rem;
  }

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

  .gallery-item img {
    height: auto;
    object-fit: contain;
    display: block;
  }

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

  .site-mobile-nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-footer {
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    padding-top: 2.75rem;
  }

  .site-footer__brand-lockup {
    gap: 1rem;
  }

  .site-footer__logo-mark {
    width: 112px;
    height: 112px;
  }

  .site-footer__brand-lockup p {
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .site-footer__brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__logo-mark {
    width: 96px;
    height: 96px;
  }
}


/* =========================
   PHOTO BACKGROUNDS
   Soft tonal gradient behind transparent photo cutouts.
========================= */
img[src*="assets/img/photos/"] {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(211, 226, 236, 0.86) 0%, rgba(246, 241, 233, 0.94) 58%, rgba(235, 241, 232, 0.9) 100%);
}

.hero-image-wrap,
.gallery-item,
.gallery-card,
.package-feature__media,
.prep-media__frame,
.contact-info__image,
.about-letter__image-wrap,
.about-philosophy__media img,
.gallery-testimonial__avatar,
.terms-split__media,
.about-hero__portrait,
.terms-card__image {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(211, 226, 236, 0.9), rgba(246, 241, 233, 0.96) 56%, rgba(235, 241, 232, 0.92));
}

/* =========================
   DYNAMIC TESTIMONIALS
========================= */
.testimonial-carousel {
  position: relative;
}

.testimonial-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding: 0.25rem 0.25rem 1rem;
}

.testimonial-carousel__track {
  display: flex;
  gap: 1.5rem;
}

.testimonial-carousel__card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}

.testimonial-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-carousel__button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--surface-white);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.testimonial-carousel__button:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .testimonial-carousel__card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 680px) {
  .testimonial-carousel__card {
    flex-basis: 88%;
  }
}



.testimonial-carousel__button:disabled,
.testimonial-carousel__button[aria-disabled="true"] {
  opacity: 0.42;
  cursor: default;
  transform: none;
}
