/* ==========================================================================
   MeiXi International — Site Refresh
   Design tokens: teal/ink core brand + coral signal + mono "spec" accents
   ========================================================================== */

:root {
  /* Color */
  --ink: #0A1E29;
  --ink-soft: #102A39;
  --teal: #136F95;
  --teal-light: #1E93C4;
  --teal-pale: #E7F2F6;
  --coral: #FF5361;
  --coral-dark: #E23F4D;
  --green: #5FAE3B;
  --paper: #F6F8F9;
  --white: #FFFFFF;
  --slate-900: #101C24;
  --slate-600: #4A5A66;
  --slate-400: #7C8B96;
  --line: #E3EAEE;
  --line-soft: rgba(16,28,36,0.08);

  /* Type */
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--slate-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, #EAF4F8 0%, #F2F7F8 16%, #FBFDFD 34%, #FFFFFF 50%, #FBFDFD 66%, #F2F7F8 84%, #EAF4F8 100%),
    linear-gradient(rgba(19,111,149,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,111,149,0.05) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cg fill='none' stroke='rgba(19,111,149,0.09)' stroke-width='1'%3E%3Cpath d='M0 30H50V80H110V160'/%3E%3Cpath d='M30 0V45H90V100H160'/%3E%3Cpath d='M0 130H35V95H70'/%3E%3C/g%3E%3Cg fill='rgba(19,111,149,0.2)'%3E%3Ccircle cx='50' cy='80' r='2.6'/%3E%3Ccircle cx='90' cy='100' r='2.6'/%3E%3Ccircle cx='35' cy='95' r='2'/%3E%3C/g%3E%3Ccircle cx='110' cy='80' r='2.6' fill='rgba(255,83,97,0.24)'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat, repeat, repeat;
  background-size: 100% 100%, 22px 22px, 22px 22px, 160px 160px;
  background-position: top center, top center, top center, top center;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { line-height: 1.7; color: var(--slate-600); margin: 0; }

::selection { background: var(--coral); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* ==========================================================================
   Background patterns — "techy" texture layer
   ========================================================================== */
.pattern-emphasis { position: relative; isolation: isolate; }
.pattern-emphasis::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(19,111,149,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,111,149,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, black 0%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 0%, black 0%, transparent 82%);
}
.pattern-emphasis::after {
  content: '';
  position: absolute; top: 46px; right: 32px; z-index: -1;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1px dashed rgba(19,111,149,0.18);
}
@media (max-width: 900px) { .pattern-emphasis::after { display: none; } }

/* Corner bracket accent — engineering-drawing framing mark */
.tech-corners { position: relative; }
.tech-corners::before, .tech-corners::after {
  content: ''; position: absolute; width: 22px; height: 22px;
  border: 1.5px solid var(--coral); opacity: 0.55;
}
.tech-corners::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.tech-corners::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--coral);
  display: inline-block;
}

.section { padding: 120px 0; position: relative; }
@media (max-width: 900px) { .section { padding: 80px 0; } }
@media (max-width: 480px) { .section { padding: 56px 0; } }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 14px; }
.section-head h2 em { font-style: normal; color: var(--teal); }
.section-head p { margin-top: 16px; font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
@media (max-width: 480px) { .section-head { margin-bottom: 36px; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(255,83,97,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(255,83,97,0.65); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--mono);
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.2em;
  display: flex; align-items: center; gap: 12px;
}
.preloader-mark .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  animation: pulse 1s infinite ease-in-out;
}
@keyframes pulse { 0%,100% { opacity: .3; transform: scale(.8);} 50% { opacity: 1; transform: scale(1);} }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 26px 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -16px rgba(16,28,36,0.18);
  border-bottom-color: var(--line);
}
.site-header.scrolled .brand img { height: 40px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; }
.brand img { height: 48px; width: auto; }
@media (max-width: 480px) {
  .site-header { padding: 18px 0; }
  .brand img { height: 38px; }
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a:not(.btn) {
  color: var(--slate-600);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--coral);
  transition: width .25s var(--ease);
}
.main-nav a:not(.btn):hover,
.main-nav a:not(.btn).active { color: var(--ink); }
.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
    background: var(--white); box-shadow: -20px 0 50px -20px rgba(16,28,36,0.25);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 30px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .main-nav .btn-primary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .main-nav { padding-top: 88px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 190px 0 0;
  overflow: hidden;
  color: var(--ink);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(19,111,149,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,111,149,0.06) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cg fill='none' stroke='rgba(19,111,149,0.14)' stroke-width='1'%3E%3Cpath d='M0 30H50V80H110V160'/%3E%3Cpath d='M30 0V45H90V100H160'/%3E%3Cpath d='M0 130H35V95H70'/%3E%3C/g%3E%3Cg fill='rgba(19,111,149,0.28)'%3E%3Ccircle cx='50' cy='80' r='2.8'/%3E%3Ccircle cx='90' cy='100' r='2.8'/%3E%3Ccircle cx='35' cy='95' r='2.2'/%3E%3C/g%3E%3Ccircle cx='110' cy='80' r='2.8' fill='rgba(255,83,97,0.35)'/%3E%3C/svg%3E");
  background-size: 64px 64px, 64px 64px, 160px 160px;
  mask-image: radial-gradient(ellipse 75% 65% at 62% 25%, black 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 62% 25%, black 10%, transparent 78%);
}
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
  filter: blur(70px); opacity: 0.4;
}
.hero-glow.g1 { width: 380px; height: 380px; background: #BEE3F0; top: -140px; right: 6%; }
.hero-glow.g2 { width: 300px; height: 300px; background: #FFD3C9; bottom: -100px; left: 2%; opacity: 0.45; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--ink);
  margin-top: 22px;
}
.hero-copy h1 em { font-style: normal; color: var(--coral); }
.hero-copy h1 .soft { color: var(--slate-400); }
.hero-copy p.lead {
  color: var(--slate-600); font-size: 18px; max-width: 480px; margin-top: 22px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-phone { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 14px; color: var(--slate-600); }
.hero-phone i { color: var(--coral); }

.hero-visual { position: relative; height: 460px; }
.chip-card {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px;
  box-shadow: 0 24px 50px -20px rgba(16,28,36,0.22);
  animation: float 7s ease-in-out infinite;
}
.chip-card img { border-radius: 8px; }
.chip-card.c1 { width: 220px; top: 0; left: 8%; animation-delay: 0s; }
.chip-card.c2 { width: 170px; top: 55%; left: 0; animation-delay: 1.2s; }
.chip-card.c3 { width: 200px; top: 18%; right: 2%; animation-delay: .6s; }
.chip-card.c4 { width: 160px; bottom: 0; right: 14%; animation-delay: 1.8s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }

.scan-line {
  position: absolute; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
  animation: scan 4.5s linear infinite;
  opacity: .5;
}
@keyframes scan { 0% { top: 0; opacity: 0;} 10% { opacity: .5;} 90% { opacity: .5;} 100% { top: 100%; opacity: 0;} }

@media (max-width: 960px) {
  .hero { padding-top: 150px; text-align: left; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 30px; }
  .chip-card.c1 { width: 150px; }
  .chip-card.c2 { width: 120px; }
  .chip-card.c3 { width: 140px; }
  .chip-card.c4 { width: 110px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 128px; }
  .hero-copy p.lead { font-size: 16px; }
  .hero-actions { gap: 16px 22px; margin-top: 30px; }
  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 34px;
  }
  .scan-line { display: none; }
  .chip-card {
    position: static;
    width: auto !important;
    animation: none;
  }
}

/* Ticker */
.ticker-wrap {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  padding: 0 28px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-track span b { color: var(--ink); font-weight: 500; }
.ticker-track span::before { content: '◆'; color: var(--coral); font-size: 8px; }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding-top: 34px; padding-bottom: 34px;
  justify-content: space-between;
}
.trust-item { display: flex; align-items: center; gap: 12px; flex: 1 1 220px; }
.trust-item i { color: var(--coral); font-size: 18px; }
.trust-item span { font-size: 14.5px; color: var(--slate-900); font-weight: 500; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  padding: 38px 30px;
  position: relative;
  transition: background .3s var(--ease);
}
@media (max-width: 480px) { .service-card { padding: 28px 22px; } }
.service-card:hover { background: var(--teal-pale); }
.service-card .tag {
  font-family: var(--mono); font-size: 11px; color: var(--slate-400);
  letter-spacing: 0.1em;
}
.service-card .icon { width: 46px; height: 46px; margin: 18px 0 20px; }
.service-card .icon img { filter: none; }
.service-card h4 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; gap: 46px; } }

.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-media .frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(19,111,149,0.28), rgba(10,30,41,0.08) 55%);
}
.about-media img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 640px) { .about-media img { height: 320px; } }
.about-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.4);
  min-width: 170px;
}
.about-badge .num { font-family: var(--display); font-size: 26px; color: var(--coral); }
.about-badge .lbl { font-family: var(--mono); font-size: 11.5px; color: #9FB4BF; letter-spacing: .06em; margin-top: 4px; }
@media (max-width: 560px) { .about-badge { left: 12px; bottom: -20px; padding: 16px 18px; } }

.value-list { margin-top: 30px; display: grid; gap: 20px; }
.value-item { display: flex; gap: 16px; }
.value-item i {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px; background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.value-item h5 { font-family: var(--body); font-weight: 600; font-size: 15.5px; margin-bottom: 4px; }
.value-item p { font-size: 14.5px; }

/* ==========================================================================
   Products
   ========================================================================== */
.products-section { color: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 10px 30px -18px rgba(16,28,36,0.15);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: var(--teal-light); box-shadow: 0 20px 40px -18px rgba(16,28,36,0.2); }
.product-card .thumb {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background: var(--paper); border-radius: var(--radius-sm); margin-bottom: 20px;
}
.product-card .thumb img { max-height: 110px; }
.product-card .tag { font-family: var(--mono); font-size: 11px; color: var(--teal); letter-spacing: .08em; }
.product-card h4 { font-size: 17px; margin-top: 8px; color: var(--ink); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--coral);
  color: var(--white);
  padding: 64px 0;
}
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h3 { font-size: clamp(22px, 3vw, 30px); max-width: 560px; color: var(--white); }
.cta-band .btn-outline-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cta-band .btn-outline-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
@media (max-width: 640px) {
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 50px; } }

.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; margin-bottom: 22px;
}
@media (max-width: 480px) { .contact-card, .contact-form-card { padding: 24px; } }
.contact-line { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line i { color: var(--coral); font-size: 16px; margin-top: 3px; }
.contact-line a, .contact-line span.txt { font-size: 15px; color: var(--slate-900); line-height: 1.6; }
.contact-line a:hover { color: var(--teal); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.25); }
.map-frame iframe { width: 100%; height: 260px; display: block; border: 0; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 50px -24px rgba(16,28,36,0.18);
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em;
  color: var(--slate-600); text-transform: uppercase; margin-bottom: 8px;
}
.form-field input, .form-field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-family: var(--body); font-size: 15px;
  background: var(--white); color: var(--ink);
  box-shadow: inset 0 1px 2px rgba(16,28,36,0.04);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-400); }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(19,111,149,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--slate-400); margin-top: 14px; }
#form-status { font-size: 14px; margin-top: 14px; display: none; color: var(--teal); }
#form-status.show { display: block; }
#form-status.error { color: var(--coral-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer { background: transparent; color: var(--slate-600); padding: 64px 0 30px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: 14px; color: var(--slate-400); }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
@media (max-width: 560px) {
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 32px; width: 100%; }
  .footer-col { flex: 1 1 auto; }
}
@media (max-width: 400px) {
  .footer-nav { flex-direction: column; gap: 26px; }
}
.footer-col h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: var(--slate-600); transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: var(--slate-400); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--slate-600);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 70ms); }
