:root {
  --bg: #f4f5f4;
  --bg-soft: #edf3f1;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #1c3f3c;
  --muted: #628883;
  --line: rgba(28, 63, 60, 0.12);
  --accent: #4b8f87;
  --accent-dark: #2f7c74;
  --accent-soft: #dceceb;
  --shadow: 0 24px 60px rgba(28, 63, 60, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(75, 143, 135, 0.18), transparent 28%),
    linear-gradient(180deg, #fafcf9 0%, var(--bg) 100%);
}

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

strong {
  font-weight: 800;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 242, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.95rem;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(75, 143, 135, 0.24);
  box-shadow: 0 10px 24px rgba(28, 63, 60, 0.08);
}

.brand-text {
  display: inline-block;
}

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: var(--muted);
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.lang-button {
  min-width: 3rem;
  min-height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.hero,
.section {
  padding: 5.5rem 0;
}

.hero-grid,
.social-panel,
.contact-grid,
.section-heading,
.steps-grid,
.stats-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  min-height: calc(100vh - 78px);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.9;
}

h2 {
  margin: 0.4rem 0 0;
  max-width: 14ch;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.96;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.9rem;
}

.hero-copy,
.section-intro,
.step-card p,
.brand-card p,
.social-panel p,
.contact-card p,
.footer-content,
.details-list dd {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #f8fffb;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary,
.instagram-link {
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.hero-panel,
.step-card,
.stat-card,
.brand-card,
.social-panel,
.map-frame,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel,
.social-panel,
.contact-card {
  padding: 2rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.hero-logo {
  display: block;
  width: min(100%, 260px);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(28, 63, 60, 0.1);
}

.panel-title {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.details-list {
  margin: 0;
}

.details-list div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.details-list dt {
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.details-list dd {
  margin: 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(235, 241, 234, 0.22), rgba(235, 241, 234, 0.7));
}

.section-alt {
  background: linear-gradient(180deg, rgba(220, 238, 229, 0.32), rgba(235, 241, 234, 0.82));
}

.section-heading {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 2rem;
}

.steps-grid,
.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card,
.stat-card,
.brand-card {
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
  font-family: "Cormorant Garamond", serif;
}

.stat-card span {
  color: var(--muted);
}

.brand-sections {
  display: grid;
  gap: 2rem;
}

.brand-group-head {
  margin-bottom: 1rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 242, 0.92));
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-card p {
  margin: 0.9rem 0 0;
  font-weight: 700;
  color: var(--text);
}

.social-panel,
.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.section-map {
  padding-bottom: 4rem;
}

.map-frame {
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 1000px) {
  .hero-grid,
  .section-heading,
  .steps-grid,
  .stats-grid,
  .brand-grid,
  .social-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 2rem;
  }

  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-controls {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    justify-content: flex-start;
  }

  .hero,
  .section {
    padding: 4rem 0;
  }

  .map-frame iframe {
    height: 360px;
  }
}
