:root {
  --bg: #fff8fb;
  --bg-soft: #ffeef5;
  --surface: #ffffff;
  --ink: #2a1f24;
  --ink-muted: #6b5560;
  --accent: #e84d8a;
  --accent-deep: #c93672;
  --accent-soft: #f9c2d6;
  --line: rgba(42, 31, 36, 0.1);
  --radius: 1.25rem;
  --shadow: 0 18px 50px rgba(200, 70, 120, 0.12);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 68rem;
  --header-h: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--bg-soft) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 40%, #fff0f6 0%, transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--surface);
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 251, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.section__inner,
.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.65rem;
  }

  .site-header {
    height: auto;
  }

  .nav {
    justify-content: flex-start;
    font-size: 0.85rem;
  }
}

.nav a {
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(232, 77, 138, 0.35);
}

.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 77, 138, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 31, 36, 0.15) 0%, rgba(42, 31, 36, 0.55) 55%, rgba(42, 31, 36, 0.78) 100%),
    linear-gradient(90deg, rgba(42, 31, 36, 0.55) 0%, rgba(42, 31, 36, 0.2) 55%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 6rem) 0 clamp(2.5rem, 6vh, 4rem);
  max-width: 36rem;
  animation: heroIn 0.9s ease both;
}

.hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__text {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-muted);
}

.gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }

  .gallery__item:first-child {
    grid-row: 1 / span 2;
  }
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

.pricing {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
}

.price {
  padding: 0.25rem 0 0.5rem;
  border-top: 2px solid var(--accent);
}

.price__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
}

.price__amount {
  margin: 0.35rem 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-deep);
}

.price__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
}

.price__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.price__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 2px var(--accent);
}

.price__note {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.provider {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.provider strong {
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.site-footer__inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }
}

.site-footer__brand {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
}

.site-footer__meta,
.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.site-footer__links {
  display: grid;
  gap: 0.45rem;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-main {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 6rem);
}

.page-main h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.02em;
}

.placeholder {
  max-width: 40rem;
  color: var(--ink-muted);
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.legal-doc {
  max-width: 46rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-doc__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-doc__party {
  margin: 0 0 0.75rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.legal-doc__header h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.02em;
}

.legal-doc__subtitle {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.legal-doc__date {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.legal-doc h2 {
  margin: 2rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.legal-doc p {
  margin: 0 0 0.85rem;
}

.legal-doc ul {
  margin: 0 0 0.95rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc a {
  color: var(--accent-deep);
  text-underline-offset: 2px;
}

.legal-doc__defs,
.legal-doc__details {
  margin: 0 0 0.5rem;
}

.legal-doc__defs > div,
.legal-doc__details > div {
  display: grid;
  gap: 0.15rem 1rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .legal-doc__details > div {
    grid-template-columns: minmax(10rem, 14rem) 1fr;
  }
}

.legal-doc__defs dt,
.legal-doc__details dt {
  font-weight: 700;
}

.legal-doc__defs dd,
.legal-doc__details dd {
  margin: 0;
  color: var(--ink-muted);
}

.legal-doc__defs dt::after {
  content: " —";
  font-weight: 400;
  color: var(--ink-muted);
}

.legal-doc__defs dt,
.legal-doc__defs dd {
  display: inline;
}

.legal-doc__defs > div {
  display: block;
}

.legal-doc__note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.92rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(0, -1.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media img,
  .hero__content,
  .reveal,
  .btn,
  .gallery__item img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}
