:root {
  --color-bg: #faf8f6;
  --color-bg-alt: #f1ece7;
  --color-dark: #201a17;
  --color-text: #2c2622;
  --color-muted: #6b6058;
  --color-accent: #8a1f2b;
  --color-accent-light: #b5464f;
  --color-border: #e3dad2;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-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;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

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

a { color: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.logo span { color: var(--color-accent); }

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

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-switch a {
  text-decoration: none;
  color: var(--color-muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-switch a:hover { color: var(--color-accent); }

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

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

.footer-inner .lang-switch a { color: #a89f97; }
.footer-inner .lang-switch a.is-active { color: #fff; background: rgba(255, 255, 255, 0.08); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  display: block;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, #fff 0%, var(--color-bg) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px -20px rgba(32, 26, 23, 0.35);
  border: 1px solid var(--color-border);
}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0 56px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--color-bg-alt); }

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

.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 32px;
  max-width: 720px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fact-list li {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
}

.fact-list li:last-child { border-bottom: none; padding-bottom: 0; }

.fact-list span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 2px;
}

/* Expertise */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.expertise-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.expertise-icon {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.expertise-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.expertise-card p { font-size: 0.92rem; color: var(--color-muted); margin: 0; }

/* Ventures */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.venture-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 12px;
  padding: 26px;
}

.venture-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.venture-head h3 { font-size: 1.2rem; margin: 0; }

.venture-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
}

.venture-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-top: 2px;
}

.venture-card p { font-size: 0.92rem; color: var(--color-muted); margin: 0; }

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--color-border);
  padding-left: 32px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.timeline-content h3 { font-size: 1.15rem; margin-bottom: 4px; }

.timeline-org {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.timeline-list {
  margin: 0;
  padding-left: 20px;
  font-size: 0.94rem;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-content p:last-child {
  font-size: 0.94rem;
  color: var(--color-text);
  margin: 0;
}

/* Credentials */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.credential-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.credential-list li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
}

.credential-list li:last-child { border-bottom: none; padding-bottom: 0; }

.credential-list strong { font-size: 1rem; margin-bottom: 4px; }
.credential-list span { font-size: 0.88rem; color: var(--color-muted); }

/* Contact */
.section-dark {
  background: var(--color-dark);
  color: #fff;
}

.section-dark .section-tag { color: var(--color-accent-light); }
.section-dark h2 { color: #fff; }

.contact-inner { text-align: center; }
.contact-inner .section-tag { justify-content: center; }
.contact-inner h2 { margin-left: auto; margin-right: auto; }

.contact-lead {
  max-width: 560px;
  margin: 0 auto 32px;
  color: #d8d2cc;
}

.contact-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c9c1b9;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #8f857c;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent-light);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status.is-success { color: #7fd99a; }
.form-status.is-error { color: #e08b8b; }

.contact-location {
  margin-top: 20px;
  font-size: 0.88rem;
  color: #a89f97;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #a89f97;
  padding: 24px 0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .credentials-grid { grid-template-columns: 1fr; gap: 32px; }
  .expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-photo { max-width: 320px; margin: 0 auto; order: -1; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-border);
    display: none;
    gap: 18px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .expertise-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 48px; }
  .section { padding: 64px 0; }
}

/* Nav active state */
.nav a.active { color: var(--color-accent); }

/* Blog */
.hero-compact { padding: 72px 0 48px; }

.page-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  padding-bottom: 16px;
}

.switcher-btn {
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-muted);
  background: var(--color-bg-alt);
  transition: all 0.15s ease;
}

.switcher-btn:hover { color: var(--color-accent); }

.switcher-btn.is-active {
  background: var(--color-accent);
  color: #fff;
}

.blog-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }

.filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.blog-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.blog-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  cursor: pointer;
  overflow: hidden;
}

.blog-media img,
.blog-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-media-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(32, 26, 23, 0.75);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-card figcaption { padding: 16px 18px; }

.blog-caption { font-size: 0.95rem; margin: 0 0 6px; }

.blog-date {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-empty {
  text-align: center;
  color: var(--color-muted);
  padding: 40px 20px;
  border: 1px dashed var(--color-border);
  border-radius: 14px;
}

.blog-empty code {
  background: var(--color-bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox-content {
  max-width: min(900px, 92vw);
  max-height: 88vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Article pages (Motivation & Relation, Wine Knowledge) */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: 12px;
  padding: 32px;
}

.article-date {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.article-card h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.article-card p {
  color: var(--color-muted);
  margin: 0;
}
