:root {
  --ink: #102739;
  --ink-soft: #365062;
  --accent: #8f6a46;
  --sand: #e8dfd2;
  --mist: #f5f1eb;
  --white: #ffffff;
  --line: rgba(16, 39, 57, 0.12);
  --shadow: 0 24px 80px rgba(16, 39, 57, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(143, 106, 70, 0.18), transparent 34%),
    linear-gradient(180deg, #faf7f2 0%, #f3ede4 55%, #f8f4ee 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero {
  padding: 28px 28px 10px;
  background:
    linear-gradient(135deg, rgba(16, 39, 57, 0.98), rgba(25, 52, 72, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  color: var(--white);
}

.topbar,
.hero-grid,
.section,
.contact-panel {
  animation: rise 700ms ease both;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 22px;
}

.brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.language-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lang-button {
  min-width: 52px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-button:hover {
  transform: translateY(-1px);
}

.lang-button.is-active {
  background: #d5b897;
  color: #18222b;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  min-height: 78vh;
  padding: 28px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #d5b897;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.35rem;
}

.hero-title {
  margin: 10px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9c8b6;
}

.hero-text,
.info-card p,
.focus-card p,
.approach-panel p,
.contact-panel p {
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-text:empty {
  display: none;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d5b897, #b58d64);
  color: #18222b;
  font-weight: 800;
}

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

.hero-highlights {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-highlights li {
  padding-left: 18px;
  position: relative;
}

.hero-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d5b897;
}

.hero-portrait-wrap {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(100%, 430px);
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hero-portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.section {
  padding: 78px 28px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.intro-grid,
.focus-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.focus-card,
.approach-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.info-card,
.focus-card {
  padding: 28px;
}

.focus-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(143, 106, 70, 0.08), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.78);
}

.focus-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.approach-panel {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(16, 39, 57, 0.97), rgba(31, 59, 79, 0.95)),
    rgba(16, 39, 57, 0.95);
  color: var(--white);
}

.contact-panel .eyebrow {
  color: #d5b897;
}

.contact-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-panel,
  .intro-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100%, calc(100% - 18px));
    margin: 9px auto;
    border-radius: 22px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .language-switcher {
    align-self: flex-start;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  h2 {
    max-width: none;
  }

  .hero-card,
  .info-card,
  .focus-card,
  .approach-panel,
  .contact-panel {
    border-radius: 22px;
  }
}
