/* Vello-inspired base */
:root {
  --brand-primary: #5a6e3c;
  --brand-accent: #8fa65d;
  --brand-light: #f5f7f0;
  --text-primary: #0f172a;
  --text-muted: #475569;
  --card-bg: #ffffff;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--brand-light);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 247, 240, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
  color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-primary);
}

.main-nav a.active {
  font-weight: 600;
}

.main-nav a.lang-switch {
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 6px;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.main-nav a.lang-switch:hover {
  background: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(90, 110, 60, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand-primary);
  border-color: rgba(90, 110, 60, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 80px 0 60px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-content {
  position: relative;
  color: #ffffff;
  padding: 40px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 0 0 16px;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: #ffffff;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
}

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.profile-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-accent);
}

.booking-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Service cards with price */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 14px;
}

.service-duration {
  color: var(--text-muted);
}

.service-price {
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 18px;
}

/* Page header for subpages */
.page-header {
  padding: 48px 0 32px;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 8px;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
}

/* Content blocks for subpages */
.content-block {
  max-width: 720px;
}

.content-block h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.content-block h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content-block ul {
  color: var(--text-muted);
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-block ul li {
  margin-bottom: 6px;
}

/* Pricing table */
.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  margin: 0 0 4px;
}

.pricing-card .pricing-duration {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.pricing-card .pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-primary);
}

.pricing-card .pricing-btn {
  margin-top: 16px;
}

/* Info box */
.info-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.info-box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* Timeline for education */
.timeline {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.timeline li {
  position: relative;
  padding-left: 32px;
  padding-bottom: 24px;
  border-left: 2px solid rgba(90, 110, 60, 0.2);
}

.timeline li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-accent);
  border: 2px solid var(--brand-light);
}

.timeline-year {
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-title {
  font-weight: 600;
  margin: 4px 0;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* Contact section */
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card h3 {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  gap: 2px;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-link {
  color: var(--brand-primary);
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Social icons */
.social-links {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-primary);
  transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Map */
.map-embed {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.map-header {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.map-title {
  font-weight: 600;
  color: var(--text-primary);
}

.map-address {
  font-size: 14px;
  color: var(--text-muted);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-form h3 {
  margin: 0 0 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(90, 110, 60, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 8px;
  align-self: flex-start;
}

.form-success {
  text-align: center;
  padding: 32px 16px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  fill: #22c55e;
  margin-bottom: 16px;
}

.form-success h3 {
  margin: 0 0 8px;
  color: var(--text-primary);
}

.form-success p {
  margin: 0;
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  background: var(--brand-primary);
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  justify-items: center;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.footer-legal {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #ffffff;
  justify-self: center;
}

.footer-badge span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  line-height: 1;
}

.footer-badge img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin-top: -2px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 247, 240, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding-block: 12px;
  }

  .logo span {
    font-size: 14px;
  }

  .header-inner .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
