@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@400;500&display=swap');

:root {
  --color-text: #2D2D2D;
  --color-text-muted: #6B6660;
  --color-bg: #FDFBF8;
  --color-bg-alt: #F6F1EA;
  --color-border: #E7E1D8;
  --color-gold: #A38D78;
  --color-cta: #7A6450;
  --color-cta-hover: #6B5643;
  --color-footer-bg: #2D2D2D;
  --color-footer-text: #B8B2A8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; color: var(--color-text-muted); }

a { color: inherit; }

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(253, 251, 248, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-name .accent { color: var(--color-gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.2s;
}

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

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.nav-links a:hover { color: var(--color-cta); }

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.lang-switch a {
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-text-muted);
}

.lang-switch a.active {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary {
  background: var(--color-cta);
  color: #FFFFFF;
}

.btn-primary:hover { background: var(--color-cta-hover); }

.btn-block { width: 100%; text-align: center; }

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 18px;
  background: var(--color-gold);
}

/* Hero */
.hero {
  position: relative;
  padding: 84px 0 64px;
  overflow: hidden;
}

.hero-roofline {
  position: absolute;
  top: 0;
  right: -40px;
  width: 340px;
  height: 160px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 680px; }

.hero h1 { font-size: 2.5rem; }

.hero .lead { font-size: 1.15rem; color: var(--color-text-muted); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

/* Path cards */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0 80px;
}

.path-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.path-card .icon { font-size: 1.8rem; margin-bottom: 12px; }

.path-card h3 { font-size: 1.3rem; }

/* Section */
.section { padding: 72px 0; }

.section-alt { background: var(--color-bg-alt); }

.section-head { max-width: 620px; margin-bottom: 40px; }

.section-head h2 { font-size: 1.9rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step { text-align: left; }

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.1rem; }

/* Strategy / value cards */
.cards-2, .value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.value-item { text-align: center; padding: 12px; }

.value-item .icon { font-size: 1.6rem; margin-bottom: 10px; }

/* Forms */
.form-wrap {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.field.full { grid-column: 1 / -1; }

.field label { font-size: 0.85rem; font-weight: 500; color: var(--color-text); }

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--color-text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.2em;
}

.form-status.success { color: #3F7A4E; }

.form-status.error { color: #B23A3A; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.15s;
  color: var(--color-gold);
  font-size: 1.2rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--color-text-muted);
}

.faq-item.open .faq-answer { display: block; }

/* JV footer block */
.jv-block {
  text-align: center;
  padding: 14px 0;
  font-size: 0.92rem;
  color: var(--color-footer-text);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
}

.jv-block a {
  color: var(--color-gold);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-top img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
}

.footer-contact { font-size: 0.9rem; }

.footer-contact a { color: var(--color-footer-text); text-decoration: none; }

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav.open { max-height: 320px; }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px 24px;
  }

  .nav-links li { width: 100%; }

  .nav-links a { display: block; padding: 12px 0; }

  .lang-switch { padding: 8px 24px 16px; }

  .hero h1 { font-size: 1.9rem; }

  .path-cards { grid-template-columns: 1fr; }

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

  .cards-2, .value-strip { grid-template-columns: 1fr; }

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

  .form-wrap { padding: 24px; }

  .hero-roofline { display: none; }
}
