/* ==========================================================================
   BI3 Wellness Spa — Core design system
   ========================================================================== */

:root {
  /* Brand palette */
  --plum: #6e4a70;
  --plum-deep: #4d3350;
  --mauve: #a16c9b;
  --sand: #e9ded0;
  --cream: #f8f4ee;
  --ivory: #fcfaf7;
  --earth: #5a4030;
  --charcoal: #24211f;
  --olive: #788f45;
  --champagne: #c7a66a;

  /* Semantic */
  --bg: var(--ivory);
  --bg-alt: var(--cream);
  --bg-sand: var(--sand);
  --ink: var(--charcoal);
  --ink-soft: #6b625b;
  --line: rgba(90, 64, 48, 0.16);
  --line-strong: rgba(90, 64, 48, 0.3);

  /* Type */
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Bricolage Grotesque", sans-serif;
  --font-header: "Bricolage Grotesque", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: 32px;
  --section-y: 128px;
  --radius: 3px;
  --radius-lg: 4px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 84px;
}

/* Reset ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/backgound2.webp') center / cover no-repeat;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--plum);
  color: var(--ivory);
}

/* Typography ------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.2;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  margin: 0 0 1.15em;
  color: var(--ink-soft);
}

p:last-child {
  margin-bottom: 0;
}

em.serif {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--plum);
}

.accent {
  color: var(--plum);
}

.section--dark .accent,
.hero .accent {
  color: var(--mauve);
}

.eyebrow {
  display: inline-block;
  font-size: 0.688rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  margin: 0 0 22px;
}

.eyebrow--light {
  color: var(--sand);
}

.lede {
  font-size: 1.075rem;
  line-height: 1.85;
  max-width: 58ch;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* Layout ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--tight {
  padding: 88px 0;
}

.section--cream {
  background: rgba(248, 244, 238, 0.7);
}

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

.section--dark {
  background: var(--charcoal);
  color: var(--sand);
}

.section--dark h2,
.section--dark h3 {
  color: var(--ivory);
}

.section--dark p {
  color: rgba(233, 222, 208, 0.76);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head p {
  margin-bottom: 0;
}

.section-head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.section-head--center .lede {
  margin-inline: auto;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid transparent;
  transition:
    background-color 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--plum);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--plum-deep);
}

/* Pill button with icon circle on left (reference style) */
.btn--pill {
  background: var(--plum-deep);
  color: var(--ivory);
  padding: 10px 28px 10px 10px;
  gap: 14px;
}

.btn--pill:hover {
  background: var(--plum);
}

.btn__icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--charcoal);
}

/* Play button style (circle + text, no background) */
.btn--play {
  background: none;
  border: none;
  color: var(--ivory);
  padding: 10px 16px;
  gap: 14px;
}

.btn--play:hover {
  background: none;
  transform: none;
}

.btn--play:hover .btn__play-circle {
  background: var(--plum);
}

.btn__play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(252, 250, 247, 0.25);
  color: var(--ivory);
  transition: background 0.3s var(--ease);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--charcoal);
}

.btn--ghost:hover {
  border-color: var(--plum);
  color: var(--plum);
}

/* Book button with arrow icon (header CTA) */
.btn--book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-header);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid rgba(252, 250, 247, 0.45);
  color: var(--ivory);
  padding: 10px 12px 10px 20px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--book:hover {
  background: rgba(252, 250, 247, 0.1);
  border-color: var(--ivory);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  transition: background 0.3s var(--ease);
}

.btn--book:hover .btn__icon {
  background: var(--plum-deep);
}

/* Scrolled state: book button switches to dark */
.header.is-scrolled .btn--book,
.header.is-solid .btn--book {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.header.is-scrolled .btn--book:hover,
.header.is-solid .btn--book:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.header.is-scrolled .btn__icon,
.header.is-solid .btn__icon {
  background: var(--plum);
  color: var(--ivory);
}

.btn--light {
  border-color: rgba(252, 250, 247, 0.5);
  color: var(--ivory);
}

.btn--light:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.btn--block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  color: var(--plum);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  transition:
    gap 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.link-arrow:hover {
  gap: 16px;
  border-color: var(--plum);
}

.link-arrow--light {
  color: var(--sand);
  border-color: rgba(233, 222, 208, 0.35);
}

/* Header ----------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    height 0.45s var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.header.is-scrolled,
.header.is-solid {
  background: rgba(252, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 72px;
}

.header.is-scrolled .nav,
.header.is-solid .nav {
  background: rgba(36, 33, 31, 0.06);
  border-color: rgba(36, 33, 31, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: width 0.45s var(--ease), height 0.45s var(--ease);
}

.header.is-scrolled .brand img,
.header.is-solid .brand img {
  width: 64px;
  height: 64px;
}

.brand__text {
  display: block;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-header);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand__tag {
  display: block;
  font-size: 0.575rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(252, 250, 247, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 250, 247, 0.2);
  border-radius: 40px;
  padding: 10px 28px;
}

.nav a {
  font-family: var(--font-header);
  font-size: 0.735rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s var(--ease);
}

.nav a:hover {
  opacity: 0.7;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--plum);
  transition: width 0.4s var(--ease);
}

.nav a[aria-current="page"]::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Header over hero (transparent state) */
.header--overlay:not(.is-scrolled) .brand__name,
.header--overlay:not(.is-scrolled) .nav a,
.header--overlay:not(.is-scrolled) .brand__tag {
  color: var(--ivory);
}

.header--overlay:not(.is-scrolled) .nav a::after {
  background: var(--sand);
}

.header--overlay:not(.is-scrolled) .btn--ghost {
  border-color: rgba(252, 250, 247, 0.55);
  color: var(--ivory);
}

.header--overlay:not(.is-scrolled) .burger span {
  background: var(--ivory);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}

.burger span {
  display: block;
  height: 1px;
  width: 24px;
  background: var(--charcoal);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}

.burger span:nth-child(2) {
  width: 16px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  width: 24px;
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu ------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: var(--cream);
  padding: calc(var(--header-h) + 32px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.5s var(--ease),
    visibility 0.4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

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

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__foot {
  display: grid;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 0 0 50px 50px;
}

.hero__media,
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 20, 18, 0.86) 0%,
    rgba(24, 20, 18, 0.42) 45%,
    rgba(24, 20, 18, 0.32) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 92px;
  padding-top: calc(var(--header-h) + 60px);
  color: var(--ivory);
}

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

.hero p {
  color: rgba(252, 250, 247, 0.82);
  max-width: 46ch;
  margin-top: 26px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(252, 250, 247, 0.22);
}

.hero__meta div {
  min-width: 120px;
}

.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ivory);
}

.hero__meta span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 250, 247, 0.62);
}

/* Page hero (inner pages) ------------------------------------------------ */
.page-hero {
  padding: calc(var(--header-h) + 92px) 0 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 18ch;
}

.page-hero .lede {
  margin-top: 24px;
}

/* Hero Redesign ---------------------------------------------------------- */
.hero--redesign .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-bottom: 48px;
  padding-top: calc(var(--header-h) + 60px);
}

.hero--redesign .hero__content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 720px;
}

.hero--redesign .hero__media::after {
  background:
    rgba(0, 0, 0, 0.35),
    linear-gradient(
      135deg,
      rgba(24, 20, 18, 0.62) 0%,
      rgba(24, 20, 18, 0.25) 50%,
      rgba(24, 20, 18, 0.15) 100%
    );
}

.hero--redesign h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ivory);
  max-width: 14ch;
}

.hero--redesign p {
  color: rgba(252, 250, 247, 0.82);
  max-width: 42ch;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero--redesign .hero__actions {
  margin-top: 32px;
}

/* Outline button with arrow */
.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid rgba(252, 250, 247, 0.5);
  color: var(--ivory);
  padding: 16px 32px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn--outline-light:hover {
  background: rgba(252, 250, 247, 0.1);
  border-color: var(--ivory);
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 247, 0.5);
  transition: background 0.3s var(--ease);
}

.btn--outline-light:hover .btn__arrow {
  background: rgba(252, 250, 247, 0.15);
}

/* Stats bar */
.hero__stats {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(252, 250, 247, 0.72);
  letter-spacing: 0.02em;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero__rating-num {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ivory);
}

.hero__avatars {
  display: flex;
  margin-left: 6px;
}

.hero__avatar {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(252, 250, 247, 0.8);
  margin-left: -8px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

/* Floating card */
.hero__float-card {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: rgba(252, 250, 247, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(252, 250, 247, 0.2);
  border-radius: 16px;
  padding: 12px 16px;
  max-width: 420px;
  position: relative;
}

.hero__float-slides {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero__float-slide {
  display: none;
  align-items: center;
  gap: 14px;
  width: 100%;
  animation: fadeSlide 0.4s ease;
}

.hero__float-slide.active {
  display: flex;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero__float-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.hero__float-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-text {
  flex: 1;
}

.hero__float-text p {
  font-size: 0.82rem;
  color: rgba(252, 250, 247, 0.88);
  margin: 0;
  line-height: 1.5;
  max-width: 22ch;
}

.hero__float-nav {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.hero__float-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(252, 250, 247, 0.4);
  color: var(--ivory);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.hero__float-btn:hover {
  background: rgba(252, 250, 247, 0.15);
}

.hero__float-arrow {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hero__float-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
}

/* Responsive adjustments for hero redesign */
@media (max-width: 900px) {
  .hero--redesign .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-bottom: 36px;
  }

  .hero--redesign .hero__content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__stats {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__float-card {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    max-width: 100%;
  }
}

/* About Highlight Section ------------------------------------------------ */
.about-highlight {
  padding: var(--section-y) 0;
  position: relative;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 250, 247, 0.4);
}

.about-highlight__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left: content */
.about-highlight__left {
  position: relative;
}

.about-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.about-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plum);
  margin-right: 8px;
  vertical-align: middle;
}

.about-highlight__left h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 16ch;
}

.about-highlight__left > p {
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 52ch;
  font-size: 0.95rem;
}

/* Feature bullets (two columns) */
.about-highlight__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.about-highlight__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-highlight__feature-icon {
  color: var(--charcoal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stats row */
.about-highlight__stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  background: rgba(252, 250, 247, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(90, 64, 48, 0.08);
}

.about-highlight__stat {
  flex: 1;
  padding: 28px;
}

.about-highlight__stat:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.about-highlight__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.about-highlight__stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.about-highlight__left > .btn {
  margin-top: 32px;
}

/* Right: images layout */
.about-highlight__right {
  position: relative;
}

.about-highlight__images {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  min-height: 500px;
}

.about-highlight__img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-highlight__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-highlight__img--main {
  grid-row: 1 / 3;
  min-height: 420px;
}

.about-highlight__img--secondary {
  position: relative;
  min-height: 200px;
}

.about-highlight__img--third {
  min-height: 200px;
}

.about-highlight__badge {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--plum-deep);
  border: 1.5px solid var(--champagne);
  border-radius: 16px;
  padding: 14px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  min-width: 240px;
}

.about-highlight__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(199, 166, 106, 0.12);
  color: var(--champagne);
  flex-shrink: 0;
}

.about-highlight__badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-highlight__badge-text .badge-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}

.about-highlight__badge-text .badge-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.2;
}


@media (max-width: 900px) {
  .about-highlight__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-highlight__images {
    min-height: 350px;
  }
}

/* Services Preview ------------------------------------------------------- */
.services-preview {
  background: var(--sand);
  padding: var(--section-y) 0;
  overflow: hidden;
}

.services-preview__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.services-preview__header-left h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 14ch;
}

.services-preview__header-right p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

/* Slider */
.services-slider {
  position: relative;
}

.services-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.services-slider__track::-webkit-scrollbar {
  display: none;
}

/* Card */
.services-preview__card {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(90, 64, 48, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.services-preview__card:hover,
.services-preview__card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(90, 64, 48, 0.14);
}

/* Card content (text area) */
.services-preview__card-content {
  position: relative;
  z-index: 2;
  transition: color 0.4s var(--ease);
}

.services-preview__num {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(252, 250, 247, 0.7);
  display: block;
  margin-bottom: 12px;
  transition: color 0.4s var(--ease);
}

.services-preview__line {
  border: none;
  border-top: 1px solid rgba(252, 250, 247, 0.3);
  margin: 0 0 20px;
  transition: border-color 0.4s var(--ease);
}

.services-preview__card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 10px;
  transition: color 0.4s var(--ease);
}

.services-preview__card p {
  font-size: 0.88rem;
  color: rgba(252, 250, 247, 0.8);
  line-height: 1.6;
  transition: color 0.4s var(--ease);
}

/* Card bottom: circular thumbnail hidden since full background is shown */
.services-preview__card-bottom {
  display: none;
}

.services-preview__card-thumb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.services-preview__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background image (always shown by default) */
.services-preview__card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  opacity: 1;
  transition: transform 0.5s var(--ease);
}

.services-preview__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.services-preview__card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 33, 31, 0.6) 0%, rgba(36, 33, 31, 0.75) 100%);
}

/* Hover state: slight image scale for micro-interaction */
.services-preview__card:hover .services-preview__card-bg img {
  transform: scale(1.05);
}

/* Slider navigation */
.services-slider__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.services-slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.services-slider__btn:hover {
  background: var(--cream);
  border-color: var(--charcoal);
}

@media (max-width: 900px) {
  .services-preview__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-preview__card {
    flex: 0 0 85%;
    min-width: 260px;
  }
}

/* Why Choose Us ---------------------------------------------------------- */
.why-choose {
  padding: var(--section-y) 0;
}

.why-choose__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.why-choose__head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 16px;
  color: var(--charcoal);
}

.why-choose__head p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.why-choose__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left: images */
.why-choose__images {
  position: relative;
  padding: 60px 20px 20px 40px;
  min-height: 500px;
}

.why-choose__img {
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-choose__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose__img--top {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  z-index: 1;
}

.why-choose__img--bottom {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 65%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  z-index: 2;
  border: 5px solid var(--ivory);
}

.why-choose__contact-badge {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border: 3px solid var(--ivory);
}

/* Right: accordion */
.why-choose__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-radius: 20px;
  padding: 8px 32px;
}

.why-choose__item {
  border-bottom: 1px solid var(--line);
}

.why-choose__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.3s var(--ease);
}

.why-choose__trigger:hover {
  color: var(--plum);
}

.why-choose__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.why-choose__item:not(.is-active) .why-choose__arrow {
  transform: rotate(180deg);
  background: var(--sand);
  color: var(--charcoal);
}

.why-choose__item.is-active .why-choose__arrow {
  background: var(--charcoal);
  color: var(--ivory);
  transform: rotate(0deg);
}

.why-choose__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 0;
}

.why-choose__item.is-active .why-choose__panel {
  max-height: 300px;
  padding: 0 0 22px;
}

.why-choose__panel p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.why-choose__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose__panel ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 6px;
}

.why-choose__panel ul li::before {
  content: "✻";
  position: absolute;
  left: 0;
  color: var(--plum);
  font-size: 0.7rem;
  top: 3px;
}

@media (max-width: 900px) {
  .why-choose__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Testimonials Section --------------------------------------------------- */
.testimonials-section {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.testimonials-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.testimonials-section__header-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 16px;
  color: var(--charcoal);
  max-width: 16ch;
}

.testimonials-section__header-right p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.testimonials-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__info strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-card__info span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.testimonial-card__stars {
  color: #fbbc04;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card__google {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card__google svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__google span {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.testimonial-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .testimonials-section__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* FAQ Section ------------------------------------------------------------- */
.faq-section {
  padding: var(--section-y) 0;
}

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

.faq-section__left h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 16px;
  color: var(--charcoal);
  max-width: 16ch;
}

.faq-section__contact {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(90, 64, 48, 0.06);
}

.faq-section__contact-header {
  background: var(--champagne);
  color: var(--charcoal);
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.faq-section__contact-body {
  background: transparent;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-section__contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
  text-decoration: none;
}

.faq-section__contact-btn:hover {
  transform: translateX(4px);
}

.faq-section__contact-btn--call {
  background: var(--cream);
  color: var(--plum);
}

.faq-section__contact-btn--call:hover {
  background: var(--sand);
}

.faq-section__contact-btn--whatsapp {
  background: #e8f5e9;
  color: #25d366;
}

.faq-section__contact-btn--whatsapp:hover {
  background: #c8e6c9;
}

.faq-section__contact-btn span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.faq-section__contact-btn strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.faq-section__contact-btn svg {
  flex-shrink: 0;
}

/* FAQ accordion items */
.faq-item {
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 12px rgba(90, 64, 48, 0.05);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(90, 64, 48, 0.1);
  transform: translateY(-1px);
}

.faq-item.is-active {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--plum);
  box-shadow: 0 6px 28px rgba(110, 74, 112, 0.12);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.3s var(--ease);
}

.faq-item.is-active .faq-item__trigger {
  background: transparent;
  color: var(--plum-deep);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--charcoal);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.faq-item.is-active .faq-item__icon {
  background: var(--plum);
  color: var(--ivory);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
  background: transparent;
  border-radius: 0 0 14px 14px;
}

.faq-item.is-active .faq-item__panel {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-item__panel p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Book / Contact Section -------------------------------------------------- */
.book-section {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.book-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.book-section__left h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 16px;
  color: var(--charcoal);
  max-width: 16ch;
}

.book-section__left > p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.9rem;
  max-width: 48ch;
}

.book-section__image {
  position: relative;
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}

.book-section__image > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.book-section__image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 32px;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.book-section__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book-section__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(252, 250, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  flex-shrink: 0;
}

.book-section__info-item div span {
  display: block;
  font-size: 0.7rem;
  color: rgba(252, 250, 247, 0.6);
}

.book-section__info-item div strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ivory);
}

/* Form card */
.book-section__form-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 24px rgba(90, 64, 48, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
}

.book-section__form-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.book-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.book-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.book-form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.book-form__field input,
.book-form__field textarea {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  transition: border-color 0.3s var(--ease);
}

.book-form__field input::placeholder,
.book-form__field textarea::placeholder {
  color: var(--ink-soft);
}

.book-form__field input:focus,
.book-form__field textarea:focus {
  outline: none;
  border-color: var(--plum);
}

.book-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.book-form__submit {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .book-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-form__row {
    grid-template-columns: 1fr;
  }
}

/* About Page Redesign ======================================================= */

/* New Split Hero */
.about-hero-new {
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: radial-gradient(circle at top right, rgba(144, 95, 126, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.about-hero-new__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-hero-new__left .breadcrumb {
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.about-hero-new__left .breadcrumb a {
  color: var(--plum);
  font-weight: 500;
  transition: color 0.3s;
}

.about-hero-new__left .breadcrumb a:hover {
  color: var(--mauve);
}

.about-hero-new__left .breadcrumb .sep {
  margin: 0 8px;
  color: var(--line);
}

.about-hero-new__left h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.about-hero-new__left h1 .accent {
  color: var(--plum);
}

.about-hero-new__left .lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 48ch;
}

.about-hero-new__right {
  position: relative;
}

.about-hero-new__frame {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(90, 64, 48, 0.12);
  transition: transform 0.4s var(--ease);
}

.about-hero-new__frame:hover {
  transform: translateY(-5px);
}

.about-hero-new__frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-hero-new__right .frame-bg {
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--plum);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

/* Mission / Vision / Values Redesign */
.about-mv {
  padding: 80px 0;
  background: #fdfafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-mv__card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(90, 64, 48, 0.03);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.about-mv__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.about-mv__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(90, 64, 48, 0.08);
  border-color: rgba(144, 95, 126, 0.2);
}

.about-mv__card:hover::before {
  transform: scaleX(1);
}

.about-mv__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(144, 95, 126, 0.08);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.about-mv__card:hover .about-mv__icon {
  background: var(--plum);
  color: var(--ivory);
}

.about-mv__card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.about-mv__card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* About Story Redesign */
.about-story {
  padding: 100px 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-story__image {
  position: relative;
}

.about-story__img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-story__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-story__badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--plum);
  color: var(--ivory);
  border-radius: 18px;
  padding: 20px 28px;
  box-shadow: 0 10px 30px rgba(144, 95, 126, 0.25);
  z-index: 3;
}

.about-story__badge strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.about-story__badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-story__text h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-story__text h2 .accent {
  color: var(--plum);
}

.about-story__text p {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.about-story__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about-story__stat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 6px;
}

.about-story__stat span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* What Sets Us Apart Redesign */
.about-features {
  padding: 100px 0;
  background: #fdfafc;
  border-top: 1px solid var(--line);
}

.about-features__head {
  text-align: center;
  margin-bottom: 64px;
}

.about-features__head h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.about-features__head h2 .accent {
  color: var(--plum);
}

.about-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-features__item {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(90, 64, 48, 0.02);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.35s var(--ease);
}

.about-features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(90, 64, 48, 0.08);
  border-color: rgba(144, 95, 126, 0.15);
}

.about-features__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(144, 95, 126, 0.06);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.about-features__item:hover .about-features__icon {
  background: var(--plum);
  color: var(--ivory);
}

.about-features__item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.about-features__item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Responsiveness for About Page */
@media (max-width: 992px) {
  .about-hero-new__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
  }

  .about-hero-new__right {
    order: 2;
  }

  .about-hero-new__left {
    order: 1;
  }
  
  .about-hero-new__left .lede {
    margin-left: 0;
    margin-right: 0;
  }
  
  .about-hero-new__frame img {
    height: 320px;
  }
  
  .about-hero-new__right .frame-bg {
    left: 0;
    top: 16px;
  }
  
  .about-mv__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-story__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-story__image img {
    height: 360px;
    object-position: top center;
  }
  
  .about-features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* About CTA Banner */
.about-cta__inner {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 32px rgba(90, 64, 48, 0.08);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-cta__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 20ch;
}

.about-cta__text p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-cta__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 40px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

/* About Page Responsive */
@media (max-width: 900px) {
  .about-hero {
    min-height: 50vh;
  }

  .about-mv__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__image img {
    height: 350px;
    object-position: top center;
  }

  .about-story__stats {
    gap: 20px;
  }

  .about-features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }

  .about-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .about-cta__actions .btn {
    width: 100%;
  }
}

/* Blog Section ------------------------------------------------------------ */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

.blog-section {
  padding: var(--section-y) 0;
}

.blog-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.blog-section__header-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 16px;
  color: var(--charcoal);
  max-width: 16ch;
}

.blog-section__header-right p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 16px 16px 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.5s var(--ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 20px 24px 28px;
}

.blog-card__body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 16px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
}

.blog-card__link:hover {
  color: var(--plum);
}

.blog-card__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.blog-card__link:hover .blog-card__arrow {
  background: var(--plum);
}

@media (max-width: 900px) {
  .blog-section__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.breadcrumb {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--plum);
}

/* Marquee / trust strip -------------------------------------------------- */
.strip {
  background: var(--charcoal);
  color: var(--sand);
  padding: 22px 0;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 64px;
}

.strip__track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
}

/* Editorial split -------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 88px;
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.split__badge {
  position: absolute;
  right: -26px;
  bottom: 40px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  max-width: 230px;
}

.split__badge strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  line-height: 1;
  color: var(--plum);
}

.split__badge span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  gap: 0;
}

.value-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.value-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.value-list .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--mauve);
  letter-spacing: 0.08em;
}

.value-list h4 {
  margin-bottom: 4px;
}

.value-list p {
  font-size: 0.94rem;
  margin: 0;
}

/* Service cards ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(252, 250, 247, 0.92);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
}

.service-card__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card__body p {
  font-size: 0.94rem;
  margin: 0;
}

.service-card__foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.service-card__foot button {
  color: var(--plum);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
}

.service-card__foot button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Filters ---------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filters button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}

.filters button:hover {
  border-color: var(--plum);
  color: var(--plum);
}

.filters button.is-active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory);
}

/* Featured experience ---------------------------------------------------- */
.feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}

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

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(24, 20, 18, 0.85), rgba(24, 20, 18, 0.15));
}

.feature__body {
  position: relative;
  z-index: 2;
  padding: 64px;
  max-width: 620px;
}

.feature__body h2,
.feature__body h3 {
  color: var(--ivory);
}

.feature__body p {
  color: rgba(252, 250, 247, 0.8);
  margin-top: 18px;
}

/* Gallery ---------------------------------------------------------------- */
.gallery {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  cursor: grab;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery figure {
  margin: 0;
  flex: 0 0 clamp(240px, 27vw, 360px);
  scroll-snap-align: start;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gallery figcaption {
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Testimonials ----------------------------------------------------------- */
.testimonials {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 min(430px, 84vw);
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--charcoal);
}

.testimonial figcaption {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: auto;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--champagne);
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.35s var(--ease);
}

.slider-controls button:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory);
}

/* CTA band --------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
  padding: 132px 0;
}

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

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.66);
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--ivory);
  max-width: 20ch;
  margin-inline: auto;
}

.cta p {
  color: rgba(252, 250, 247, 0.8);
  margin: 22px auto 0;
  max-width: 52ch;
}

.cta .hero__actions {
  justify-content: center;
}

/* Cards / info ----------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.card h3 {
  margin-bottom: 12px;
}

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

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--plum);
}

/* Blog ------------------------------------------------------------------- */
.post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.post-featured img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.post-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 1s var(--ease);
}

.post-card__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.post-card:hover img {
  transform: scale(1.04);
}

.post-card__meta {
  display: flex;
  gap: 14px;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin: 22px 0 10px;
}

.post-card h3 {
  font-size: 1.34rem;
}

.post-card p {
  font-size: 0.94rem;
  margin-top: 10px;
}

.article {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.85;
}

.article h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 52px 0 18px;
}

.article h3 {
  margin: 40px 0 14px;
}

.article img {
  border-radius: var(--radius-lg);
  margin: 44px 0;
}

.article blockquote {
  margin: 46px 0;
  padding: 0 0 0 30px;
  border-left: 2px solid var(--plum);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--charcoal);
}

.article ul {
  padding-left: 20px;
  color: var(--ink-soft);
}

.article li {
  margin-bottom: 10px;
}

/* Forms ------------------------------------------------------------------ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color 0.3s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum);
  outline: none;
}

.field .error {
  font-size: 0.75rem;
  color: #a4423a;
  min-height: 1em;
  letter-spacing: 0;
  text-transform: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #a4423a;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.form-success {
  border: 1px solid var(--olive);
  background: rgba(120, 143, 69, 0.09);
  color: var(--earth);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-top: 18px;
}

/* Modal ------------------------------------------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.62);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transform: translateY(14px) scale(0.99);
  transition: transform 0.45s var(--ease);
}

.modal.is-open .modal__panel {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.modal__close:hover {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}

/* Multi-step progress indicator and form steps */
.modal__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 24px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.step-indicator.is-active {
  color: var(--plum);
}

.step-indicator.is-active .step-num {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.form-step {
  grid-column: 1 / -1;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.form-step.is-hidden {
  display: none !important;
  opacity: 0;
  transform: translateX(10px);
}

/* Contact ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.contact-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 6px;
}

.contact-list a:hover {
  color: var(--plum);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer ----------------------------------------------------------------- */
.footer {
  background: #1a1714;
  color: rgba(233, 222, 208, 0.7);
  padding: 80px 0 32px;
}

.footer a:hover {
  color: var(--ivory);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(233, 222, 208, 0.1);
}

.footer h4 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-size: 0.88rem;
}

.footer .brand__name {
  color: var(--ivory);
}

.footer .brand__tag {
  color: rgba(233, 222, 208, 0.5);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  text-align: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(233, 222, 208, 0.5);
}

/* Footer Branches Row */
.footer__branches {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(233, 222, 208, 0.12);
}

.footer__branches-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
}

.footer__branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__branch {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__branch strong {
  font-size: 0.9rem;
  color: var(--ivory);
}

.footer__branch span {
  font-size: 0.82rem;
  color: rgba(233, 222, 208, 0.6);
  line-height: 1.5;
}

.footer__branch a {
  font-size: 0.82rem;
  color: rgba(233, 222, 208, 0.75);
  transition: color 0.3s var(--ease);
}

.footer__branch a:hover {
  color: var(--ivory);
}

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

  .footer__branches-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile sticky bar ------------------------------------------------------ */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  background: rgba(252, 250, 247, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.mobile-bar a,
.mobile-bar button {
  flex: 1;
  padding: 15px 6px;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.mobile-bar > *:not(:last-child) {
  border-right: 1px solid var(--line);
}

.mobile-bar .is-primary {
  background: var(--plum);
  color: var(--ivory);
}

/* Utility ---------------------------------------------------------------- */
.placeholder {
  color: var(--mauve);
  font-style: italic;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--plum);
  color: var(--ivory);
  padding: 12px 18px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

[hidden] {
  display: none !important;
}

/* Menu open: header sits on the cream overlay, so switch marks to ink ----- */
body:has(.mobile-menu.is-open) .header--overlay:not(.is-scrolled) .brand__name,
body:has(.mobile-menu.is-open) .header--overlay:not(.is-scrolled) .brand__tag {
  color: var(--charcoal);
}

body:has(.mobile-menu.is-open) .header--overlay:not(.is-scrolled) .burger span {
  background: var(--charcoal);
}

/* Sticky bar must never sit over the menu or booking modal */
body.no-scroll .mobile-bar {
  display: none;
}

/* Locations section */
.locations-section {
  padding: 80px 0;
  background: var(--cream);
}

.location-block {
  margin-bottom: 80px;
}

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

.location-block__header {
  text-align: center;
  margin-bottom: 40px;
}

.location-block__cursive {
  font-family: 'Pinyon Script', cursive;
  font-size: 4rem;
  color: var(--plum);
  margin: 0;
  line-height: 1;
}

.location-block__sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}

.location-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .location-block__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.location-block__map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(90, 64, 48, 0.08);
  aspect-ratio: 1.6 / 1;
  background: var(--sand);
  border: 1px solid var(--line);
}

.location-block__map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-block__direction-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f4b400; /* Yellow */
  color: #ffffff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s var(--ease), transform 0.2s var(--ease);
  z-index: 10;
}

.location-block__direction-btn:hover {
  background: #db9d00;
  transform: translateY(-2px);
  color: #ffffff;
}

.location-block__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-block__info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.location-block__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
  background: transparent;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.location-block__info-item:hover .location-block__info-icon {
  transform: scale(1.05);
  background-color: var(--champagne);
  color: var(--ivory);
}

.location-block__info-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.location-block__info-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

.location-block__info-item strong a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.location-block__info-item strong a:hover {
  color: var(--plum);
  border-bottom-color: var(--plum);
}

/* Phone Interactive Popover */
.phone-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.phone-interactive-popover {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(90, 64, 48, 0.15);
  display: flex;
  flex-direction: column;
  padding: 6px;
  z-index: 100;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.phone-dropdown-wrapper.is-open .phone-interactive-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.phone-popover-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  border-radius: 8px;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.phone-popover-item svg {
  flex-shrink: 0;
}

.phone-popover-item:hover {
  background-color: var(--cream);
}

.phone-popover-item.call-item:hover {
  color: var(--plum) !important;
}

.phone-popover-item.whatsapp-item:hover {
  color: var(--olive) !important; /* Green */
}

/* Hero Content Custom Additions */
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(252, 250, 247, 0.78);
  margin-bottom: 20px;
}

.hero__explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid rgba(252, 250, 247, 0.4);
  padding-bottom: 2px;
  margin-left: 10px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.hero__explore-link svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.hero__explore-link:hover {
  color: var(--champagne);
  border-bottom-color: var(--champagne);
}

.hero__explore-link:hover svg {
  transform: translateX(4px);
}



/* Page Loader ------------------------------------------------------------ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
}

.page-loader__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.page-loader__spinner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sand);
  border-top-color: var(--plum);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}

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

/* Franchise Page --------------------------------------------------------- */

/* Hero */
.fran-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 0 0 50px 50px;
}

.fran-hero__media {
  position: absolute;
  inset: 0;
}

.fran-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fran-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 20, 18, 0.85) 0%,
    rgba(24, 20, 18, 0.5) 50%,
    rgba(24, 20, 18, 0.4) 100%
  );
}

.fran-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  color: var(--ivory);
  display: flex;
  align-items: flex-start;
}

.fran-hero__inner .fran-hero__content {
  max-width: 560px;
  text-align: left;
}

.fran-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ivory);
  text-align: left;
}

.fran-hero p {
  color: rgba(252, 250, 247, 0.8);
  max-width: 44ch;
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.fran-hero .btn {
  margin-top: 32px;
}

.fran-hero__tagline {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 20px;
  text-align: left;
}

/* Section Head */
.fran-section-head {
  margin-bottom: 56px;
}

.fran-section-head h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 20ch;
}

.fran-section-head__sub {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 56ch;
}

.fran-section-head--center {
  text-align: center;
}

.fran-section-head--center h2 {
  max-width: none;
}

/* Why Franchise Points */
.fran-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fran-why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(90, 64, 48, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fran-why-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(90, 64, 48, 0.12);
}

.fran-why-point__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.fran-why-point h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.fran-why-point p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Investment & ROI */
.fran-invest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fran-invest__content .about-tag {
  margin-bottom: 14px;
}

.fran-invest__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.fran-invest__intro {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.fran-invest__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fran-invest__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 3px solid var(--plum);
}

.fran-invest__list li strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

.fran-invest__list li span {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.fran-invest__note {
  margin-top: 24px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-soft);
}

.fran-invest__image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(90, 64, 48, 0.12);
}

.fran-invest__image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* Support System */
.fran-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.fran-support-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 28px rgba(90, 64, 48, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fran-support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(90, 64, 48, 0.12);
}

.fran-support-card__num {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--plum);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 14px;
}

.fran-support-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.fran-support-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Franchise Form */
.fran-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.fran-form-content h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--ivory);
}

.fran-form-content p {
  margin-top: 14px;
  color: rgba(233, 222, 208, 0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

.fran-form-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 200px;
}

.fran-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fran-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(252, 250, 247, 0.06);
  border: 1px solid rgba(252, 250, 247, 0.15);
  border-radius: 20px;
  padding: 32px;
}

.fran-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fran-form__field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(252, 250, 247, 0.7);
}

.fran-form__field input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(252, 250, 247, 0.2);
  background: rgba(252, 250, 247, 0.08);
  color: var(--ivory);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.fran-form__field input::placeholder {
  color: rgba(252, 250, 247, 0.4);
}

.fran-form__field input:focus {
  outline: none;
  border-color: var(--mauve);
  background: rgba(252, 250, 247, 0.12);
}

.fran-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fran-form .btn--primary {
  margin-top: 8px;
}

/* How It Works Steps */
.fran-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.fran-step {
  text-align: center;
  max-width: 260px;
  flex: 1;
}

.fran-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(110, 74, 112, 0.1);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.fran-step__num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 8px;
}

.fran-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.fran-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.fran-step__connector {
  width: 60px;
  height: 2px;
  background: var(--line);
  margin-top: 32px;
  flex-shrink: 0;
}

/* Closing CTA Band */
.fran-cta {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.fran-cta__media {
  position: absolute;
  inset: 0;
}

.fran-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fran-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 18, 0.7);
}

.fran-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
}

.fran-cta__inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  max-width: 20ch;
  margin: 0 auto;
}

.fran-cta__inner .btn {
  margin-top: 32px;
}

/* Franchise Responsive */
@media (max-width: 900px) {
  .fran-why-grid {
    grid-template-columns: 1fr;
  }

  .fran-invest {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fran-invest__image {
    order: -1;
  }

  .fran-invest__image img {
    min-height: 280px;
  }

  .fran-form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fran-form-image {
    display: none;
  }

  .fran-form__row {
    grid-template-columns: 1fr;
  }

  .fran-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .fran-step__connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }
}

/* Footer logo: white rounded background (footer only) */
.footer .brand img {
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

/* Footer social icons */
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
