:root {
  --container: 1080px;
  --header-height: 72px;
  --bg: #f5f5f5;
  --surface: #fff;
  --surface-soft: #e8e8e8;
  --text: #262626;
  --muted: #5c5c5c;
  --heading: #0d0d0d;
  --primary: #8a4a4a;
  --primary-strong: #6b3838;
  --accent: #8a4a4a;
  --border: rgb(0 0 0 / 10%);
  --shadow-soft: 0 14px 34px rgb(0 0 0 / 6%);
  --font-display: "IBM Plex Sans", system-ui, -apple-system, 'Segoe UI', arial, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, 'Segoe UI', arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(var(--container), calc(100% - 42px));
  margin-inline: auto;
}

.narrow {
  max-width: 680px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  background: rgb(245 245 245 / 94%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-block: 12px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-right: auto;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.02em;
}

.site-logo-mark {
  flex-shrink: 0;
}

.site-logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-active {
  color: var(--heading);
  border-bottom-color: var(--primary);
}

.locale-switcher {
  display: inline-flex;
  flex-shrink: 0;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.locale-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  text-decoration: none;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 4px;
}

.locale-text {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  user-select: none;
  line-height: 1;
}

.locale-flag-symbol {
  font-size: 1rem;
  line-height: 1;
}

.locale-label {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
}

.locale-active,
.locale-link:hover {
  color: var(--primary);
  background: var(--surface-soft);
}

.page {
  padding-top: var(--header-height);
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--heading);
  margin: 0 0 12px;
  line-height: 1.2;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 52ch;
}

.section-lead-follow {
  margin-top: 24px;
  margin-bottom: 0;
}

.hero {
  padding: 88px 0 72px;
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg) 55%, #e0e0e0 100%);
}

.hero-inner {
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 20px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.hero-actions-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.hero-trust {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--heading);
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.rhythm-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.card-note {
  margin: 0;
  padding: 0 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.bullet-list li {
  padding-left: 1.4em;
  position: relative;
  color: var(--text);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-band {
  background: var(--surface);
  border-block: 1px solid var(--border);
  text-align: center;
}

.cta-band .section-title {
  margin-bottom: 16px;
}

.cta-band .hero-description {
  margin-inline: auto;
}

.about-hero {
  padding-top: 48px;
}

.about-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.about-studio-photo {
  width: min(100%, 320px);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--heading);
}

.about-role {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0;
}

.about-p {
  margin: 0 0 1.25em;
  color: var(--text);
}

.about-p-follow {
  margin-top: 2rem;
}

.about-h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2em 0 0.75em;
  color: var(--heading);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

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

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--surface-soft);
  background: var(--surface-soft);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--heading);
}

.team-role {
  margin: 0;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.contacts-panel {
  max-width: 480px;
  margin: 0 auto;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary);
}

.contact-note {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  padding: 32px 0 48px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (width <= 640px) {
  :root {
    --header-height: 104px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    row-gap: 10px;
    padding-block: 10px;
  }

  .site-logo {
    flex: 1 1 auto;
    max-width: calc(100% - 72px);
  }

  .site-logo-text {
    font-size: 16px;
  }

  .locale-switcher {
    padding-left: 0;
    border-left: none;
  }

  .site-nav {
    flex: 1 1 100%;
    gap: 6px 14px;
    justify-content: flex-start;
  }

  .nav-link {
    font-size: 14px;
    padding-block: 4px;
  }

  .locale-link {
    padding: 6px 10px;
  }

  .section {
    padding: 48px 0;
  }
}

.breadcrumbs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem 0;
  font-size: 0.8125rem;
  color: var(--color-muted, #64748b);
}

.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.35rem;
  color: var(--color-border, #cbd5e1);
  pointer-events: none;
}

nav.breadcrumbs .breadcrumbs-item a {
  color: var(--color-muted, #64748b);
  text-decoration: none;
}

nav.breadcrumbs .breadcrumbs-item a:hover {
  color: var(--color-accent, #2563eb);
}

.breadcrumbs-item span[aria-current='page'] {
  color: var(--color-text, #1e293b);
  font-weight: 500;
}
