@font-face {
  font-family: "Maqena";
  src: url("/fonts/Maqena-ARynx.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoveSeed";
  src: url("/fonts/LoveSeed-z8EVX.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #070506;
  --black-soft: #14090d;
  --gold: #ddb06b;
  --gold-soft: #f3d6a7;
  --blush: #f2c4cd;
  --rose: #d994a6;
  --text-main: #f8f3f5;
  --text-muted: rgba(248, 243, 245, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --font-heading: "Maqena", serif;
  --font-body: "Inter", sans-serif;
  --container: 1380px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(217, 148, 166, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(221, 176, 107, 0.12), transparent 24%),
    linear-gradient(180deg, #090607 0%, #0c0609 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

iframe,
video,
canvas,
svg {
  max-width: 100%;
}

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

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

.section-shell,
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.footer-faq-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.96;
  color: var(--gold-soft);
}

.section-heading p,
.footer-brand p,
.footer-col p {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 16px;
}

.eyebrow,
.section-kicker,
.mini-label,
.service-tag {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 214, 167, 0.86);
}

.script-accent {
  font-family: "LoveSeed", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.scrolled {
  background: rgba(8, 5, 7, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.nav-brand span {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 245, 0.78);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  min-width: 0;
}

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 243, 245, 0.95);
  transition: color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

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

.phone-link {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary {
  color: #1a1113;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 42%, var(--gold) 100%);
  box-shadow:
    0 2px 10px #000000,
    0 14px 34px rgba(217, 148, 166, 0.24);
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow:
    0 4px 16px #000000,
    0 20px 44px rgba(217, 148, 166, 0.32);
}

.btn-outline {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(243, 214, 167, 0.45);
  box-shadow: 0 2px 10px #000000;
}

.btn-outline:hover {
  background: rgba(243, 214, 167, 0.12);
  border-color: rgba(243, 214, 167, 0.82);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* SHARED VALUE STRIP */
.value-strip {
  position: relative;
  z-index: 3;
  margin-top: 0;
  overflow: hidden;
}

.value-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(135deg, #f5d7dc 0%, #efc1ca 52%, #f1d4ae 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-item {
  min-width: 0;
  padding: 42px 28px 40px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.value-item:last-child {
  border-right: none;
}

.value-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1113;
}

.value-item p {
  margin: 0 auto;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26, 17, 19, 0.8);
}

/* BUTTON ANIMATION */
.btn-primary.animate::before,
.btn-primary.animate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn-primary.animate::before {
  box-shadow: 0 0 0 0 rgba(242, 196, 205, 0.45);
  animation: pulseRing 0.7s ease-out forwards;
}

@keyframes pulseRing {
  from {
    box-shadow: 0 0 0 0 rgba(242, 196, 205, 0.45);
  }
  to {
    box-shadow: 0 0 0 18px rgba(242, 196, 205, 0);
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* FOOTER */
.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at top left, rgba(217, 148, 166, 0.06), transparent 28%),
    linear-gradient(180deg, #070506 0%, #050304 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin-bottom: 16px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.footer-col a {
  color: inherit;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-social-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 5, 8, 0.8);
  border: 1.5px solid rgba(243, 214, 167, 0.25);
  color: var(--text-main);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 148, 166, 0.6);
  background:
    linear-gradient(135deg, rgba(242, 196, 205, 0.18), rgba(221, 176, 107, 0.12)),
    rgba(12, 6, 9, 0.95);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(217, 148, 166, 0.18);
}

.footer-social-icon:active {
  transform: scale(0.94);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

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

.footer-faq-trigger {
  appearance: none;
  border: 1px solid rgba(243, 214, 167, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-faq-trigger:hover {
  background: rgba(243, 214, 167, 0.1);
  border-color: rgba(243, 214, 167, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 243, 245, 0.52);
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 243, 245, 0.62);
}

.footer-powered-by img {
  width: 40px;
  object-fit: contain;
  display: block;
}

.footer-powered-by:hover {
  color: var(--gold-soft);
}

/* FOOTER FAQ MODAL */
.footer-faq-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.footer-faq-modal.is-open {
  display: block;
}

.footer-faq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.footer-faq-panel {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: min(82vh, 900px);
  margin: 6vh auto 0;
  overflow: auto;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 10, 15, 0.97), rgba(10, 5, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.footer-faq-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 214, 167, 0.86);
}

.footer-faq-close {
  appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-faq-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.footer-faq-list {
  display: grid;
  gap: 16px;
}

.footer-faq-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-faq-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text-main);
}

.footer-faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-shell {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 0;
  }

  .nav-shell,
  .section-shell {
    width: calc(100% - 28px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10, 8, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    overflow-x: hidden;
  }

  .main-nav.show {
    display: flex;
  }

  .phone-link {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 18px;
    font-size: 12px;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .value-item {
    padding: 28px 16px;
  }

  .value-item h3 {
    font-size: 17px;
  }

  .value-item p {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell {
    width: calc(100% - 24px);
  }

  .nav-brand {
    max-width: calc(100vw - 170px);
    overflow: hidden;
  }

  .nav-brand span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.18em;
    font-size: 12px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .btn {
    width: min(100%, 320px);
    min-height: 52px;
    padding: 0 20px;
    font-size: 13.5px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-strip {
    margin-top: 0;
  }

  .value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .value-item {
  padding: 18px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: none;
}

.value-item:last-child {
  border-right: none;
}

  .value-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
    letter-spacing: 0;
  }

  .value-item p {
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-social-icon {
    width: 56px;
    height: 56px;
  }

  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-faq-panel {
    margin-top: 4vh;
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .footer-faq-item {
    padding: 16px 14px 14px;
  }

  .footer-faq-item h4 {
    font-size: 15px;
  }

  .footer-faq-item p {
    font-size: 14px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-link {
    font-size: 16px;
  }
  
}