:root {
  --page-bg: #ffffff;
  --soft-cream: #f7f0ed;
  --panel-bg: #f9f4f2;
  --white: #ffffff;
  --text: #211d1d;
  --muted: #666062;
  --line: rgba(15, 12, 12, 0.09);
  --rose: #ec7d7f;
  --rose-deep: #d7645e;
  --sand: #f0e1c3;
  --pink-soft: #f8dfe2;
  --shadow: 0 18px 35px rgba(38, 24, 24, 0.08);
  --site-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.ann-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  height: 42px;
  background: #93d7d1;
  color: #123f3e;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.ann-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ed7a7e;
  color: #fff;
  font-weight: 700;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 18px 0 12px;
  background: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 30;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy small {
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4d4747;
  font-size: 0.82rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.main-nav a:hover::after {
  opacity: 1;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(214, 100, 94, 0.25);
}

.menu-toggle {
  display: none;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(28, 24, 24, 0.12);
  border-radius: 14px;
  background: var(--white);
  padding: 10px 8px;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(226, 128, 122, 0.12);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  flex-shrink: 0;
  background: #1f1a1a;
  margin: 0;
  border-radius: 2px;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -18px 0 36px rgba(18, 12, 10, 0.12);
  padding: 22px 18px 26px;
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 2000;
}

.side-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.side-menu-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(236, 125, 127, 0.12);
  color: var(--rose-deep);
  font-size: 2rem;
  cursor: pointer;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

.side-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.side-phone {
  width: 100%;
}

.page-wrap {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 18px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  padding: 42px 32px 34px;
  margin-bottom: 72px;
  background: linear-gradient(135deg, rgba(245, 198, 202, 0.38), rgba(255,255,255,0.73) 45%, rgba(255,255,255,0.18) 100%);
  border-radius: 30px;
  box-shadow: 0 14px 30px rgba(219, 127, 125, 0.08);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #1a1717;
}

.hero-copy p {
  margin: 0 0 18px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 24px rgba(214, 100, 94, 0.2);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  height: 560px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 24px auto 70px;
  padding: 10px 14px 8px;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 16px 8px;
}

.stat-box strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.stat-box span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.awards-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: calc(var(--site-width) - 100px);
  margin: 30px auto 72px;
  padding: 26px 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(48, 36, 33, 0.06);
}

.award-copy {
  flex: 1;
}

.mini-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.award-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.award-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(248, 223, 226, 0.75);
  border: 1px solid rgba(15,12,12,0.05);
  text-align: center;
  color: #2b2323;
}

.award-badge {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-item small {
  display: block;
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  max-width: var(--site-width);
  margin: 42px auto 78px;
  padding: 32px;
  background: var(--white);
  border-radius: 28px;
}

.video-copy {
  padding-right: 16px;
}

.video-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.1rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.video-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d1a1a;
  font-weight: 600;
}

.tiny-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ec7d7f;
  color: #fff;
  font-size: 0.66rem;
}

.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dfe8d8;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(242, 113, 123, 0.9);
  color: #fff;
  font-size: 2.1rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.packages {
  max-width: var(--site-width);
  margin: 40px auto 0;
  padding: 32px 32px 30px;
  background: var(--white);
  border-radius: 28px;
}

.section-heading {
  text-align: center;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.package-copy {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.package-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.story-tiles {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  max-width: var(--site-width);
  margin: 14px auto 82px;
  padding: 0 32px;
}

.story-gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mini-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #eee;
}

.mini-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-one { height: 230px; }
.img-two { height: 180px; }
.img-three { height: 180px; }

.story-video-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #14191d;
}

.story-video-header {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.shorts-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.media-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.story-video-thumb {
  width: 100%;
  height: 430px;
}

.story-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.story-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: none;
  border-radius: 50%;
  background: rgba(236, 75, 102, 0.92);
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 23px 36px rgba(0, 0, 0, 0.28);
}

.story-video-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, rgba(8,8,8,0), rgba(9,9,11,0.8));
  color: #fff;
  z-index: 2;
}

.brand-tag {
  font-weight: 700;
  font-size: 0.8rem;
}

.social-tag {
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
}

.story-copy-box {
  max-width: 420px;
}

.story-copy-box .eyebrow {
  font-size: 0.72rem;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.story-copy-box h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.story-copy-box p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.story-copy-box a {
  color: inherit;
}

.small-button {
  margin-top: 6px;
  min-width: 155px;
  justify-content: center;
}

.reasons-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  max-width: var(--site-width);
  margin: 42px auto 86px;
  padding: 0 32px;
  align-items: center;
}

.reasons-copy {
  max-width: 520px;
}

.reasons-copy .eyebrow {
  color: var(--muted);
  margin-bottom: 16px;
}

.reasons-copy h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 22px 26px;
  margin-top: 20px;
}

.reason-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(236, 125, 127, 0.12);
  color: var(--rose-deep);
  font-size: 1rem;
}

.reason-box h4 {
  margin: 0;
  font-size: 1.1rem;
}

.reason-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reason-media {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.media-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f3e3b4;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.media-video-header {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
}

.media-video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  font-size: 2rem;
}

.media-video-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(10, 11, 11, 0.72));
  color: #fff;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-photo {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

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

.photo-top { height: 238px; }
.photo-bottom { height: 170px; }

.review-section {
  max-width: var(--site-width);
  margin: 52px auto 82px;
  padding: 26px 32px 0;
  background: rgba(255, 255, 255, 0.08);
}

.review-head {
  text-align: center;
  margin-bottom: 28px;
}

.review-head p {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.review-meta {
  display: flex;
  justify-content: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-deep);
  display: inline-block;
}

.review-slider {
  overflow: hidden;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.review-card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 22px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(20, 16, 16, 0.06);
  box-shadow: 0 10px 22px rgba(25, 18, 17, 0.04);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(38, 24, 24, 0.08);
    padding-left: 18px;
    padding-right: 18px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    z-index: 2100;
  }

  .header-actions .phone-pill {
    display: none;
  }
}

@media (max-width: 720px) {
  .review-slider {
    overflow: hidden;
    touch-action: pan-y;
  }

  .review-cards {
    display: flex;
    gap: 0;
    width: 100%;
    margin-top: 24px;
    transition: transform 0.45s ease;
  }

  .review-card-box {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    min-height: 320px;
    border-radius: 18px;
  }
}

.quote-mark {
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 8px;
}

.review-card-box h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.review-card-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.review-stars {
  margin: 8px 0 12px;
  color: #f1b34f;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 700;
}

.review-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  width: 140px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(24, 20, 19, 0.08);
  background: rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
  margin: 0 auto 30px;
}

.feature-card {
  padding: 18px 18px 12px;
  background: rgba(255,255,255,0.14);
  border-radius: 18px;
  border: 1px solid rgba(24, 20, 19, 0.06);
  text-align: center;
}

.feature-thumb {
  width: 128px;
  height: 128px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 18px rgba(34, 22, 19, 0.08);
}

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

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-banner {
  position: relative;
  overflow: hidden;
  height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-button {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  padding: 0.9rem 1.7rem;
  font-size: 0.95rem;
}

.faq-section {
  max-width: var(--site-width);
  margin: 0 auto 40px;
  padding: 30px 32px;
  background: var(--white);
  border-radius: 28px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: flex-start;
  padding-top: 22px;
}

.faq-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.faq-intro h3 {
  margin: 0 0 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.faq-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(214, 100, 94, 0.2);
}

.faq-phone a {
  color: #fff;
}

.phone-icon {
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(34, 24, 24, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  padding: 18px 0;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

.faq-arrow {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin: 0 4px;
  color: rgba(33, 29, 29, 0.6);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.final-cta {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 32px;
  padding: 64px 0 88px;
  background:
    linear-gradient(90deg, rgba(236, 126, 127, 0.78), rgba(236, 185, 126, 0.72)),
    url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.final-cta-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  margin: 0 auto 18px;
  max-width: 820px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.final-cta .banner-button {
  position: static;
  transform: none;
  padding: 0.95rem 1.9rem;
  min-width: 260px;
}

.final-phone {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  box-shadow: none;
}

.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

section.reveal-visible,
.review-section.reveal-visible,
.faq-section.reveal-visible,
.final-cta.reveal-visible,
.site-footer.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  padding: 34px 18px 20px;
  background: #f5f1ee;
  color: #291f1f;
  border-top: 1px solid rgba(24, 20, 19, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr;
  gap: 24px 28px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 6px 0 18px;
  border-bottom: 1px solid rgba(24, 20, 19, 0.12);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b2424;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(41, 31, 31, 0.9);
  line-height: 1.5;
}

.footer-contact {
  align-items: flex-start;
}

.footer-contact .footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 12px;
}

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

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(236, 125, 127, 0.1);
  border: none;
  font-size: 1.8rem;
  color: var(--rose-deep);
}

.footer-brand .brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand .brand-copy span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-brand .brand-copy small {
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(236, 125, 127, 0.8);
  color: var(--rose-deep);
  font-size: 0.8rem;
}

.footer-bottom {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-top: 6px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(41, 31, 31, 0.7);
}

.review-section {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 36px 18px 0;
}

.review-head {
  text-align: center;
}

.review-head p {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.review-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 18px auto 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-meta .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-block;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 24px;
}

.review-card-box {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(23, 19, 18, 0.06);
  border-radius: 20px;
  padding: 22px 20px 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 10px;
}

.review-card-box h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.review-card-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.review-stars {
  color: #f7b258;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin: 10px 0 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 700;
}

.review-play {
  display: inline-flex;
  justify-content: center;
  margin: 22px auto 0;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(24,20,19,0.08);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
  }

  .hero,
  .video-section,
  .story-tiles,
  .reasons-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .feature-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .awards-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-copy-box {
    max-width: 100%;
  }

  .reason-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ann-bar {
    gap: 12px;
    padding: 0 12px;
    text-align: center;
    line-height: 1.4;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-visual {
    height: 440px;
  }

  .stats,
  .feature-grid,
  .footer-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    height: 300px;
  }

  .video-panel {
    min-height: 340px;
  }

  .story-tiles,
  .reasons-section,
  .reason-media {
    display: block;
  }

  .story-gallery,
  .story-copy-box,
  .reason-media,
  .media-stack {
    width: 100%;
  }

  .story-video-panel,
  .media-video-card {
    margin-bottom: 18px;
  }
}


.avatar-one { background: #f7d7d0; }
.avatar-two { background: #dfeaf8; }
.avatar-three { background: #e9ebd9; }

.showcase-copy {
  padding-left: 24px;
}

.cta-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.photo-story {
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(245,228,219,0.4));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.review-card {
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.review-card p {
  margin-top: 0;
}

.review-card h4 {
  margin: 16px 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-message.success {
  color: #1a6f47;
}

.form-message.error {
  color: #b33030;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  padding: 32px 22px;
  background: linear-gradient(135deg, #f4f1e9, #efe6d6);
  border: 1px solid var(--line);
  border-radius: 30px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255,255,255,0.5);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 29, 26, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 12px 10px;
  color: var(--muted);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 30px;
}

.footer-links h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .topbar,
  .site-footer,
  .story-block,
  .split-showcase,
  .photo-story,
  .contact-panel,
  .hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    display: none;
  }

  .stats-bar,
  .feature-row,
  .timeline-grid,
  .review-strip,
  .footer-links {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .hero-copy {
    padding-left: 0;
  }

  .showcase-copy,
  .photo-copy,
  .story-copy {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 22px, 1200px);
  }

  .hero {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .stats-bar,
  .feature-row,
  .timeline-grid,
  .review-strip,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {
  .faq-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .faq-list,
  .faq-item {
    width: 100%;
    min-width: 0;
  }

  .faq-question {
    font-size: 0.93rem;
    gap: 10px;
  }

  .faq-arrow {
    flex-shrink: 0;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}
