:root {
  --blue: #06075f;
  --blue-soft: #11137a;
  --pink: #e62b7a;
  --pink-soft: #f9d8e7;
  --pink-light: #fff2f8;
  --white: #ffffff;
  --bg: #fbfbff;
  --text: #17172b;
  --muted: #66677b;
  --line: #eeeef8;
  --shadow: 0 20px 60px rgba(6, 7, 95, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(230, 43, 122, 0.10), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(6, 7, 95, 0.08), transparent 26rem);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(238, 238, 248, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 86px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.92rem;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

.main-nav a:hover {
  background: var(--pink-light);
  color: var(--pink);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--pink) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
}

.hero-grid,
.agenda-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

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

h1 {
  color: var(--blue);
  font-size: clamp(2.8rem, 8vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

h3 {
  color: var(--blue);
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.hero-text,
.text-block p,
.social-card p,
.contact-section p,
.agenda-hero p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(230, 43, 122, 0.26);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.photo-ideas span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.trust-row span::before,
.photo-ideas span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--pink-soft);
}

.hero-card img {
  width: min(380px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero-card-info {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 18px 20px;
  color: var(--blue);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
}

.hero-card-info strong,
.hero-card-info span {
  display: block;
}

.hero-card-info strong {
  font-size: 1.15rem;
}

.hero-card-info span {
  margin-top: 4px;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.text-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 18px 45px rgba(6, 7, 95, 0.08);
}

.text-block p:last-child,
.contact-section p:last-child,
.social-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.service-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px rgba(6, 7, 95, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--pink-light);
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.media-suggestions {
  padding-top: 40px;
}

.photo-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.social-card h2,
.social-card p,
.social-card .eyebrow {
  color: var(--white);
}

.social-card .eyebrow {
  opacity: 0.82;
}

.social-links {
  display: grid;
  gap: 12px;
  min-width: 210px;
}

.social-links a {
  padding: 15px 18px;
  background: var(--white);
  color: var(--blue);
  border-radius: 16px;
  font-weight: 900;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--blue);
  font-weight: 800;
}

.contact-form,
.agenda-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(6, 7, 95, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text);
  background: var(--bg);
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(230, 43, 122, 0.12);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue);
}

.footer-inner img {
  width: 68px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-inner a {
  margin-left: auto;
  font-weight: 900;
  color: var(--pink);
}

.agenda-hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
}

.agenda-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.agenda-panel-header span {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--pink);
  background: var(--pink-light);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
}

.slot-list {
  display: grid;
  gap: 12px;
}

.slot-list button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  color: var(--blue);
  background: var(--bg);
  cursor: pointer;
  transition: 160ms ease;
}

.slot-list button:hover,
.slot-list button.is-selected {
  border-color: var(--pink);
  background: var(--pink-light);
}

.slot-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.selected-slot {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: 16px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav:not(.always-visible) {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid !important;
  }

  .always-visible {
    display: none;
  }

  .hero-grid,
  .agenda-grid,
  .two-col,
  .contact-grid,
  .social-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .section-pad {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 74px;
  }

  .main-nav:not(.always-visible) {
    top: 82px;
  }

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

  .hero-actions,
  .btn {
    width: 100%;
  }

  .social-card,
  .contact-form,
  .agenda-panel,
  .text-block {
    padding: 22px;
  }

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

  .footer-inner a {
    margin-left: 0;
  }

  .slot-list button {
    grid-template-columns: 1fr;
  }
}
