@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #1b1830;
  --muted: #6f6a80;
  --purple: #5d2b7c;
  --purple-dark: #3c1a5b;
  --pink: #e52c91;
  --blush: #fff2f9;
  --lilac: #f5f1fa;
  --line: #e7dfeb;
  --white: #fff;
  --shadow: 0 22px 60px rgba(64, 28, 86, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--pink); }
h1, h2, h3, h4 { font-family: "Manrope", sans-serif; line-height: 1.08; margin: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; color: var(--muted); }
.section { padding: 110px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 46px; }
.section-head > div { max-width: 640px; }
.section-head p { max-width: 520px; margin-top: 18px; }

.topbar { background: var(--purple-dark); color: #e9dff0; font-size: .78rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; }
.topbar a { color: #fff; font-weight: 700; }
.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(231,223,235,.8); backdrop-filter: blur(18px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: Manrope, sans-serif; font-weight: 800; color: var(--purple-dark); }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--purple); color: #fff; font-size: 1.25rem; }
.brand small { display: block; color: var(--pink); font: 600 .6rem/1 DM Sans, sans-serif; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #595366; font-weight: 600; font-size: .9rem; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pink); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 999px; padding: 14px 23px; color: #fff; background: var(--purple); font-weight: 700; box-shadow: 0 8px 20px rgba(93,43,124,.2); transition: transform .2s, background .2s, box-shadow .2s; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); background: var(--pink); box-shadow: 0 12px 24px rgba(229,44,145,.25); }
.button.light { color: var(--purple); background: #fff; box-shadow: none; }
.button.outline { color: var(--purple); background: transparent; border: 1px solid var(--purple); box-shadow: none; }
.button.outline:hover { color: #fff; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--purple); font-size: 1.55rem; }

.hero { position: relative; overflow: hidden; padding: 86px 0 96px; background: var(--lilac); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(229,44,145,.11); right: -170px; top: -180px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.hero h1 { max-width: 640px; margin: 19px 0 24px; }
.hero h1 em { color: var(--pink); font-style: normal; }
.hero-copy { max-width: 540px; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 32px; color: var(--muted); font-size: .88rem; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #31b87e; box-shadow: 0 0 0 5px rgba(49,184,126,.13); }
.hero-visual { position: relative; min-height: 510px; }
.hero-photo { width: 78%; height: 510px; margin-left: auto; object-fit: cover; object-position: center; border-radius: 180px 180px 24px 24px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; left: 0; bottom: 38px; width: 190px; padding: 22px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.hero-badge strong { display: block; color: var(--purple); font: 800 2rem/1 Manrope; }
.hero-badge span { color: var(--muted); font-size: .76rem; }

.trust-strip { background: var(--purple); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 25px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; font-size: .92rem; }
.trust-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }

.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 86px; align-items: center; }
.photo-stack { position: relative; padding: 0 45px 45px 0; }
.photo-stack::after { content: ""; position: absolute; z-index: -1; right: 0; bottom: 0; width: 75%; height: 78%; border-radius: 24px; background: var(--pink); opacity: .13; }
.photo-stack img { width: 100%; height: 490px; border-radius: 22px; object-fit: cover; object-position: center; }
.floating-card { position: absolute; right: 0; bottom: 9px; display: flex; align-items: center; gap: 11px; width: 190px; padding: 15px; border-radius: 15px; color: #fff; background: var(--purple); font-size: .8rem; box-shadow: var(--shadow); }
.floating-card strong { display: block; font-size: 1.2rem; }
.intro-copy h2 { margin: 17px 0 20px; }
.check-list { display: grid; gap: 14px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: start; color: #4f4a5e; }
.check-list li::before { content: "✓"; flex: 0 0 auto; display: grid; place-items: center; width: 21px; height: 21px; color: #fff; background: var(--pink); border-radius: 50%; font-size: .72rem; font-weight: 800; margin-top: 3px; }

.services { background: #fbf9fd; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { color: var(--pink); font: 800 1rem Manrope; }
.service-card h3 { margin: 35px 0 11px; }
.service-card p { font-size: .9rem; }
.service-link { display: inline-flex; margin-top: 25px; color: var(--purple); font-weight: 700; font-size: .85rem; }

.feature-banner { position: relative; overflow: hidden; color: #fff; background: var(--purple-dark); }
.feature-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(60,26,91,.97), rgba(60,26,91,.7)); }
.feature-banner .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .65fr; gap: 60px; align-items: center; min-height: 380px; }
.feature-banner h2 { max-width: 650px; margin: 17px 0 20px; }
.feature-banner p { max-width: 590px; color: #ded3e5; }
.feature-image { width: 100%; height: 320px; object-fit: cover; border-radius: 20px; }

.team-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person-card { min-width: 0; }
.person-photo { height: 315px; width: 100%; object-fit: cover; object-position: center top; border-radius: 18px; background: var(--lilac); }
.person-card h3 { margin-top: 16px; font-size: 1.05rem; }
.person-card p { margin-top: 4px; color: var(--pink); font-size: .78rem; font-weight: 700; }
.view-all { color: var(--purple); font-weight: 700; }

.booking-section { background: var(--blush); }
.booking-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.booking-copy h2 { margin: 17px 0; }
.booking-copy > p { max-width: 430px; }
.contact-list { display: grid; gap: 17px; margin-top: 35px; }
.contact-list a, .contact-list div { display: flex; align-items: start; gap: 12px; color: #51485d; font-size: .9rem; }
.contact-list b { color: var(--purple); }
.form-card { padding: 34px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 24px; font-size: 1.45rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #5c5368; font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 13px; color: var(--ink); background: #fff; outline: 0; }
.field textarea { resize: vertical; min-height: 94px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(229,44,145,.1); }
.form-card .button { margin-top: 21px; width: 100%; }
.form-message { display: none; margin-top: 15px; padding: 13px; border-radius: 10px; color: #176b49; background: #e9f9f1; font-size: .88rem; }
.form-message.show { display: block; }

.page-hero { padding: 88px 0 82px; background: var(--lilac); }
.page-hero h1 { max-width: 730px; margin-top: 18px; }
.page-hero p { max-width: 630px; margin-top: 22px; font-size: 1.05rem; }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.story-grid h2 { margin: 17px 0; }
.story-grid p + p { margin-top: 16px; }
.values { display: grid; gap: 15px; }
.value-card { padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.value-card h3 { margin-bottom: 6px; }
.value-card p { font-size: .88rem; }
.image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.image-grid img { height: 260px; width: 100%; object-fit: cover; border-radius: 18px; }
.image-grid img:first-child { height: 390px; grid-row: span 2; }

.team-hero { background: var(--purple-dark); color: #fff; }
.team-hero p { color: #ddd1e7; }
.team-page-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
.team-page-grid .person-photo { height: 370px; }
.team-intro { display: grid; grid-template-columns: 1fr .85fr; gap: 60px; align-items: end; }
.team-intro p { max-width: 530px; }

.article { max-width: 820px; margin: 0 auto; }
.article h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 18px 0; }
.article-meta { color: var(--pink); font-size: .83rem; font-weight: 700; }
.article-image { width: 100%; height: 440px; margin: 36px 0; object-fit: cover; border-radius: 22px; }
.article-body { font-size: 1.05rem; }
.article-body h2 { font-size: 2rem; margin: 38px 0 12px; }
.article-body p + p { margin-top: 18px; }
.article-body ul { color: var(--muted); padding-left: 22px; }

.site-footer { padding: 68px 0 25px; color: #ded3e5; background: var(--purple-dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #f58bc7; }
.site-footer p { max-width: 280px; margin-top: 17px; color: #bbaec7; font-size: .88rem; }
.site-footer h3 { margin-bottom: 17px; color: #fff; font-size: .9rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 10px; font-size: .86rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 44px; margin-top: 46px; border-top: 1px solid rgba(255,255,255,.14); color: #a99ab8; font-size: .78rem; }

.modal { display: none; position: fixed; inset: 0; z-index: 50; place-items: center; padding: 20px; background: rgba(28,17,38,.7); }
.modal.open { display: grid; }
.modal-card { width: min(650px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 20px; right: 22px; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--purple); background: var(--lilac); font-size: 1.2rem; }
body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { gap: 15px; }
  .nav-cta { padding: 11px 15px; font-size: .82rem; }
  .hero-grid, .intro-grid, .booking-grid, .story-grid, .feature-banner .container, .team-intro { grid-template-columns: 1fr; gap: 45px; }
  .hero { padding-top: 65px; }
  .hero-visual { min-height: auto; }
  .hero-photo { width: 82%; height: 420px; }
  .intro-grid .photo-stack { max-width: 540px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .team-preview, .team-page-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-banner { padding: 75px 0; }
  .feature-banner .container { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .container { width: min(100% - 32px, 560px); }
  .topbar .container { display: block; text-align: center; }
  .topbar .container span { display: none; }
  .nav { min-height: 70px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; padding: 18px 16px 23px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; box-shadow: 0 16px 25px rgba(49,26,61,.09); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
  .section { padding: 75px 0; }
  .section-head { display: block; margin-bottom: 32px; }
  .section-head .view-all { display: inline-block; margin-top: 17px; }
  .hero { padding: 55px 0 65px; }
  .hero h1 { font-size: 3rem; }
  .hero-photo { width: 88%; height: 360px; }
  .hero-badge { width: 160px; padding: 16px; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-grid, .team-preview, .team-page-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 20px; }
  .service-card h3 { margin-top: 23px; font-size: 1rem; }
  .person-photo, .team-page-grid .person-photo { height: 230px; }
  .person-card h3 { font-size: .92rem; }
  .photo-stack { padding-right: 25px; padding-bottom: 28px; }
  .photo-stack img { height: 370px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 23px; }
  .image-grid { gap: 9px; }
  .image-grid img, .image-grid img:first-child { height: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .article-image { height: 280px; }
}