:root {
  --pink: #dda5ba;
  --pink-strong: #bf7897;
  --pink-soft: #fff0f6;
  --pink-soft-2: #fff8fb;
  --gray: #8d8f94;
  --gray-dark: #575a60;
  --ink: #24262a;
  --muted: #6d7178;
  --white: #ffffff;
  --off-white: #fbfafb;
  --line: rgba(87, 90, 96, 0.14);
  --shadow: 0 28px 80px rgba(38, 38, 42, 0.14);
  --shadow-soft: 0 18px 46px rgba(38, 38, 42, 0.09);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: min(250px, 58vw);
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--gray-dark);
  font-size: 0.94rem;
  font-weight: 850;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--pink-strong);
  background: var(--pink-soft);
  transform: translateY(-1px);
}

.main-nav .nav-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow: 0 14px 30px rgba(191, 120, 151, 0.26);
}

.main-nav .nav-button:hover,
.main-nav .nav-button:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-strong), #a96480);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 17px;
  background: var(--pink-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--gray-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 92px) 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(221, 165, 186, 0.34), transparent 30%),
    radial-gradient(circle at 94% 12%, rgba(141, 143, 148, 0.18), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 50%, #f2f3f4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(to top, rgba(251, 250, 251, 0.98), rgba(251, 250, 251, 0));
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.shape-one {
  width: 430px;
  height: 430px;
  right: -160px;
  bottom: -190px;
  background: rgba(221, 165, 186, 0.24);
}

.shape-two {
  width: 185px;
  height: 185px;
  left: 6%;
  bottom: 8%;
  border: 26px solid rgba(221, 165, 186, 0.16);
}

.shape-three {
  width: 78px;
  height: 78px;
  right: 47%;
  top: 12%;
  background: rgba(141, 143, 148, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--pink-strong);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.kicker-light {
  color: var(--white);
}

h1,
h2,
p,
figure {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 8px;
  color: var(--gray-dark);
  font-size: clamp(3.05rem, 8.4vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: -0.08em;
}

.hero-subtitle {
  margin: 0 0 30px;
  color: var(--pink-strong);
  font-size: clamp(1.65rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow: 0 18px 38px rgba(191, 120, 151, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 46px rgba(191, 120, 151, 0.38);
}

.button-soft {
  color: var(--pink-strong);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-outline {
  color: var(--gray-dark);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.hero-media {
  display: grid;
  gap: 16px;
}

.logo-panel,
.photo-panel,
.featured-photo,
.profile-card,
.strip-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.logo-panel img {
  width: min(100%, 520px);
  max-height: 170px;
  object-fit: contain;
}

.photo-panel {
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  border-radius: var(--radius-xl);
}

.photo-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 24px;
}

.info-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  padding-bottom: 42px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.strip-card {
  min-height: 140px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.strip-card span,
.profile-details span,
.contact-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strip-card strong {
  display: block;
  color: var(--gray-dark);
  font-size: clamp(1.18rem, 2vw, 1.58rem);
  line-height: 1.16;
}

.section {
  padding: clamp(68px, 9vw, 110px) 0;
}

.section-light {
  background:
    radial-gradient(circle at 95% 20%, rgba(221, 165, 186, 0.16), transparent 28%),
    linear-gradient(180deg, var(--off-white), #ffffff);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 118px;
}

h2 {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.profile-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xl);
}

.profile-name {
  margin-bottom: 24px;
  color: var(--pink-strong);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.profile-details {
  display: grid;
  gap: 14px;
}

.profile-details div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 248, 251, 0.82);
}

.profile-details strong {
  color: var(--gray-dark);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.25;
}

.photo-section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.photo-copy p:last-child {
  max-width: 460px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.featured-photo {
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  border-radius: var(--radius-xl);
  background: var(--white);
}

.featured-photo img {
  width: 100%;
  max-height: 860px;
  object-fit: contain;
  border-radius: 24px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(221, 165, 186, 0.34), transparent 33%),
    radial-gradient(circle at 100% 90%, rgba(255, 255, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #505258 0%, #6e7075 45%, #b97b95 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 146px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card strong {
  color: var(--white);
  font-size: clamp(1.18rem, 2.4vw, 1.65rem);
  line-height: 1.13;
}

.contact-card-featured {
  background: rgba(255, 255, 255, 0.22);
}

.floating-agenda {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  box-shadow: 0 18px 44px rgba(191, 120, 151, 0.38);
  font-weight: 950;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner img {
  width: min(230px, 52vw);
  max-height: 74px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  text-align: right;
}

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

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

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

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: min(220px, 58vw);
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .main-nav a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid,
  .section-grid,
  .photo-section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

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

  .info-strip {
    margin-top: 0;
    padding-top: 30px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-actions,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .floating-agenda {
    width: 100%;
  }

  .floating-agenda {
    right: 14px;
    left: 14px;
    bottom: 12px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .photo-panel,
  .featured-photo,
  .logo-panel,
  .profile-card {
    border-radius: 24px;
  }

  .footer-inner p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
