:root {
  --ink: #201b17;
  --muted: #675d54;
  --paper: #f7f1e7;
  --warm: #c2814a;
  --wine: #6c2d26;
  --olive: #66704a;
  --line: rgba(32, 27, 23, 0.16);
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(18, 15, 12, 0.76), rgba(18, 15, 12, 0));
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(18, 15, 12, 0.32);
  backdrop-filter: blur(10px);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.language-switcher a.active {
  color: #221913;
  background: #f1c889;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.brand-dot {
  color: #f0c58d;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  color: rgba(255, 250, 242, 0.84);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17120e;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(to right, rgba(14, 10, 7, 0.84), rgba(14, 10, 7, 0.38) 54%, rgba(14, 10, 7, 0.7)),
    linear-gradient(to top, rgba(14, 10, 7, 0.88), rgba(14, 10, 7, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 160px clamp(20px, 7vw, 88px) 88px;
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.signature-line {
  margin-top: 22px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
}

.lead {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(19px, 2.4vw, 25px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 250, 242, 0.32);
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  color: #231b13;
  background: #f1c889;
  border-color: #f1c889;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 56px);
}

.intro-grid,
.partner,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.intro-copy p:last-child,
.partner-list p:last-child {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.steps article {
  min-height: 330px;
  padding: clamp(28px, 5vw, 58px);
  background: #efe3d1;
}

.steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--wine);
  font-weight: 900;
}

.steps p {
  font-size: 17px;
}

.visual-band,
.detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.visual-band img,
.detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(32, 27, 23, 0.18);
}

.partner {
  max-width: none;
  background: #27231e;
  color: var(--white);
}

.partner > * {
  max-width: 540px;
}

.partner h2,
.partner p {
  color: var(--white);
}

.partner p {
  color: rgba(255, 250, 242, 0.76);
}

.partner-list {
  display: grid;
  gap: 20px;
}

.partner-list p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.contact {
  align-items: center;
}

.closing-line {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 56px);
  color: var(--white);
  background: var(--olive);
}

.closing-line p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.05;
  text-align: center;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: clamp(24px, 5vw, 44px);
  color: var(--white);
  background: var(--wine);
  border-radius: 8px;
}

.contact-card span {
  color: #efc58d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
}

.contact-card small {
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  color: rgba(255, 250, 242, 0.76);
  background: #17120e;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-top: 14px;
    gap: 12px;
  }

  .nav {
    gap: 13px;
    font-size: 13px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .intro-grid,
  .visual-band,
  .partner,
  .detail,
  .contact,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 28px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav {
    display: none;
  }

  .site-header {
    align-items: center;
  }

  .brand-mark {
    font-size: 26px;
  }

  .language-switcher {
    gap: 2px;
  }

  .language-switcher a {
    min-width: 29px;
    padding: 5px 6px;
    font-size: 11px;
  }

  h1 {
    font-size: 46px;
  }

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

  .button {
    justify-content: center;
  }
}
