:root {
  --bg: #fcf7f4;
  --bg-soft: #f6efeb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffaf8;
  --text: #24313a;
  --muted: #63717b;
  --primary: #a1677e;
  --primary-dark: #835469;
  --secondary: #314654;
  --accent: #b9cdbd;
  --border: rgba(140, 116, 126, 0.16);
  --shadow: 0 18px 60px rgba(80, 53, 67, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 999px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(233, 211, 219, 0.4), transparent 22%),
    linear-gradient(180deg, #fffdfc 0%, var(--bg) 60%, #fff8f6 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  overflow: hidden;
  position: relative;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 12rem;
  left: -10rem;
  background: rgba(232, 205, 210, 0.55);
}

.site-shell::after {
  top: 54rem;
  right: -8rem;
  background: rgba(206, 223, 213, 0.5);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 4.5rem 0;
}

.section-tag {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.85rem, 10vw, 5.6rem);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(2rem, 7vw, 3.5rem);
  margin-bottom: 1.15rem;
}

h3 {
  font-size: clamp(1.55rem, 4vw, 2rem);
  margin-bottom: 0.85rem;
}

p {
  margin: 0 0 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(127, 79, 100, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(127, 79, 100, 0.28);
}

.button--ghost {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button--small {
  min-height: 2.85rem;
  padding-inline: 1.2rem;
}

.topbar {
  border-bottom: 1px solid rgba(120, 98, 108, 0.1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.topbar__contact {
  font-size: 0.92rem;
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 98, 108, 0.08);
}

.social-links svg {
  width: 1.1rem;
  fill: var(--secondary);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(252, 247, 244, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120, 98, 108, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
}

.brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.menu-toggle span {
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: var(--secondary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  background: rgba(255, 250, 248, 0.96);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu a {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  color: var(--secondary);
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(161, 103, 126, 0.08);
}

.menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: 2.6rem;
}

.hero__grid,
.support__grid,
.about__grid {
  display: grid;
  gap: 2rem;
}

.hero__content h2 {
  line-height: 1.1;
}

.hero__text {
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
}

.hero__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--secondary);
  font-weight: 600;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero__visual {
  position: relative;
}

.hero-card,
.video-card,
.service-card,
.portrait-card,
.cta-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.hero-card__badge {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-card__image {
  border-radius: 1.7rem;
  overflow: hidden;
}

.hero-card__note {
  padding: 1rem 0.2rem 0.4rem;
  color: var(--secondary);
  font-weight: 600;
}

.support__media,
.about__image {
  display: flex;
  align-items: center;
}

.video-card {
  position: relative;
  min-height: 19rem;
  width: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 248, 245, 0.88), rgba(236, 225, 231, 0.9)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-lg) - 0.6rem);
  border: 1px dashed rgba(131, 84, 105, 0.28);
}

.video-card__play {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: 4.4rem;
  height: 4.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(93, 60, 75, 0.15);
}

.video-card__play span {
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid var(--primary);
  margin-left: 0.22rem;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.8rem;
}

.services__grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 1.7rem;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 205, 189, 0.28), rgba(161, 103, 126, 0.14));
}

.service-card__icon {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.1rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
}

.service-card__icon svg {
  width: 1.7rem;
  fill: var(--primary-dark);
}

.portrait-card {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.portrait-card__frame {
  overflow: hidden;
  border-radius: 1.8rem;
}

.portrait-card span {
  display: inline-block;
  padding: 0.9rem 0.25rem 0.2rem;
  color: var(--secondary);
  font-weight: 600;
}

.cta-card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: clamp(2rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(135deg, rgba(246, 228, 228, 0.92), rgba(230, 219, 229, 0.92));
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.cta-card::before {
  top: -2rem;
  left: -2rem;
}

.cta-card::after {
  bottom: -2rem;
  right: -1rem;
}

.footer {
  padding: 2.4rem 0 2.8rem;
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(120, 98, 108, 0.12);
}

.brand--footer .brand__name {
  font-size: 1.45rem;
}

.footer__text {
  margin-top: 0.75rem;
  max-width: 30rem;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer__menu a {
  color: var(--secondary);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 760px) {
  .section {
    padding: 6rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu a {
    padding: 0.75rem 1rem;
  }

  .hero__grid,
  .support__grid,
  .about__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .cta-card {
    padding: 3rem 4rem;
  }

  .footer__inner {
    grid-template-columns: 1.3fr 0.8fr auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 4rem;
  }

  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 4rem;
  }

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

  .service-card {
    min-height: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
