/* ============================================================
   SUNTOYA CORPORATION – MAIN STYLESHEET
   Light mode • Industrial red & blue • Modern sans-serif
============================================================ */

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --blue: #1A3A6B;
  --blue-dark: #0F2448;
  --blue-light: #2471B2;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #7A7A9A;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F7FA;
  --bg-tertiary: #EEF0F6;
  --border: #DDE0E8;
  --border-light: #ECEEF4;
  --shadow-sm: 0 1px 4px rgba(26,26,46,.06);
  --shadow: 0 2px 16px rgba(26,26,46,.09);
  --shadow-lg: 0 6px 32px rgba(26,26,46,.13);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
  --header-height: 72px;
  --container: 1240px;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}

/* ── Container ───────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-secondary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* .btn-outline-white defined with hero styles below */

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.btn-xs { padding: .3rem .75rem; font-size: .78rem; }
.btn-danger { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.btn-danger:hover { background: #c0392b; border-color: #c0392b; color: #fff; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; color: var(--text-secondary); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,58,107,.12);
}
.form-group textarea { resize: vertical; }
.form-hint { color: var(--text-muted); font-size: .8rem; margin-top: .3rem; }
.form-hint-inline { color: var(--text-muted); font-size: .8rem; }
.required { color: var(--red); }

/* Radio & Checkbox */
.radio-group, .permissions-grid { display: flex; flex-direction: column; gap: .5rem; }
.permissions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .5rem; }
.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  cursor: pointer;
}
.checkbox-label--prominent {
  font-size: .95rem;
  padding: .75rem;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #fde8e8; color: #821a1a; border: 1px solid #f5c6cb; }
.alert-info    { background: #d6eaf8; color: #154360; border: 1px solid #bee3f8; }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.badge-red    { background: rgba(192,57,43,.12); color: var(--red); }
.badge-blue   { background: rgba(26,58,107,.1); color: var(--blue); }
.badge-green  { background: #d5f5e3; color: #1d6a3e; }
.badge-gray   { background: #f0f0f0; color: #666; }
.badge-warning { background: #fff3cd; color: #856404; }

/* ── Text utilities ──────────────────────────────────────── */
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .6rem;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--transition);
}
.site-logo:hover { opacity: .85; color: inherit; }
.logo-icon {
  height: 42px;
  width: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-wordmark-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue);
  letter-spacing: .06em;
}
.logo-sub {
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav-link {
  padding: .5rem .9rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue); background: var(--bg-secondary); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .25s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,72,.88) 0%, rgba(26,26,46,.7) 60%, rgba(15,36,72,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 1.5rem 6rem;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(192,57,43,.25);
  color: #f8b0a7;
  border: 1px solid rgba(192,57,43,.4);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Split hero layout */
.hero-content--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-logo-block {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.88);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.hero-logo-img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  display: block;
}

/* Fix outline-white button – ensure visible on light bg near bottom */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: #fff;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scroll-bounce 1.6s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: .4; }
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 1.5rem 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 3rem;
  text-align: center;
}
.stat-item strong { font-size: 2rem; font-family: var(--font-heading); color: #fff; font-weight: 800; }
.stat-item span { font-size: .82rem; color: rgba(255,255,255,.7); letter-spacing: .05em; text-transform: uppercase; margin-top: .2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 600px; margin: .75rem auto 0; }

/* ── About Section ───────────────────────────────────────── */
.about-section { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 1.25rem; }
.about-content p { color: var(--text-secondary); margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.75rem 0; }
.feature-item { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .9rem; }
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon--red { background: rgba(192,57,43,.1); color: var(--red); }
.feature-icon--blue { background: rgba(26,58,107,.1); color: var(--blue); }
.feature-icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.about-image-stack { position: relative; height: 460px; }
.about-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 90%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-secondary);
}

/* ── Regions ─────────────────────────────────────────────── */
.regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.region-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.region-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-2px); }
.region-icon {
  width: 64px;
  height: 64px;
  background: rgba(26,58,107,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue);
}
.region-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.region-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.region-card p { font-size: .875rem; color: var(--text-secondary); }
.region-phone, .region-fax { font-size: .82rem; margin-top: .25rem; }
.region-phone a { color: var(--blue); }
.region-fax { color: var(--text-muted); }

/* ── Full-width image section ────────────────────────────── */
.full-image-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.full-image-section img { width: 100%; height: 100%; object-fit: cover; }
.full-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,36,72,.9), rgba(15,36,72,.65));
  display: flex;
  align-items: center;
}
.full-image-overlay .container h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.25rem); max-width: 600px; }
.full-image-overlay .container p { color: rgba(255,255,255,.8); max-width: 500px; margin-top: .75rem; }

/* ── Services Preview ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--border-light);
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,58,107,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.service-card p { font-size: .875rem; color: var(--text-secondary); }

/* ── Photo CTA ───────────────────────────────────────────── */
.photo-cta-section { background: var(--bg-secondary); }
.photo-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.photo-cta-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: 380px; object-fit: cover; width: 100%; }
.photo-cta-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 1rem; }
.photo-cta-content p { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-section p { color: rgba(255,255,255,.8); max-width: 560px; margin: 1rem auto 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 4rem 0 3.5rem;
  margin-bottom: 0;
}
.page-hero .section-tag { color: rgba(192,57,43,.9); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.78); max-width: 600px; margin-top: .75rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.6); font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ── Services page ───────────────────────────────────────── */
.services-section-block { padding: 2.5rem 0; }
.services-section-block + .services-section-block { border-top: 1px solid var(--border-light); }
.services-section-block h2 { font-size: 1.5rem; color: var(--blue); margin-bottom: 1.25rem; }
.services-section-block.alt-bg { background: var(--bg-secondary); padding: 2.5rem 2rem; border-radius: var(--radius-lg); }
.markdown-content { color: var(--text-secondary); line-height: 1.75; }
.markdown-content h1, .markdown-content h2, .markdown-content h3 { color: var(--text-primary); margin: 1.5rem 0 .75rem; }
.markdown-content h1 { font-size: 1.8rem; }
.markdown-content h2 { font-size: 1.4rem; }
.markdown-content h3 { font-size: 1.15rem; }
.markdown-content p { margin-bottom: 1rem; }
.markdown-content ul, .markdown-content ol { margin: 0 0 1rem 1.5rem; }
.markdown-content li { margin-bottom: .35rem; }
.markdown-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.markdown-content th, .markdown-content td { padding: .6rem .9rem; border: 1px solid var(--border); text-align: left; }
.markdown-content th { background: var(--bg-secondary); font-weight: 600; }
.markdown-content code { background: var(--bg-secondary); padding: .15rem .4rem; border-radius: 4px; font-size: .88em; }
.markdown-content pre { background: var(--bg-secondary); padding: 1rem; border-radius: var(--radius); overflow-x: auto; margin-bottom: 1rem; }
.markdown-content blockquote { border-left: 3px solid var(--blue); padding-left: 1rem; color: var(--text-muted); margin-bottom: 1rem; }
.markdown-content img { border-radius: var(--radius); max-width: 100%; margin: 1rem 0; }
.markdown-content hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.markdown-content a { color: var(--blue); text-decoration: underline; }

/* ── Video Grid ──────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.video-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.video-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue); color: inherit; }
.video-thumb {
  background: linear-gradient(135deg, #1A3A6B 0%, #0F2448 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-play-icon { color: rgba(255,255,255,.85); transition: transform var(--transition); }
.video-card:hover .video-play-icon { transform: scale(1.15); }
.video-play-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.video-duration {
  position: absolute;
  bottom: .6rem;
  right: .75rem;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .78rem;
  padding: .2rem .5rem;
  border-radius: 4px;
}
.video-info { padding: 1.25rem; }
.video-info h3 { font-size: 1rem; margin-bottom: .5rem; }
.video-info p { font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; }
.video-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-muted); }

/* Video player */
.video-player-wrapper { background: #000; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
.main-video-player { width: 100%; max-height: 65vh; display: block; }
.video-player-info { margin-bottom: 1.5rem; }
.video-player-info h1 { font-size: 1.75rem; margin-bottom: .5rem; }
.video-player-meta { display: flex; gap: 1.5rem; color: var(--text-muted); font-size: .875rem; margin-bottom: .75rem; }
.video-player-meta span { display: flex; align-items: center; gap: .35rem; }
.video-player-meta svg { fill: none; stroke: currentColor; stroke-width: 2; }
.video-description { color: var(--text-secondary); line-height: 1.7; }
.video-nav { padding-top: 1rem; border-top: 1px solid var(--border-light); }

/* ── Team ────────────────────────────────────────────────── */
.team-section-header { margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid var(--border-light); }
.team-section-header h2 { font-size: 1.5rem; color: var(--blue); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.team-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.team-card:hover { box-shadow: var(--shadow); border-color: var(--blue); transform: translateY(-2px); color: inherit; }
.team-card-photo { margin: 0 auto 1rem; }
.team-card-photo-frame { position: relative; width: 80px; height: 80px; margin: 0 auto; }
.team-card-photo-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--bg-secondary); }
.team-card-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.team-cpmr-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  pointer-events: none;
}
.team-cpmr-badge--profile { width: 64px; height: 64px; }
.team-card-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}
.team-card h3 { font-size: .95rem; margin-bottom: .25rem; }
.team-card-title { font-size: .8rem; color: var(--text-muted); margin-bottom: .25rem; }
.team-card-email { font-size: .78rem; color: var(--blue); }
.team-card-phone { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

.location-team-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.location-team-section--alt { background: var(--bg-secondary); }
.location-team-section .location-team-block { margin-bottom: 0; }
.location-team-block { margin-bottom: 3rem; }
.location-team-header { margin-bottom: 1.25rem; padding-bottom: .6rem; }
.location-team-title-wrap { width: 100%; }
.location-team-header h2 { color: var(--blue); font-size: 1.35rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.location-team-header h2 svg { fill: none; stroke: var(--red); stroke-width: 2; }
.location-office-address { font-size: .9rem; color: var(--text-secondary); margin-bottom: .35rem; white-space: pre-line; }
.location-office-contact { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.location-phone-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; color: var(--text-secondary); white-space: nowrap; }
.location-phone-link svg { fill: none; stroke: currentColor; stroke-width: 2; }
.location-phone-link:hover { color: var(--blue); }
.location-fax-link { font-size: .85rem; color: var(--text-muted); }
.location-team-empty { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.department-block { margin-bottom: 2rem; }
.department-label { font-size: .85rem; font-weight: 700; color: var(--red); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .85rem; }

/* Team profile page */
.team-profile { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; padding: 2rem 0; }
.team-profile-photo { flex-shrink: 0; }
.team-profile-photo-frame { position: relative; width: 200px; height: 200px; }
.team-profile-photo-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--bg-secondary); }
.team-profile-photo-inner img { width: 100%; height: 100%; object-fit: cover; }
.team-profile-position--extra { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.team-profile-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
}
.team-profile h1 { font-size: 2rem; margin-bottom: .25rem; }
.team-profile-title { color: var(--text-muted); font-size: 1.1rem; margin-bottom: .75rem; }
.team-profile-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.team-profile-email { display: flex; align-items: center; gap: .4rem; color: var(--blue); font-size: .95rem; margin-bottom: .5rem; }
.team-profile-email svg { fill: none; stroke: currentColor; stroke-width: 2; }
.team-profile-phone { display: flex; align-items: center; gap: .4rem; color: var(--text-secondary); font-size: .95rem; margin-bottom: 1rem; }
.team-profile-phone svg { fill: none; stroke: currentColor; stroke-width: 2; }
.team-profile-phone:hover { color: var(--blue); }
.team-profile-bio { color: var(--text-secondary); line-height: 1.75; margin-top: 1rem; }
.team-back { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }

/* ── Featured Product (homepage) ─────────────────────────── */
.featured-product-section { padding-bottom: 0; }
.featured-product-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.featured-product-inner .section-tag { margin-bottom: 1.25rem; }
.featured-product-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 1.75rem;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.featured-product-image img {
  display: block;
  width: 100%;
  height: auto;
}
.featured-product-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}
.featured-product-tagline {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* ── Sizing Tools ─────────────────────────────────────────── */
.sizing-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.sizing-tool-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(26,58,107,.06);
}
.sizing-tool-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.sizing-tool-card-image {
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sizing-tool-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.sizing-tool-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.sizing-tool-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.sizing-tool-card-body h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.sizing-tool-card-body p {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.sizing-tool-card-link {
  color: var(--red);
  font-weight: 600;
  font-size: .85rem;
}

/* ── Product Lines ────────────────────────────────────────── */
.section--linecard { padding-top: 0; }
.location-linecard-wrap {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.location-linecard-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.location-linecard-link {
  display: inline-block;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 58, 107, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.location-linecard-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26, 58, 107, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.location-linecard-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
}
.location-linecard-hint {
  margin-top: .65rem;
  font-size: .82rem;
  color: var(--text-muted);
}
.location-linecard-link { position: relative; }
.location-linecard-link--pdf::after {
  content: 'PDF';
  position: absolute;
  top: .65rem;
  right: .65rem;
  background: rgba(26, 58, 107, .88);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .2rem .45rem;
  border-radius: 4px;
}

.location-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.location-select-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.location-select-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.location-icon { width: 64px; height: 64px; background: rgba(26,58,107,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--blue); }
.location-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.location-select-card h3 { margin-bottom: .35rem; }
.location-select-card p { color: var(--text-muted); font-size: .875rem; }
.location-office-meta { font-size: .8rem !important; line-height: 1.45; margin-bottom: .35rem !important; white-space: pre-line; }
.location-cta { color: var(--red); font-weight: 600; font-size: .875rem; margin-top: .75rem; display: block; }

.product-lines-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }
.product-line-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-line-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.product-line-image { background: var(--bg-secondary); height: 135px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-line-image img { width: 100%; height: 100%; object-fit: cover; }
.product-line-image--placeholder { color: var(--text-muted); }
.product-line-image--placeholder svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.product-line-info { padding: 1.25rem; }
.product-line-info h3 { margin-bottom: .4rem; }
.product-line-info p { font-size: .875rem; color: var(--text-secondary); margin-bottom: .75rem; }
.product-line-link { color: var(--red); font-weight: 600; font-size: .85rem; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.contact-form-wrap {}
.contact-form {}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--border-light);
}
.contact-info-card h3 { margin-bottom: 1rem; font-size: 1rem; }
.contact-regions, .contact-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.contact-regions li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-secondary); }
.contact-regions li svg { fill: none; stroke: var(--red); stroke-width: 2; flex-shrink: 0; }
.contact-links li a { color: var(--blue); font-size: .9rem; }
.office-locations-list { display: flex; flex-direction: column; gap: 1rem; }
.office-location-item h4 { font-size: .95rem; margin-bottom: .35rem; color: var(--blue); }
.office-location-item p { font-size: .875rem; color: var(--text-secondary); margin-bottom: .2rem; white-space: pre-line; }
.office-location-item a { color: var(--blue); }
.office-fax { color: var(--text-muted) !important; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social a {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact li { font-size: .875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .82rem; }
.footer-admin-link {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  text-decoration: none;
}
.footer-admin-link:hover { color: rgba(255,255,255,.5); }

/* ── Auth pages ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.auth-card--wide { max-width: 560px; }
.auth-logo { text-align: center; margin-bottom: 1.5rem; }
.auth-logo-img { height: 48px; width: auto; display: block; margin: 0 auto; object-fit: contain; }
.auth-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: .25rem; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
.auth-setup-badge {
  text-align: center;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.auth-links { text-align: center; margin-top: 1.25rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.auth-links a { font-size: .875rem; color: var(--text-muted); }
.auth-links a:hover { color: var(--blue); }
.input-with-toggle { position: relative; }
.input-with-toggle input { padding-right: 2.75rem; }
.toggle-password {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
}
.toggle-password svg { fill: none; stroke: currentColor; stroke-width: 2; }

/* ── Empty states ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state svg { fill: none; stroke: currentColor; stroke-width: 1.5; margin: 0 auto 1rem; opacity: .4; }
.empty-state p { font-size: 1rem; }
.error-number { font-size: 6rem; font-family: var(--font-heading); font-weight: 800; color: var(--border); line-height: 1; }

/* ── Markdown content page ───────────────────────────────── */
.formulas-content { max-width: 100%; }

/* ── Scroll animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: none;
}

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.badge-promo {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.badge-new {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.badge--lg {
  font-size: .8rem;
  padding: .3rem .9rem;
}

/* ── Featured sections (promotions / new arrivals) ───────── */
.section--promotions { background: #fffbf9; }
.section--new-arrivals { background: #f8fbff; }

.featured-strip-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.featured-strip-header h2 { margin: 0; font-size: 1.4rem; }

.featured-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.featured-section-card {
  background: var(--bg-primary);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.featured-section-card--promo { border-top: 3px solid #dc2626; }
.featured-section-card--new  { border-top: 3px solid #2563eb; }
.featured-section-badge { margin-bottom: .75rem; }
.featured-section-card h3 { margin: 0 0 .75rem; font-size: 1.1rem; }

/* ── Request a Design form ───────────────────────────────── */
.form-success-card {
  text-align: center;
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  max-width: 520px;
  margin: 0 auto;
}
.form-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-green, #16a34a);
}
.form-success-card h2 { margin: 0 0 .75rem; }
.form-success-card p  { color: var(--text-muted); margin: 0; }

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-logos-section .section-header,
.gallery-photos-section .section-header {
  margin-bottom: 2rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.logo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.logo-card-img {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--bg-secondary);
}

.logo-card-img--light { background: #f8f9fc; }

.logo-card-img img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.logo-card-meta {
  padding: .875rem 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  gap: .75rem;
}

.logo-card-name {
  font-weight: 600;
  font-size: .875rem;
  color: var(--text-secondary);
}

.gallery-filter-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.gallery-filter-tab {
  padding: .35rem .9rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-primary);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.gallery-filter-tab.active,
.gallery-filter-tab:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.pub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.pub-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-secondary);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pub-gallery-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pub-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.pub-gallery-item:hover img {
  transform: scale(1.03);
}

.pub-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .6rem .875rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff;
  font-size: .78rem;
  line-height: 1.35;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open { display: flex; }

.lightbox-inner {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.lightbox-caption {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  margin-top: .75rem;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-stack { height: 320px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 1px solid var(--border-light);
    gap: .25rem;
  }
  .site-nav.is-open { display: flex; }
  .nav-link { width: 100%; padding: .75rem 1rem; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .team-profile { grid-template-columns: 1fr; text-align: center; }
  .team-profile-photo-frame { margin: 0 auto; }
  .team-profile-email, .team-profile-phone { justify-content: center; }
  .hero-content h1 { font-size: 2rem; }
  .stats-bar .container { gap: 0; }
  .stat-item { padding: .5rem 1.5rem; }
  .stat-divider { display: none; }
  .full-image-section { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .hero-content--split { flex-direction: column; gap: 2rem; }
  .hero-logo-block { order: -1; }
  .hero-logo-img { width: clamp(120px, 40vw, 180px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .featured-product-image { max-width: 320px; }
}

@media (max-width: 480px) {
  .regions-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .pub-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: 1fr 1fr; }
}
