@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── Design system ──────────────────────────────────────────── */
:root {
  --purple:       #8857f2;
  --purple-dark:  #6b3fd4;
  --purple-light: #ede8fd;
  --purple-xl:    #f7f5ff;
  --text:         #1a1a2e;
  --text-soft:    #5c5c7a;
  --white:        #ffffff;
  --off-white:    #fafaf9;
  --border:       #e8e2f5;
  --sh-sm:        0 2px 12px rgba(136,87,242,.08);
  --sh:           0 8px 32px rgba(136,87,242,.14);
  --sh-lg:        0 16px 48px rgba(136,87,242,.22);
  --radius:       20px;
  --radius-sm:    12px;
  --radius-xs:    8px;
  --ease:         .3s ease;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --wrap:         1100px;
  --nav-h:        70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.22; }
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem,2vw,1.5rem); font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--purple); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--purple-dark); }
img { max-width: 100%; display: block; }
.btn img, .transport-row img, .nav-logo img, .cinfo-note img, .cinfo-val img { display: inline; }

/* ─── Layout ─────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-soft { background: var(--purple-xl); }
.section-dark { background: var(--text); color: white; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 4px 20px rgba(136,87,242,.35);
}
.btn-primary:hover { background: var(--purple-dark); color: white; box-shadow: 0 8px 28px rgba(136,87,242,.45); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: white; }
.btn-white { background: white; color: var(--purple); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--purple-light); color: var(--purple-dark); }
.btn-sm { padding: 10px 22px; font-size: .83rem; }

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-name { font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--text); line-height: 1.15; letter-spacing: .01em; }
.nav-logo-sub { font-size: .67rem; color: var(--text-soft); font-weight: 400; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 2px; margin-left: auto; }
.nav-links a {
  display: block; padding: 8px 12px; font-size: .84rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-xs); transition: all var(--ease);
}
.nav-links a:hover, .nav-links .active > a { color: var(--purple); background: var(--purple-light); }
.nav-links .btn-primary, .nav-links .btn-primary:hover { color: white !important; background: var(--purple); }
.nav-links .btn-primary:hover { background: var(--purple-dark) !important; }
.nav-cta { flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--ease); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-sm { min-height: 52vh; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,26,46,.35);
}
.hero-content {
  position: relative; z-index: 1; color: white;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 40px 48px;
  max-width: 620px;
}
.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,.18); color: white;
  font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.3);
}
.hero h1 { color: white; margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Section headings ───────────────────────────────────────── */
.sh { margin-bottom: 52px; }
.sh h2 { margin-bottom: 12px; }
.sh p { color: var(--text-soft); font-size: 1rem; max-width: 520px; }
.sh.c { text-align: center; }
.sh.c p { margin: 0 auto; }
.badge {
  display: inline-block; background: var(--purple-light); color: var(--purple-dark);
  font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 14px;
}

/* ─── Cards grid ─────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.card {
  background: white; border-radius: var(--radius); padding: 32px;
  box-shadow: var(--sh-sm); border: 1px solid var(--border); transition: all var(--ease);
}
.card:hover { box-shadow: var(--sh-lg); border-color: rgba(136,87,242,.25); }
.card-icon {
  width: 52px; height: 52px; background: var(--purple-light);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.card-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .9rem; margin-bottom: 20px; }
.card-link { font-size: .83rem; font-weight: 500; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: '→'; }

/* ─── Split layout ───────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.rev { }
.split-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--sh); object-fit: cover; max-height: 480px; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--text-soft); margin-bottom: 18px; }
.split-text .badge { margin-bottom: 10px; }

/* ─── Accordion ──────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: white; border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); text-align: left;
  transition: color var(--ease);
}
.acc-btn:hover { color: var(--purple); }
.acc-icon {
  width: 28px; height: 28px; background: var(--purple-light); color: var(--purple);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem; font-weight: 300; line-height: 1;
  transition: transform var(--ease);
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-item.open .acc-body { max-height: 700px; }
.acc-body-inner { padding: 0 24px 24px; color: var(--text-soft); border-top: 1px solid var(--border); padding-top: 16px; }
.acc-body-inner p { font-size: .92rem; }

/* ─── Quote ──────────────────────────────────────────────────── */
.quote {
  background: var(--purple-xl); border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px 28px; margin: 36px 0;
}
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.quote cite { font-size: .82rem; color: var(--text-soft); }

/* ─── List ───────────────────────────────────────────────────── */
.dot-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.dot-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-soft); font-size: .92rem; }
.dot-list li::before { content: '◇'; color: var(--purple); flex-shrink: 0; margin-top: 3px; }

/* ─── Timeline ───────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 14px; }
.tl-item { display: flex; gap: 14px; }
.tl-dot { width: 10px; height: 10px; background: var(--purple); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.tl-item strong { display: block; font-size: .92rem; font-weight: 500; color: var(--text); }
.tl-item p { margin: 0; font-size: .83rem; color: var(--text-soft); }

/* ─── Contact form ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.form-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.form-head img { height: 26px; }
.form-intro { color: var(--text-soft); font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .72rem; font-weight: 500; color: var(--text-soft); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .07em; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--sans); font-size: .9rem;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(136,87,242,.11);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.alert { padding: 13px 18px; border-radius: var(--radius-xs); font-size: .88rem; margin-top: 14px; display: none; }
.alert-ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.cinfo-item { margin-bottom: 26px; }
.cinfo-item h3 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); margin-bottom: 8px; font-weight: 500; }
.cinfo-val { font-weight: 500; color: var(--text); font-size: .95rem; }
.cinfo-note { font-size: .83rem; color: var(--text-soft); margin-top: 4px; }
.transport-row { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: var(--text-soft); margin-top: 4px; }
.transport-row img { height: 14px; }

/* ─── Prices ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.price-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.price-card h3 { font-family: var(--sans); font-size: .85rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-soft); margin-bottom: 20px; font-weight: 500; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.price-row:last-child { border: none; padding-bottom: 0; }
.price-label { font-size: .88rem; color: var(--text-soft); }
.price-amt { font-weight: 600; color: var(--purple); font-size: 1.05rem; white-space: nowrap; }

/* ─── Pay methods ────────────────────────────────────────────── */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pay-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; }
.pay-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-soft); margin-bottom: 10px; font-weight: 500; }
.pay-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pay-card li { font-size: .88rem; color: var(--text-soft); padding-left: 14px; position: relative; }
.pay-card li::before { content: '·'; position: absolute; left: 0; color: var(--purple); font-size: 1.2rem; line-height: 1.3; }

/* ─── Map ────────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 380px; box-shadow: var(--sh-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Reviews ────────────────────────────────────────────────── */
.rev-item {
  background: white; border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--sh-sm); border: 1px solid var(--border);
}
.rev-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.rev-meta img { height: 18px; }
.rev-author { font-weight: 500; color: var(--purple); font-style: italic; font-size: .9rem; }
.rev-date { font-size: .8rem; color: var(--text-soft); }
.rev-text { font-size: .9rem; color: var(--text-soft); line-height: 1.7; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer { background: #2d0f5e; color: rgba(255,255,255,.65); padding: 32px 0; font-size: .82rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: rgba(255,255,255,.65); }
footer a:hover { color: white; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border); box-shadow: var(--sh); gap: 4px;
  }
  .nav-links.open li:last-child { margin-top: 8px; }
  .nav-links.open .btn { display: block; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { min-height: 80vh; }
  .hero-sm { min-height: 42vh; }
  .grid-3, .pay-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
