:root {
  --clr-rose-50: #fff7fb;
  --clr-rose-100: #fde4f0;
  --clr-rose-200: #f9d0ec;
  --clr-rose-300: #f4b7e2;
  --clr-rose-500: #d946ef;
  --clr-berry: #be185d;
  --clr-slate-900: #0f172a;
  --clr-slate-700: #334155;
  --clr-slate-500: #64748b;
  --clr-white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: rgba(190, 24, 93, 0.2);
  color: var(--clr-slate-900);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--clr-slate-900);
  background: linear-gradient(180deg, #fffdfb 0%, #fdf4ff 40%, #fef5fb 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

p {
  margin-bottom: 1.25rem;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.page-section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  position: relative;
  scroll-margin-top: 80px;
}

.section--tint {
  background: rgba(253, 228, 240, 0.55);
}

.has-divider-top::before,
.has-divider-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.has-divider-top::before {
  top: -45px;
  clip-path: ellipse(70% 100% at 50% 0%);
}

.has-divider-bottom::after {
  bottom: -45px;
  clip-path: ellipse(70% 100% at 50% 100%);
}

.section-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-slate-500);
  margin-bottom: 1rem;
}

.section-title,
.main-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--clr-slate-900);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.8), transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero-text {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 680px;
  margin: 0 auto;
}

.hero-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.welcome {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--clr-berry);
  margin-bottom: 0.5rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--clr-slate-700);
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-link,
.secondary-link {
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-link {
  background: var(--clr-berry);
  color: var(--clr-white);
  box-shadow: 0 15px 30px rgba(190, 24, 93, 0.25);
}

.secondary-link {
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--clr-slate-900);
  background: rgba(255, 255, 255, 0.6);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-4px);
}

.hero-scroll-hint {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-slate-500);
  margin-top: 2rem;
}

.split-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.split-grid > * {
  flex: 1 1 280px;
  min-width: 260px;
}

.split-section--reverse .split-grid {
  flex-direction: row-reverse;
}

#pillarsSection .split-grid {
  align-items: stretch;
}

.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--clr-rose-100), var(--clr-rose-300));
  padding: clamp(1rem, 2vw, 2rem);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.profile-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

#photoContainer,
#textContent {
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

#photoContainer {
  transform: translateX(-60px);
}

#textContent {
  transform: translateX(60px);
}

#photoContainer.animate,
#textContent.animate {
  opacity: 1;
  transform: translateX(0);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--clr-slate-700);
}

.rotating-keywords {
  display: inline-flex;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--clr-berry);
}

.rotating-keywords .keyword {
  text-transform: capitalize;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--clr-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.highlight-card .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-slate-500);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(190, 24, 93, 0.1);
  box-shadow: var(--shadow-soft);
}

.pillar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.gradient-media {
  background: linear-gradient(135deg, rgba(190, 24, 93, 0.9), rgba(217, 70, 239, 0.8));
}

.pillars-media {
  background: transparent;
  padding: 0;
  box-shadow: none;
  min-height: 100%;
}

.pillars-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.5;
}

.blob-one {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 15%;
  background: #fde4f0;
}

.blob-two {
  width: 220px;
  height: 220px;
  bottom: 8%;
  right: 10%;
  background: #f1b6e2;
}

.blob-three {
  width: 140px;
  height: 140px;
  top: 40%;
  right: 35%;
  background: rgba(255, 255, 255, 0.6);
}

.split-grid--intro .badge-media {
  min-height: auto;
}

.badge-media {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--clr-white);
}

.badge-media p {
  font-weight: 600;
  color: var(--clr-berry);
  margin-bottom: 0.25rem;
}

.badge-media ul {
  list-style: none;
  color: var(--clr-slate-700);
  padding-left: 0;
}

.projects-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.card-media {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #fce7f3, #f3e8ff);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--clr-berry);
}

.project-body h3 {
  margin-bottom: 0.5rem;
}

.portfolio-media {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.offer-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.offer-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-link {
  font-weight: 600;
  color: var(--clr-berry);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.text-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.contact-section {
  background: var(--clr-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.contact-panel {
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.contact-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.contact-button {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  color: var(--clr-white);
  background: var(--clr-berry);
  box-shadow: 0 10px 30px rgba(190, 24, 93, 0.2);
}

.contact-button.alt {
  background: transparent;
  border: 1px solid rgba(190, 24, 93, 0.3);
  color: var(--clr-berry);
  box-shadow: none;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.social-links a {
  position: relative;
}

.social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.site-footer {
  background: #0f172a;
  color: var(--clr-white);
  padding: 3rem 0;
  margin-top: 2rem;
}

.footer-container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-links,
.footer-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-socials a {
  font-weight: 600;
  opacity: 0.8;
}

.footer-links a:hover,
.footer-socials a:hover {
  opacity: 1;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  opacity: 0.7;
  margin: 0;
}

.slide-in-left,
.slide-in-right,
.slide-in-up {
  opacity: 0;
  transition: all 0.9s ease;
}

.slide-in-left {
  transform: translateX(-50px);
}

.slide-in-right {
  transform: translateX(50px);
}

.slide-in-up {
  transform: translateY(50px);
}

.slide-in-left.animate,
.slide-in-right.animate,
.slide-in-up.animate,
#pillarsSection.animate,
#contactSection.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .split-grid {
    flex-direction: column;
  }

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

  .split-media {
    min-height: 280px;
  }

  .projects-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-direction: column;
  }

  .footer-container {
    text-align: center;
  }

  .footer-links,
  .footer-socials,
  .social-links,
  .contact-actions {
    justify-content: center;
  }
}
