/* ---------- Tokens ---------- */
:root {
  --slate: #1f2d3d;
  --slate-deep: #16212e;
  --charcoal: #2b2f36;
  --green: #4f7a63;
  --green-light: #eef4f0;
  --cream: #fbfaf7;
  --white: #ffffff;
  --ink: #1c2027;
  --muted: #5c6470;
  --border: #e4e2dc;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(22, 33, 46, 0.08);
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--slate-deep);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 16px; color: var(--muted); }

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

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.center { text-align: center; }
.section-sub.center { max-width: 640px; margin: 0 auto 48px; }
h2.center { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--slate-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-deep);
  border-color: var(--slate-deep);
}
.btn-ghost:hover {
  background: var(--slate-deep);
  color: var(--white);
}

.btn-small { padding: 10px 20px; font-size: 0.85rem; }
.btn-large { padding: 17px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--slate-deep);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 20px;
  padding: 4px;
  border-radius: 999px;
  background: var(--green-light);
  border: 1px solid var(--border);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-btn.is-active {
  background: var(--slate-deep);
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a:not(.btn) {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate);
  position: relative;
}
.main-nav a:not(.btn):hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--slate-deep);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, #f3f1ea 0%, var(--cream) 100%);
}

.hero-inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.lang-badge {
  display: inline-flex;
  margin: 0 auto 32px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Process ---------- */
.process { padding: 88px 0; background: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--slate-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
}

/* ---------- Services ---------- */
.services { padding: 88px 0; background: var(--green-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.service-icon { font-size: 2rem; margin-bottom: 16px; }

.service-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--border);
  position: relative;
  color: var(--slate);
  font-size: 0.95rem;
}

.service-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--green);
  font-weight: 700;
}

/* ---------- About ---------- */
.about { padding: 96px 0; background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--slate);
  font-weight: 500;
}

.about-bilingual {
  font-weight: 600;
  color: var(--green);
}

/* ---------- Contact ---------- */
.contact { padding: 96px 0; background: var(--slate-deep); }

.contact .eyebrow { color: #9fc2ab; }
.contact h2 { color: var(--white); }

.contact-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.contact-sub {
  color: #c4cbd4;
  margin-bottom: 20px;
}

.contact-bilingual {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(159, 194, 171, 0.15);
  color: #9fc2ab;
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-card-head {
  min-height: 128px;
  margin-bottom: 24px;
}

.contact-card-head h3 { margin-bottom: 8px; }
.contact-card-head p { margin: 0; font-size: 0.95rem; }

.contact-card-icon { font-size: 1.75rem; margin-bottom: 12px; line-height: 1; }

/* Calendly fills the remaining card height so both cards end on the same line */
.calendly-wrap {
  flex: 1;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.calendly-inline-widget {
  min-width: 260px;
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.contact-form { display: flex; flex-direction: column; flex: 1; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-deep);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}

.contact-form textarea { flex: 1; min-height: 110px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form button { margin-top: 24px; }

.hidden-field { display: none; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.contact-details p { color: #c4cbd4; margin: 0; font-size: 0.95rem; }
.contact-details strong { color: var(--white); }
.contact-details a { color: #9fc2ab; text-decoration: underline; text-underline-offset: 3px; }
.contact-details a:hover { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #b6bac1;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--white); }

.footer-copy, .footer-contact {
  font-size: 0.82rem;
  color: #9198a1;
  margin: 0;
}

/* ---------- Responsive ---------- */

/* Two columns are still side by side but narrow here, so the card copy wraps to an
   extra line and Calendly switches to its compact layout — give both more room. */
@media (min-width: 901px) and (max-width: 1080px) {
  .contact-card-head { min-height: 152px; }
  .calendly-wrap, .calendly-inline-widget { min-height: 740px; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-head { min-height: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero { padding: 64px 0 56px; }
  .process, .services, .about, .contact { padding: 64px 0; }
  .contact-card, .service-card { padding: 28px; }
  .calendly-wrap, .calendly-inline-widget { min-height: 680px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
