:root {
  --navy: #3a2b23;
  --navy-soft: #60483a;
  --teal: #b86f56;
  --green: #c8d2b0;
  --sage: #758363;
  --rose: #d8aaa2;
  --clay: #b86f56;
  --ink: #342820;
  --muted: #766b60;
  --line: #e7dacd;
  --paper: #fffdf8;
  --soft: #f7f1e9;
  --warm: #f1e5d8;
  --shadow: 0 18px 55px rgba(70, 45, 30, 0.14);
  --font-body: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Aptos, ui-sans-serif, system-ui, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 248, 0.93);
  border-bottom: 1px solid rgba(231, 218, 205, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--clay));
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
  color: var(--navy);
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: #5d5046;
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 7vw, 94px) clamp(18px, 4vw, 64px) clamp(34px, 5vw, 70px);
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 241, 233, 0.94) 48%, rgba(222, 229, 207, 0.74) 100%),
    var(--soft);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 4.85rem;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.28;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: #5d5046;
  font-size: 1.18rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(70, 45, 30, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--navy);
}

.button.whatsapp {
  color: #2f3328;
  background: var(--green);
}

.button.ghost {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.78);
  border-color: var(--line);
}

.hero-note {
  max-width: 560px;
  margin-top: 24px;
  padding-left: 14px;
  color: var(--muted);
  border-left: 4px solid var(--rose);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(58, 43, 35, 0) 42%, rgba(58, 43, 35, 0.16));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: clamp(360px, 55vw, 680px);
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip article {
  min-height: 190px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: var(--paper);
}

.trust-strip h2 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 14px;
  padding: 0 8px;
  color: var(--navy);
  background: #efe2d8;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-strip p,
.service-card p,
.package-card p,
.why p,
.faq p {
  color: var(--muted);
}

.area-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(18px, 4vw, 64px);
  background: #efe2d8;
  border-bottom: 1px solid var(--line);
}

.area-band h2 {
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.2;
}

.area-band p:last-child {
  margin-bottom: 0;
  color: #5d5046;
  font-size: 1.06rem;
}

.section {
  padding: clamp(62px, 8vw, 108px) clamp(18px, 4vw, 64px);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 76px);
  background: var(--paper);
}

.section-copy {
  max-width: 780px;
  color: #5d5046;
  font-size: 1.06rem;
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  background: var(--soft);
}

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

.service-card,
.why-grid article,
.package-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-number {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 850;
}

.packages {
  background: var(--paper);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.package-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #3a2b23, #6b4a3a);
  border-color: #6b4a3a;
}

.package-card.featured h3,
.package-card.featured p {
  color: #fff;
}

.package-kicker {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.package-card.featured .package-kicker {
  color: #f1d2c9;
}

.package-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 850;
}

.package-card.featured a {
  color: #f1d2c9;
}

.process {
  background: var(--warm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  background: var(--paper);
  border: 1px solid #dfc9b6;
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--clay);
  border-radius: 50%;
  font-weight: 850;
}

.steps p {
  color: var(--muted);
}

.language-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 64px);
  color: #fff;
  background: linear-gradient(135deg, #3a2b23 0%, #59624c 100%);
}

.language-band h2,
.language-band .eyebrow {
  color: #fff;
}

.language-band p {
  max-width: 820px;
  margin-bottom: 0;
  color: #f3ebe1;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 10px;
}

.language-list span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 14px;
  color: #2f3328;
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 850;
}

.why {
  background: var(--paper);
}

.testimonials {
  background: var(--soft);
}

.quote-placeholder {
  max-width: 760px;
  padding: 28px;
  background: var(--paper);
  border-left: 5px solid var(--rose);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(70, 45, 30, 0.08);
}

.quote-placeholder p {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 760;
}

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

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px;
  color: var(--navy);
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(62px, 8vw, 108px) clamp(18px, 4vw, 64px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(58, 43, 35, 0.96), rgba(91, 73, 55, 0.84)),
    url("assets/drive-with-maryaa-hero.png") center / cover;
}

.contact-copy {
  max-width: 720px;
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: #fff;
}

.contact-copy p {
  color: #f3ebe1;
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 64px);
  color: #f3ebe1;
  background: #2a1f19;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  display: inline-block;
  margin-left: 16px;
  color: #fff;
  font-weight: 800;
}

.footer-small {
  grid-column: 1 / -1;
  color: #a8b6c2;
  font-size: 0.9rem;
}

.blog-hero {
  padding: clamp(62px, 8vw, 108px) clamp(18px, 4vw, 64px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(110deg, rgba(255, 253, 248, 0.96) 0%, rgba(247, 241, 233, 0.94) 50%, rgba(239, 226, 216, 0.82) 100%),
    var(--soft);
}

.blog-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.blog-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: #5d5046;
  font-size: 1.18rem;
  line-height: 1.72;
}

.blog-grid-section {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 64px);
  background: var(--paper);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-card-topic {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.24;
}

.blog-card p {
  color: var(--muted);
}

.blog-read {
  margin-top: auto;
  color: var(--navy);
  font-weight: 850;
}

.blog-article {
  max-width: 860px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 64px);
  margin: 0 auto;
}

.blog-back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--clay);
  font-weight: 850;
}

.blog-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 750;
}

.blog-intro {
  color: #5d5046;
  font-size: 1.18rem;
  line-height: 1.72;
}

.blog-article h1 {
  margin-bottom: 14px;
  font-size: 4rem;
}

.blog-article h2 {
  margin-top: 38px;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 850;
}

.blog-article p,
.blog-article li {
  color: #5d5046;
  font-size: 1.05rem;
}

.blog-article li + li {
  margin-top: 8px;
}

.blog-source-note,
.blog-cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blog-source-note ul {
  padding-left: 20px;
}

.blog-source-note a {
  color: var(--navy);
  font-weight: 800;
}

.blog-cta {
  background: #efe2d8;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .trust-strip,
  .package-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero,
  .split,
  .area-band,
  .language-band,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .blog-article h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    height: clamp(280px, 68vw, 460px);
  }

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

  .site-footer a {
    margin: 0 16px 0 0;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .package-grid,
  .blog-grid,
  .why-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: auto;
  }

  .section,
  .contact-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
