:root {
  --bg: #f6f0e8;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #14343b;
  --muted: #53757b;
  --brand: #0d8a82;
  --brand-deep: #0d5f69;
  --accent: #ff9f5a;
  --shadow: 0 24px 60px rgba(13, 95, 105, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --content-width: min(1180px, calc(100vw - 40px));
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 159, 90, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(13, 138, 130, 0.18), transparent 28%),
    linear-gradient(180deg, #fff7ef 0%, #f6f0e8 35%, #eef5f4 100%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 240, 232, 0.72);
  border-bottom: 1px solid rgba(20, 52, 59, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 26px rgba(13, 95, 105, 0.24);
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-deep);
}

.hero {
  padding-top: 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.info-card,
.product-card,
.office-card,
.article-card,
.contact-card,
.office-note {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  border-radius: 34px;
  padding: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  margin-top: 22px;
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 32px rgba(13, 95, 105, 0.24);
}

.button-secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(13, 95, 105, 0.15);
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(20, 52, 59, 0.08);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.36rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 159, 90, 0.22), transparent 32%),
    linear-gradient(160deg, rgba(13, 138, 130, 0.15), rgba(255, 255, 255, 0.75));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 215, 187, 0.72);
  filter: blur(6px);
}

.hero-panel-top,
.hero-badges {
  position: relative;
  z-index: 1;
}

.hero-panel-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 52, 59, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.hero-spotlight {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.spotlight-label {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-spotlight h2 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.hero-spotlight p:last-child {
  margin-top: 18px;
}

.hero-badges {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.badge-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(20, 52, 59, 0.08);
}

.badge-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  margin-top: 16px;
}

.promise-grid,
.product-grid,
.office-grid,
.article-grid {
  display: grid;
  gap: 20px;
}

.promise-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.info-card p {
  margin-top: 14px;
}

.products .product-grid {
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  padding: 26px;
  min-height: 100%;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-kicker,
.office-kicker,
.article-kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 159, 90, 0.12);
  color: #b85c1b;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-title {
  margin-top: 8px;
  font-size: 1.44rem;
}

.product-subtitle {
  margin-top: 10px;
  font-size: 0.96rem;
}

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

.product-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.55;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.office-note {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}

.office-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-card {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.office-card h3 {
  margin-top: 10px;
}

.office-meta {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.office-meta div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 52, 59, 0.08);
}

.office-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.articles .article-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-filters {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(20, 52, 59, 0.08);
}

.filter-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.filter-button.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 95, 105, 0.2);
}

.article-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.article-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-time {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 138, 130, 0.1);
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.8rem;
}

.article-card h3 {
  margin-top: 14px;
}

.article-card p {
  margin-top: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
}

.site-footer {
  padding: 26px 0 38px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid rgba(20, 52, 59, 0.1);
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .promise-grid,
  .products .product-grid,
  .office-grid,
  .articles .article-grid,
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    display: none;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .product-card,
  .office-card,
  .article-card,
  .contact-card {
    padding: 24px;
  }

  .hero-stats,
  .hero-badges,
  .promise-grid,
  .products .product-grid,
  .office-grid,
  .articles .article-grid {
    grid-template-columns: 1fr;
  }

  .article-filters {
    width: 100%;
    border-radius: 24px;
  }

  .filter-button {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  .hero-copy {
    padding-top: 32px;
  }

  .button,
  .filter-button {
    width: 100%;
  }
}
