:root {
  --brand-dark: #1a1440;
  --brand-dark-2: #2f1c6a;
  --brand: #673de6;
  --brand-light: #ebe4ff;
  --accent: #00b090;
  --accent-dark: #008361;
  --gold: #ffcd35;
  --ink: #1d1e20;
  --gray: #5b5d66;
  --gray-light: #f2f3f6;
  --line: #e4e4ea;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(47, 28, 106, 0.12);
  --shadow-lg: 0 16px 48px rgba(47, 28, 106, 0.18);
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --maxw: 1200px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-dark); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--gold); }
.topbar .topbar-phone { color: var(--gold); font-weight: 700; letter-spacing: 0.3px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(47, 28, 106, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { font-weight: 800; font-size: 1.15rem; line-height: 1.2; color: var(--brand-dark); }
.nav-logo-text small { display: block; font-weight: 500; font-size: 0.7rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.95rem; position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a.active::after, .nav-links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px; background: var(--brand);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--brand-dark); margin: 5px 0; border-radius: 3px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 0 24px;
    box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 420px; padding: 12px 24px 20px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after, .nav-links a:hover::after { display: none; }
  .nav-links a.active { color: var(--brand); }
  .nav-cta .btn { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: all 0.25s ease; font-family: var(--font-sans);
}
.btn-primary { background: var(--brand); color: var(--white); }
.btn-primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--brand-dark); }
.btn-gold:hover { background: #ffc91a; color: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-outline:hover { background: var(--white); color: var(--brand-dark); }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand-light); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 55%, var(--brand) 100%);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 400px at 85% 20%, rgba(255, 205, 53, 0.18), transparent 60%),
              radial-gradient(500px 380px at 10% 90%, rgba(0, 176, 144, 0.25), transparent 60%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22); padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.15; font-weight: 800; margin-bottom: 22px; }
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 1.15rem; color: rgba(255, 255, 255, 0.88); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-badges { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-badge strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-badge span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.hero-card {
  position: absolute; bottom: -28px; left: -28px; background: var(--white); color: var(--ink);
  padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
}
.hero-card .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.hero-card strong { display: block; font-size: 0.95rem; }
.hero-card small { color: var(--gray); }

@media (max-width: 940px) {
  .hero { padding: 70px 0 100px; }
  .hero .container { grid-template-columns: 1fr; gap: 56px; }
  .hero-card { left: 12px; bottom: -24px; }
  .hero-badges { gap: 24px; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-light); }
.section-tight { padding: 64px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow { color: var(--brand); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 14px; display: inline-block; }
.section-head h2, .section h2.title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--brand-dark); margin-bottom: 18px; }
.section-head p { color: var(--gray); font-size: 1.05rem; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 62px; height: 62px; border-radius: 14px; background: var(--brand-light); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.6rem;
}
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 0.9rem; }

/* Service image cards */
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.service-card .service-body { padding: 28px; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; color: var(--brand-dark); margin-bottom: 20px; line-height: 1.25; }
.split p { color: var(--gray); margin-bottom: 16px; }
.checklist { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checklist li::before { content: '✓'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }

/* ---------- Stats band ---------- */
.stats {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark-2) 100%);
  color: var(--white); padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 940px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--gold); line-height: 1.1; }
.stat span { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.1rem; }
.testimonial blockquote { font-size: 1rem; color: var(--gray); font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--brand-dark); }
.testimonial-author small { color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--white); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-sans); }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--brand); font-weight: 400; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--gray); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand-dark) 0%, var(--brand) 100%); color: var(--white); padding: 84px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 800; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto 34px; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .info-item .icon { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info .info-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--gray); font-size: 0.95rem; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--brand-dark); }
.field label .req { color: #d63163; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink); background: var(--white); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 12px; }
.form-success { display: none; background: var(--accent-light, #def4f0); border: 1px solid var(--accent); color: var(--accent-dark); padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 18px; font-weight: 600; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--gray); margin-bottom: 28px; }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span { margin: 0 8px; color: var(--line); }
.breadcrumbs .current { color: var(--brand); font-weight: 600; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-2) 60%, var(--brand) 100%); color: var(--white); padding: 76px 0 84px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; max-width: 680px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 940px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; }
.blog-card .blog-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-meta { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: inherit; }
.blog-card p { color: var(--gray); font-size: 0.93rem; margin-bottom: 16px; flex-grow: 1; }
.blog-card .btn-sm { align-self: flex-start; }

/* Article */
.article { max-width: 820px; margin: 0 auto; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; color: var(--brand-dark); line-height: 1.25; margin-bottom: 14px; }
.article .article-meta { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }
.article img { border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow); }
.article h2 { font-size: 1.6rem; font-weight: 700; color: var(--brand-dark); margin: 36px 0 16px; }
.article h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-dark); margin: 28px 0 12px; }
.article p { margin-bottom: 18px; color: var(--gray); }
.article ul, .article ol { margin: 0 0 20px 24px; color: var(--gray); }
.article li { margin-bottom: 8px; }
.article blockquote { border-left: 4px solid var(--brand); background: var(--brand-light); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--brand-dark); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-dark); color: rgba(255, 255, 255, 0.8); padding: 72px 0 0; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; }
.footer a { color: rgba(255, 255, 255, 0.8); }
.footer a:hover { color: var(--gold); }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 42px; width: auto; }
.footer-logo strong { color: var(--white); font-size: 1.1rem; line-height: 1.2; display: block; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); }
.footer-social a:hover { background: var(--brand); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 22px 0; font-size: 0.83rem; color: rgba(255, 255, 255, 0.55); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Booking ---------- */
.booking {
  background: var(--gray-light);
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 940px) { .booking-grid { grid-template-columns: 1fr; } }
.booking-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.booking-info .info-item .icon { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.booking-info .info-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.booking-info .info-item p, .booking-info .info-item a { color: var(--gray); font-size: 0.95rem; }
.booking-widget {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; min-height: 640px;
}
.booking-widget iframe { width: 100%; height: 680px; border: 0; display: block; }
@media (max-width: 560px) { .booking-widget { min-height: 560px; } .booking-widget iframe { height: 600px; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.rating-stars { color: var(--gold); letter-spacing: 2px; }
