:root {
  --bg: #f4efe8;
  --bg-accent: #e4d4bf;
  --surface: rgba(255, 251, 246, 0.74);
  --text: #1e1b18;
  --muted: #60574f;
  --brand: #a14f2b;
  --brand-deep: #6e3219;
  --line: rgba(30, 27, 24, 0.1);
  --shadow: 0 30px 80px rgba(80, 43, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(161, 79, 43, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(110, 50, 25, 0.18), transparent 28%),
    linear-gradient(145deg, var(--bg) 0%, #f8f3ec 52%, var(--bg-accent) 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero-card {
  width: min(100%, 980px);
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  width: 280px;
  height: 280px;
  background: rgba(161, 79, 43, 0.1);
  top: -100px;
  right: -90px;
}

.hero-card::after {
  width: 180px;
  height: 180px;
  background: rgba(110, 50, 25, 0.08);
  bottom: -60px;
  left: -50px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(161, 79, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 28px rgba(80, 43, 26, 0.08);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--brand-deep);
}

.lang-button.is-active {
  background: var(--brand);
  color: #fff8f2;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
}

.lead {
  margin: 24px 0 0;
  max-width: 640px;
}

.lead p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.lead p + p {
  margin-top: 14px;
}

.pill-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(161, 79, 43, 0.15);
  background: rgba(255, 255, 255, 0.55);
  color: var(--brand-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-panel {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-label {
  margin: 0 0 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.contact-link {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  text-decoration: none;
}

.company-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--brand);
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px;
  }

  .hero-card {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .lead {
    margin-top: 20px;
  }

  .lead p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .pill-row span {
    width: 100%;
    text-align: center;
  }
}
