:root {
  --color-bg: #fdfbf7;
  --color-fg: #1a1414;
  --color-muted: #6b5e5e;
  --color-border: rgba(26, 20, 20, 0.08);
  --color-accent: #722f37;
  --color-accent-soft: #8a3d46;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 28px 0;
  color: #fff;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo { display: inline-flex; align-items: center; }
.logo svg { width: 220px; height: auto; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.lang-switch a {
  margin: 0 4px;
  opacity: 0.6;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.lang-switch a.active { opacity: 1; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.header-email {
  font-size: 13px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.header-email:hover { opacity: 1; color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #2a1518;
  background-image:
    linear-gradient(180deg, rgba(20, 10, 12, 0.55) 0%, rgba(20, 10, 12, 0.75) 100%),
    url('hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 0 80px;
}
.hero-content {
  max-width: 760px;
}
.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  margin-bottom: 28px;
  opacity: 0.9;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}
.hero p.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  max-width: 580px;
  opacity: 0.92;
  margin: 0 0 36px;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 36px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--color-accent-soft); color: #fff; }

/* Sections */
section.block {
  padding: clamp(70px, 10vw, 120px) 0;
}
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 28px;
  letter-spacing: -0.3px;
}
.section-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 720px;
}

/* What we do — cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.card {
  border-top: 2px solid var(--color-accent);
  padding: 32px 0 0;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 14px;
}
.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Contact / Form */
.contact {
  background: #f4ede4;
  border-top: 1px solid var(--color-border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info p { color: var(--color-muted); font-size: 16px; line-height: 1.7; }
.contact-info a { color: var(--color-accent); font-weight: 500; }

form.contact-form {
  display: grid;
  gap: 18px;
}
form.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  form.contact-form .row { grid-template-columns: 1fr; }
}
form.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-fg);
  outline: none;
  transition: border-color 0.15s ease;
}
form.contact-form input:focus,
form.contact-form textarea:focus {
  border-color: var(--color-accent);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }
form.contact-form .honeypot { display: none; }
form.contact-form button { margin-top: 8px; justify-self: start; }

.form-success {
  padding: 18px 22px;
  background: #ecf6ed;
  border-left: 3px solid #2e8540;
  color: #1d4a26;
  font-size: 14px;
  display: none;
}
.form-success.visible { display: block; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  font-size: 13px;
  color: var(--color-muted);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--color-accent); }

/* Mobile header tweaks */
@media (max-width: 560px) {
  .site-header { padding: 18px 0; }
  .logo svg { width: 170px; }
  .header-email { display: none; }
  .nav-right { gap: 14px; }
  .hero { min-height: 80vh; padding: 110px 0 60px; }
}
