:root {
  --bg: #ffffff;
  --soft: #f5f9f9;
  --soft-2: #eef6f5;
  --text: #183237;
  --muted: #61777b;
  --line: #dce9e8;
  --accent: #2f7b7a;
  --accent-dark: #246260;
  --shadow: 0 18px 55px rgba(22, 62, 67, 0.09);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 233, 232, 0.9);
}

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

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.brand-name {
  font-weight: 760;
  letter-spacing: -0.01em;
}

.brand-role {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.nav-link {
  text-decoration: none;
  font-weight: 650;
  font-size: 15px;
  color: var(--accent-dark);
}

.hero {
  background: #ffffff;
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(48px, 7vw, 80px);
}

.hero-role {
  margin: 0 0 26px;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--accent);
  font-weight: 650;
}

.lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.portrait-wrap {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 64%, rgba(238, 246, 245, 0.95) 0%, rgba(255, 255, 255, 0) 64%);
}

.portrait {
  width: 100%;
  max-height: 590px;
  object-fit: contain;
  object-position: center bottom;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

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

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

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

.button-secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--accent-dark);
}

.intro-section {
  padding: 54px 0 28px;
  background: var(--soft);
}

.intro {
  max-width: 760px;
  text-align: center;
}

.intro h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 52px);
}

.intro p:last-child {
  margin: 0 auto;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.locations-section {
  padding: 32px 0 84px;
  background: var(--soft);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 100%;
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 850;
}

.location-label {
  margin: 1px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.location-card h3 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 34px);
}

address {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
  font-style: normal;
}

.card-actions {
  display: grid;
  gap: 10px;
}

.full {
  width: 100%;
  text-align: center;
}

.contact-note {
  margin: 18px 2px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.notice-section {
  padding: 78px 0;
  background: #ffffff;
}

.notice {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.notice h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.notice > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: var(--text);
}

.footer-right {
  text-align: right;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 52px;
  }

  .hero-grid,
  .locations-grid,
  .notice {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .portrait-wrap {
    min-height: 420px;
  }

  .portrait {
    max-height: 500px;
  }

  .notice {
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    padding: 42px 0 30px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 17px;
  }

  .portrait-wrap {
    min-height: 330px;
    border-radius: 26px;
  }

  .intro-section {
    padding-top: 48px;
  }

  .locations-section {
    padding-bottom: 62px;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px;
    border-radius: 22px;
  }

  .notice-section {
    padding: 54px 0;
  }

  .notice {
    padding: 28px;
    border-radius: 22px;
  }

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

  .footer-right {
    text-align: left;
  }
}
