/* ─── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink:        #b3125d;
  --pink-light:  #f0b8d0;
  --pink-soft:   #fdf3f7;
  --gray-50:     #fafafa;
  --gray-100:    #f4f4f5;
  --gray-200:    #e4e4e7;
  --gray-400:    #a1a1aa;
  --gray-600:    #52525b;
  --black:       #111111;
  --near-black:  #1c1c1e;
  --white:       #ffffff;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.06);

  --font-sans:  "Inter", system-ui, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;

  --max-w:       1120px;
  --section-gap: 120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: var(--section-gap);
}

.section--gray {
  background: var(--gray-50);
}

.section--pink-soft {
  background: var(--gray-100);
}

/* ─── Typography ────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--pink);
}

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--near-black);
}

.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--near-black);
}

.heading-md {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--near-black);
}

.body-lg {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.75;
}

.body-md {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.btn-primary:hover {
  background: #930f4d;
  border-color: #930f4d;
  box-shadow: 0 4px 18px rgba(179, 18, 93, 0.25);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--near-black);
  border-color: var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-1px);
}

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--near-black);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-bottom: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--pink);
}

.nav__cta {
  margin-left: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.8px;
  background: var(--near-black);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 20px 0 28px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--near-black);
  padding: 10px clamp(20px, 5vw, 60px);
  transition: color 0.2s;
}

.nav__mobile a:hover {
  color: var(--pink);
}

.nav__mobile .btn {
  margin: 12px clamp(20px, 5vw, 60px) 0;
  justify-content: center;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: calc(64px + 80px);
  padding-bottom: 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
}

.hero__blob--1 {
  width: 560px;
  height: 440px;
  background: var(--pink);
  top: -80px;
  right: -100px;
}

.hero__blob--2 {
  width: 360px;
  height: 300px;
  background: var(--gray-400);
  bottom: 40px;
  left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--near-black);
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--pink);
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--gray-600);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 14px;
}

.hero__location {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}

.hero__trust-text {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-dots {
  display: flex;
  gap: 5px;
}

.hero__trust-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-light);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── Orb decorative element ────────────────────────────────── */
.hero__orbs {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-wrapper {
  position: absolute;
  width: 340px;
  height: 340px;
  top: calc(50% - 170px);
  left: calc(50% - 170px);
}

/* Gradient positioned relative to the wrapper so it orbits the ring center */
.orb--lg {
  width: 300px;
  height: 180px;
  background: radial-gradient(ellipse at 28% 38%, #b3125d 0%, transparent 68%);
  opacity: 0.26;
  top: -95px;
  left: 125px;
  filter: blur(44px);
}

.orb--md {
  width: 190px;
  height: 110px;
  background: radial-gradient(ellipse at 30% 35%, #b3125d 0%, transparent 65%);
  opacity: 0.22;
  top: 10%;
  left: 58%;
  filter: blur(28px);
}

.orb--sm {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #c0c0c8, transparent 70%);
  opacity: 0.28;
  bottom: 16%;
  left: 8%;
  filter: blur(24px);
}

.orb--xs {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #b3125d, transparent 70%);
  opacity: 0.25;
  bottom: 10%;
  right: 10%;
  filter: blur(16px);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(179, 18, 93, 0.28);
  box-shadow: 0 0 18px rgba(179, 18, 93, 0.06);
}

.orb-ring--1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orb-ring--2 {
  width: 200px;
  height: 200px;
  top: calc(50% + 118px);
  left: calc(50% - 118px);
  transform: translate(-50%, -50%);
  border-color: rgba(179, 18, 93, 0.18);
  box-shadow: 0 0 12px rgba(179, 18, 93, 0.05);
}

/* ─── Services ──────────────────────────────────────────────── */
.services__header {
  max-width: 560px;
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px 2px 0 0;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.25s;
}

.service-card:hover .service-card__icon {
  background: var(--gray-200);
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ─── About ─────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 1;
}

.about__img-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.about__monogram {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--pink);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 16px;
}

.about__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.about__float-card {
  position: absolute;
  bottom: -20px;
  right: -24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}

.about__float-card .value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: -0.03em;
}

.about__float-card .value em {
  font-style: normal;
  color: var(--pink);
}

.about__float-card .desc {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.about__heading {
  margin-bottom: 28px;
}

.about__intro {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.65;
  margin-bottom: 20px;
}

.about__body {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 38px;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-top: 7px;
  flex-shrink: 0;
}

.pillar__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.pillar__text strong {
  color: var(--near-black);
  font-weight: 600;
}

/* ─── Contact ───────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__heading {
  margin-bottom: 24px;
}

.contact__intro {
  margin-bottom: 36px;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 28px;
  padding: 14px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}

.contact__email:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: var(--shadow-sm);
}

.contact__email svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__note {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(184, 92, 114, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--near-black);
  padding-block: 56px 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer__logo span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-bottom: 2px;
}

.footer__tagline {
  font-size: 0.88rem;
  color: #6b6b75;
  line-height: 1.7;
  max-width: 220px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b75;
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: #9898a5;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--pink-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid #2a2a2e;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: #6b6b75;
}

.footer__copy a {
  color: var(--pink-light);
  transition: color 0.2s;
}

.footer__copy a:hover {
  color: var(--white);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid #2a2a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer__social:hover {
  border-color: var(--pink);
  background: rgba(179, 18, 93, 0.08);
}

.footer__social svg {
  width: 14px;
  height: 14px;
  fill: #9898a5;
  transition: fill 0.2s;
}

.footer__social:hover svg {
  fill: var(--pink-light);
}


/* ─── Scroll animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-gap: 90px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__visual {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__float-card {
    right: 0;
    bottom: -16px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form {
    padding: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero__headline {
    font-size: 2.4rem;
  }
}
