@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-v37-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-v37-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-v37-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-v37-latin_latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-v37-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Allura";
  src: url("assets/fonts/allura-v23-latin_latin-ext-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --burgundy: #91093d;
  --burgundy-dark: #6f052d;
  --ink: #101827;
  --muted: #5d6470;
  --cream: #fff8f2;
  --rose: #f8e6e8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 39, 0.11);
  --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 58%, #fffaf6 100%);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(22px, 5vw, 64px);
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(145, 9, 61, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--burgundy-dark);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.brand-name {
  display: block;
  font-family: "Allura", cursive;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 0.9;
}

.brand-subline {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-weight: 700;
}

.main-nav a:hover { color: var(--burgundy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(145, 9, 61, 0.16);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  border-color: rgba(16, 24, 39, 0.24);
}

.btn-light {
  color: var(--burgundy-dark);
  background: var(--white);
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  padding: 22px clamp(22px, 5vw, 64px) 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(145, 9, 61, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255,248,242,0.98) 0%, rgba(255,255,255,0.82) 100%);
}

.eyebrow {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--burgundy-dark);
  background: var(--rose);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero h1::first-line { color: var(--burgundy-dark); }

.underline {
  width: 180px;
  height: 10px;
  margin: 22px 0 26px;
  border-bottom: 4px solid var(--burgundy);
  border-radius: 50%;
  transform: skewX(-20deg);
}

.underline.small {
  width: 108px;
  height: 8px;
  margin: 8px 0 0;
}

.hero-text {
  max-width: 560px;
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 34px 0 42px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 22px;
  max-width: 820px;
}

.trust-row div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
}

.trust-row span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.trust-row strong,
.trust-row small { display: block; }

.trust-row strong {
  font-size: 14px;
  line-height: 1.2;
}

.trust-row small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.25;
}

.hero-image {
  align-self: end;
  justify-self: center;
  width: min(520px, 100%);
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 12% -5% -5% 8%;
  border-radius: 42% 58% 34% 66% / 45% 35% 65% 55%;
  background: rgba(145, 9, 61, 0.10);
  filter: blur(2px);
}

.hero-image img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.section {
  padding: 58px clamp(22px, 5vw, 64px);
}

.section-heading h2,
.about-box h2,
.contact-box h2 {
  margin: 0;
  color: var(--burgundy-dark);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.centered {
  text-align: center;
}

.centered .underline { margin-left: auto; margin-right: auto; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 34px;
}

.service-card {
  position: relative;
  min-height: 460px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -30px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--rose);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.service-title .icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--burgundy);
  font-size: 27px;
}

.service-title h3 {
  margin: 0;
  color: var(--burgundy-dark);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
}

.service-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
}

.service-card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  box-shadow: var(--shadow);
}

.value-strip div {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.28);
}

.value-strip div:last-child { border-right: 0; }

.value-strip span {
  font-size: 40px;
  line-height: 1;
}

.value-strip strong {
  margin-top: 10px;
  line-height: 1.25;
  font-size: 18px;
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: stretch;
}

.about-box,
.contact-box {
  padding: clamp(34px, 5vw, 64px);
}

.about-box {
  background: linear-gradient(135deg, var(--cream), #fff);
}

.about-box p {
  max-width: 600px;
  margin: 18px 0 0;
  font-size: 18px;
}

.script-note {
  font-family: "Allura", cursive;
  color: var(--burgundy);
  font-size: clamp(34px, 4vw, 52px) !important;
  line-height: 1.05;
}

.contact-box {
  color: var(--white);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.contact-box h2 { color: var(--white); }

.contact-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
}

.contact-list a:hover { text-decoration: underline; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.process-grid div {
  padding: 26px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 24, 39, 0.08);
}

.process-grid strong {
  color: var(--burgundy-dark);
  font-size: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 5vw, 64px);
  color: var(--white);
  background: var(--burgundy-dark);
  font-weight: 600;
}

.site-footer p { margin: 0; }

.site-footer a { text-decoration: underline; }

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-page h1 {
  color: var(--burgundy-dark);
  font-size: 44px;
  line-height: 1.1;
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--burgundy-dark);
}

.legal-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--burgundy-dark);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-image {
    max-width: 420px;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .about-contact,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px;
  }

  .brand-name {
    font-size: 42px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 16px 18px 38px;
    min-height: auto;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .trust-row,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.28);
  }

  .section {
    padding: 42px 18px;
  }

  .service-card {
    padding: 26px 20px;
  }

  .service-title {
    align-items: flex-start;
  }

  .service-title h3 {
    font-size: 28px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  box-shadow: 0 12px 28px rgba(16, 24, 39, 0.18);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(16, 24, 39, 0.24);
}

@media (max-width: 640px) {
  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}
