:root {
  --bg: #eef1f4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #102033;
  --muted: #5c6977;
  --line: rgba(16, 32, 51, 0.12);
  --brand: #0f6a7b;
  --brand-dark: #0a4250;
  --accent: #c46d2d;
  --steel: #243447;
  --shadow: 0 24px 80px rgba(18, 37, 58, 0.12);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 109, 45, 0.16), transparent 34%),
    linear-gradient(180deg, #f5f7f8 0%, #e6edf1 100%);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.brand-mark {
  display: grid;
  gap: 2px;
}

.brand-mark__eyebrow,
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.brand-mark__name {
  font-family: "Barlow", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark__tag {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.menu-list,
.menu-fallback {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.96rem;
}

.menu-list a,
.menu-fallback a,
.language-switcher a {
  color: var(--steel);
}

.menu-list a:hover,
.menu-fallback a:hover,
.language-switcher a:hover,
.text-link:hover {
  color: var(--brand);
}

.language-switcher {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px 0;
  background: var(--steel);
}

.site-main {
  padding-bottom: 72px;
}

.hero,
.page-hero,
.stats-band,
.content-section,
.cta-band {
  padding: 56px 0;
}

.hero-grid,
.split-panel,
.cta-shell,
.footer-grid,
.page-hero__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero h1,
.page-hero h1,
.section-heading h2,
.site-footer h2 {
  font-family: "Barlow", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.page-hero h1,
.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lead,
.section-content p,
.prose p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-panel,
.content-card,
.category-card,
.stat-card,
.detail-card,
.contact-card,
.form-shell,
.media-frame,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(15, 106, 123, 0.12), rgba(255, 255, 255, 0.95)),
    #fff;
}

.hero-panel__media,
.page-hero__media,
.product-card__thumb,
.post-card__thumb,
.category-card__thumb,
.visual-card .media-frame {
  padding: 0;
}

.hero-panel__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(15, 106, 123, 0.12);
  color: var(--brand-dark);
}

.hero-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-panel__media {
  margin-top: 18px;
}

.hero-panel__list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(36, 52, 71, 0.08);
  color: var(--steel);
  font-size: 0.86rem;
}

.hero-actions,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
}

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

.button-secondary {
  background: #ffffff;
  color: var(--steel);
  border: 1px solid rgba(36, 52, 71, 0.14);
}

.stat-grid,
.card-grid,
.category-grid,
.detail-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

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

.category-grid,
.detail-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.content-card,
.category-card,
.detail-card,
.contact-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  color: var(--brand-dark);
}

.content-card h2,
.content-card h3,
.category-card h3,
.detail-card h3,
.contact-card h3 {
  margin-top: 0;
  font-family: "Barlow", sans-serif;
}

.feature-list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.footer-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  font-weight: 700;
}

.cta-band .cta-shell,
.hero-panel,
.page-hero .container,
.prose,
.faq-list {
  position: relative;
}

.page-hero--with-media .page-hero__grid {
  align-items: center;
}

.page-hero__media {
  min-height: 280px;
}

.page-hero__media img,
.hero-panel__media img,
.product-card__thumb img,
.post-card__thumb img,
.category-card__thumb img,
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-shell,
.form-shell {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(36, 52, 71, 0.96), rgba(15, 106, 123, 0.92)),
    #102033;
  color: #fff;
}

.cta-shell .eyebrow,
.cta-shell p,
.cta-shell label,
.cta-shell small {
  color: rgba(255, 255, 255, 0.82);
}

.form-shell {
  background: rgba(255, 255, 255, 0.1);
}

.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #fff;
  background: rgba(0, 0, 0, 0.14);
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.notice-box {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.notice-success {
  background: rgba(84, 190, 110, 0.18);
}

.notice-error {
  background: rgba(210, 90, 90, 0.18);
}

.prose,
.faq-list {
  max-width: 820px;
}

.faq-item {
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-answer {
  padding-top: 14px;
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #183144 0%, #102033 100%);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.footer-meta {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
}

.pagination-shell,
.center {
  text-align: center;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.media-frame {
  overflow: hidden;
  padding: 16px;
}

.post-card,
.product-card,
.category-card,
.visual-card {
  overflow: hidden;
}

.post-card__thumb,
.product-card__thumb,
.category-card__thumb {
  margin: -22px -22px 18px;
  min-height: 220px;
}

.visual-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card figcaption {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .split-panel,
  .cta-shell,
  .footer-grid,
  .page-hero__grid,
  .stat-grid,
  .card-grid,
  .category-grid,
  .detail-grid,
  .contact-grid,
  .process-steps,
  .visual-gallery,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .nav-shell {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 12px;
  }

  .nav-shell.is-open {
    display: flex;
  }

  .menu-list,
  .menu-fallback,
  .language-switcher {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .split-panel,
  .cta-shell,
  .footer-grid,
  .page-hero__grid,
  .stat-grid,
  .card-grid,
  .category-grid,
  .detail-grid,
  .contact-grid,
  .process-steps,
  .visual-gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }
}
