/* ============================================================
   Lin Sweater — English Site
   Design: Editorial minimalism · Refined · Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ink:       #0D0D0D;
  --ink-2:     #3A3A3A;
  --ink-3:     #7A7A7A;
  --ink-4:     #ADADAD;
  --paper:     #FAFAF8;
  --paper-2:   #F2F1EE;
  --paper-3:   #E8E6E1;
  --accent:    #1A3A5C;
  --accent-2:  #2C5F8A;
  --warm:      #C8A86B;
  --white:     #FFFFFF;
  --radius:    4px;
  --radius-lg: 12px;
  --max:       1160px;
  --nav-h:     72px;
  --serif:     'Inter', system-ui, sans-serif;
  --sans:      'Inter', system-ui, sans-serif;
  --mono:      'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
.t-display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.t-h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.t-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.t-h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
}
.t-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.t-body-lg { font-size: 18px; line-height: 1.75; font-weight: 300; color: var(--ink-2); }
.t-body    { font-size: 15px; line-height: 1.75; color: var(--ink-2); }
.t-small   { font-size: 13px; line-height: 1.6; color: var(--ink-3); }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(250,250,248,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-name {
  font-family: var(--sans);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-logo-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-4);
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-2);
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 13px !important; font-weight: 500 !important;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.25s;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-3);
    padding: 8px 0 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open li { border-bottom: 1px solid var(--paper-3); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block; padding: 14px 24px;
    font-size: 15px; font-weight: 500; color: var(--ink-2);
  }
  .nav-links.open a:hover { background: var(--paper-2); color: var(--ink); }
  .nav-links.open a::after { display: none; }
  .nav-links.open .nav-cta {
    margin: 12px 20px 4px;
    text-align: center;
    border-radius: var(--radius);
    padding: 13px 20px !important;
    background: var(--ink) !important;
    color: var(--paper) !important;
  }
  /* Hamburger → X animation */
  .nav-mobile-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-mobile-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.22s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--ink); color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn-warm {
  background: var(--warm); color: var(--white);
}
.btn-warm:hover { background: #b8985a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,107,0.3); }

.btn-ghost {
  background: transparent; color: var(--ink-2);
  padding: 0; border-radius: 0;
}
.btn-ghost:hover { color: var(--ink); gap: 12px; }

.btn-arrow::after { content: '→'; font-size: 16px; }

/* ── Section spacing ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

/* ── Section header ── */
.section-header { margin-bottom: 64px; }
.section-header .t-label { margin-bottom: 16px; display: block; }
.section-header .t-h2 { max-width: 600px; }
.section-header p { margin-top: 20px; max-width: 520px; }
.section-header.center { text-align: center; }
.section-header.center .t-h2,
.section-header.center p { margin-left: auto; margin-right: auto; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--paper-3); margin: 0; }

/* ── Stats strip ── */
.stats-strip {
  display: flex; gap: 0;
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1; padding: 32px 28px;
  border-right: 1px solid var(--paper-3);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--paper-2); }
.stat-num {
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.stat-num sup {
  font-size: 0.45em; vertical-align: super;
  font-family: var(--sans); font-weight: 400;
}
.stat-label {
  font-size: 13px; color: var(--ink-3);
  margin-top: 8px; font-weight: 400;
}

@media (max-width: 640px) {
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--paper-3); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: var(--paper-2);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--paper-3);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-item {
  background: var(--paper);
  padding: 40px 32px;
  transition: background 0.2s;
}
.process-item:hover { background: var(--white); }
.process-num {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-4); margin-bottom: 20px;
}
.process-title {
  font-family: var(--sans);
  font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
  line-height: 1.3;
}
.process-desc { font-size: 13px; color: var(--ink-3); line-height: 1.65; }

/* ── Feature list ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2); line-height: 1.6;
}
.feature-list li::before {
  content: ''; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background: var(--paper-2);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L7.5 11.5L13 6' stroke='%230D0D0D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,107,0.12) 0%, transparent 70%);
}
.cta-banner .t-h2 { color: var(--paper); }
.cta-banner p { color: rgba(250,250,248,0.55); margin-top: 16px; max-width: 480px; }
.cta-banner .btn-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--paper-3);
  color: var(--ink);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--paper-3);
}
.footer-brand { }
.footer-brand .nav-logo-name { color: var(--ink); font-size: 20px; }
.footer-brand .nav-logo-tag { color: var(--ink-4); }
.footer-brand p { margin-top: 16px; font-size: 13px; color: var(--ink-3); line-height: 1.75; max-width: 260px; }
.footer-brand .footer-company { margin-top: 10px; font-size: 11px; color: var(--ink-4); }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: var(--ink-3); transition: color 0.15s; text-decoration: none; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 11px; color: var(--ink-4); }
.footer-bottom a { color: var(--ink-4); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { display: none; } /* hide desc on tablet */
}
@media (max-width: 560px) {
  .footer { padding: 28px 0 16px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding-bottom: 20px;
  }
  /* Hide Pages and Products columns on mobile */
  .footer-col-pages,
  .footer-col-products { display: none; }
  /* Brand spans full width */
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-brand p { display: none; }
  /* Contact col: horizontal links */
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-col:last-child ul {
    flex-direction: row; flex-wrap: wrap; gap: 8px 20px;
  }
  .footer-bottom {
    flex-direction: column; gap: 6px; text-align: center;
    padding-top: 16px;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--paper);
}
.hero-bg::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--paper-2);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-text { }
.hero-text .t-label { margin-bottom: 24px; display: block; }
.hero-text .t-display { margin-bottom: 28px; }
.hero-text p { font-size: 17px; color: var(--ink-2); line-height: 1.75; font-weight: 300; margin-bottom: 40px; max-width: 420px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; }
.hero-trust-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); font-family: var(--mono); margin-bottom: 16px; }
.hero-trust-items { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.hero-trust-item { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.hero-trust-item::before { content: '✓'; color: var(--warm); font-size: 11px; font-weight: 600; }

.hero-visual {
  position: relative;
}
.hero-img-frame {
  aspect-ratio: 3/4;
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.hero-img-frame:hover img { transform: scale(1.03); }
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.hero-badge-num {
  font-family: var(--sans); font-size: 36px; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.hero-badge-label { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .hero-bg::after { display: none; }
  .hero-visual { order: -1; max-width: 380px; }
  .hero-badge { bottom: -16px; left: -8px; }
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--paper-3);
  border-bottom: 1px solid var(--paper-3);
  padding: 18px 0;
  background: var(--white);
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 40px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-4);
  flex-shrink: 0;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--warm); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { cursor: pointer; }
.product-card-img {
  aspect-ratio: 3/4;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  margin-bottom: 16px;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
  color: var(--ink-2);
}
.product-card-title { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.product-card-desc { font-size: 13px; color: var(--ink-3); }

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.two-col.reverse .two-col-visual { order: -1; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .two-col-visual { order: unset; }
}
.two-col-visual {
  aspect-ratio: 4/3;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.two-col-visual img { width: 100%; height: 100%; object-fit: cover; }
.two-col-visual-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em;
}
.two-col-text .t-label { display: block; margin-bottom: 16px; }
.two-col-text .t-h2 { margin-bottom: 20px; }
.two-col-text p { margin-bottom: 32px; }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.testimonial-quote {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400; font-style: italic;
  line-height: 1.6; color: var(--ink);
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px;
  color: var(--ink-3);
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--ink-4); margin-top: 2px; }

/* ── Tag ── */
.tag {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--paper-2);
  border-radius: 99px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* ── Blog card ── */
.blog-card {
  display: flex; flex-direction: column;
}
.blog-card-img {
  aspect-ratio: 16/10;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 20px;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-card-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 10px; line-height: 1.3; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card-excerpt { font-size: 13px; color: var(--ink-3); line-height: 1.7; }

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  color: white;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── Page header ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--paper-3);
}
.page-hero .t-label { display: block; margin-bottom: 16px; }
.page-hero .t-h1 { margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: var(--ink-2); max-width: 560px; font-weight: 300; line-height: 1.75; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-2); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--paper-3);
  border-radius: var(--radius);
  font-family: var(--sans); font-size: 14px;
  color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ink);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ── Capabilities grid ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--paper-3);
  border: 1px solid var(--paper-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cap-item {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s;
}
.cap-item:hover { background: var(--white); }
.cap-icon {
  width: 40px; height: 40px;
  background: var(--paper-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.cap-title { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.cap-desc { font-size: 13px; color: var(--ink-3); line-height: 1.65; }

@media (max-width: 560px) { .cap-grid { grid-template-columns: 1fr; } }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.gap-16 { gap: 16px; }
.flex  { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

/* ── Fix: outline buttons on dark backgrounds ── */
.cta-banner .btn-outline,
.cta-banner a.btn-outline,
.cta-banner .btn[class*="outline"] {
  color: #FAFAF8 !important;
  border-color: rgba(255,255,255,0.35) !important;
  background: transparent !important;
}
.cta-banner .btn-outline:hover,
.cta-banner a.btn-outline:hover {
  background: rgba(255,255,255,0.1) !important;
  color: #FAFAF8 !important;
  border-color: rgba(255,255,255,0.6) !important;
}
/* Also fix any direct tel links in dark banners */
.cta-banner a[href^="tel"] {
  color: #FAFAF8 !important;
}

/* ── Performance: reduce layout shift ── */
img { height: auto; }
.prod-img img, .blog-card-img img { aspect-ratio: 3/4; object-fit: cover; }
.blog-img img { aspect-ratio: 16/9; object-fit: cover; }
.two-col-visual img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ── Process section responsive ── */
@media (max-width: 768px) {
  .process-header-grid { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 48px !important; }
  .process-steps-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .process-steps-grid { grid-template-columns: 1fr !important; }
}

/* ── Dalang section responsive ── */
@media (max-width: 860px) {
  .dalang-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── Who we serve + craft keywords responsive ── */
@media (max-width: 768px) {
  .buyer-grid { grid-template-columns: 1fr !important; }
  .craft-kw-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}
