/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #FFFFFF;
  --off:     #F7F7F7;
  --border:  #E8E8E8;
  --ink:     #0A0A0A;
  --ink-2:   #444444;
  --ink-3:   #888888;
  --wine:    #8C1C2B;
  --wine-2:  #A82236;
  --wine-bg: #F9F0F2;
  --gold:    #C4962A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

em { font-style: italic; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 100svh;
}

/* Photo column */
.hero-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.92;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    var(--white) 100%
  ),
  linear-gradient(
    to top,
    rgba(10,10,10,0.5) 0%,
    transparent 35%
  );
}

.hero-tag {
  position: absolute;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Content column */
.hero-content-col {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 0 60px 0 48px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1.5px solid var(--border);
  flex-shrink: 0;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.logo-dot { color: var(--wine); }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.lang-toggle:hover { color: var(--ink); border-color: var(--ink-2); }

.header-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  border: 1.5px solid var(--wine);
  padding: 9px 22px;
  border-radius: 99px;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.header-cta:hover { background: var(--wine); color: var(--white); }

/* Hero body */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 60px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-title em {
  color: var(--wine);
  font-style: italic;
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.74;
  color: var(--ink-2);
 /* max-width: 440px; */
  margin-bottom: 44px;
}

/* Pillars */
.hero-pillars {
  list-style: none;
  border-top: 1.5px solid var(--border);
  margin-bottom: 44px;
}

.hero-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1.5px solid var(--border);
}

.pillar-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--wine);
  opacity: 0.5;
  letter-spacing: 0.06em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 22px;
}

.hero-pillars strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-pillars p {
  font-size: 0.8rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

/* CTA */
.btn-main {
  display: inline-block;
  background: var(--wine);
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 3px;
  letter-spacing: 0.01em;
  align-self: flex-start;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(140,28,43,0.22);
}
.btn-main:hover { background: var(--wine-2); transform: translateY(-1px); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--wine);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-track .sep { opacity: 0.35; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CONTACT ── */
.contact-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1.5px solid var(--border);
}

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}

.contact-title em { color: var(--wine); }

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 40px;
}

.contact-facts {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fact-icon {
  font-size: 1rem;
  color: var(--wine);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.fact-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 180px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.form-group input,
.form-group textarea {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 13px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-submit:hover { background: var(--wine); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-submit-icon { transition: transform 0.15s; }
.btn-submit:hover .btn-submit-icon { transform: translateX(4px); }

.form-privacy {
  font-size: 0.73rem;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}

/* Success */
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
  border-radius: 3px;
}
.form-success[hidden] { display: none; }

.success-icon {
  font-size: 1.1rem;
  color: #16A34A;
  font-weight: 700;
  flex-shrink: 0;
}
.form-success p { font-size: 0.88rem; color: var(--ink); margin: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 26px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-copy {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 52vh auto; }
  .hero-photo-col { height: 52vh; }
  .hero-photo-overlay {
    background: linear-gradient(to bottom, transparent 55%, var(--white) 100%);
  }
  .hero-content-col { padding: 0 28px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 28px; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; padding: 22px 28px; }
}

@media (max-width: 600px) {
  .hero-content-col { padding: 0 18px; }
  .hero-body { padding: 36px 0 48px; }
  .hero-title { font-size: 2.6rem; }
  .btn-main { align-self: stretch; text-align: center; }
  .contact-inner { padding: 0 18px; }
  .contact-facts { flex-direction: column; gap: 20px; }
  .site-footer { padding: 22px 18px; }
}
