/* ==================================================
   시안 2 — Editorial Light
   · 따뜻한 크림 배경 + 네이비 텍스트 + 에메랄드/골드 액센트
   · Serif 헤딩(Playfair) + Sans 본문(Inter/Pretendard)
   · 중앙 정렬 네비게이션 · 얇은 하이라인 카드 · 절제된 느낌
   ================================================== */

:root {
  --bg-0:     #faf8f2;
  --bg-1:     #f3efe5;
  --bg-2:     #ffffff;
  --bg-card:  #ffffff;
  --line:     #e6e1d4;
  --line-2:   #cfc7b4;

  --text:     #0f172a;
  --muted:    #5b6472;
  --dim:      #8a909c;

  --emerald:  #047857;
  --emerald-dark: #065f46;
  --gold:     #b8860b;
  --gold-light: #d4a537;
  --ink:      #1a2340;

  --radius:    10px;
  --radius-sm: 6px;

  --serif: 'Playfair Display', 'Noto Serif KR', Georgia, 'Times New Roman', serif;
  --sans:  'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after { content: none; } /* ambient glows 제거 */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.muted { color: var(--muted); }

/* ==================================================
   NAV — 중앙 정렬 워드마크 + 하단 링크
   ================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: saturate(130%) blur(10px);
  -webkit-backdrop-filter: saturate(130%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 16px;
  padding: 18px 0 14px;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  justify-self: center;
}
.brand-mark {
  color: var(--emerald);
  font-size: 14px;
}
.brand-text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  margin-left: 2px;
}

.nav-links {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 2px 0;
  transition: color .15s;
}
.nav-links a:hover { color: var(--emerald); }
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--emerald);
}

.nav .btn.btn-primary.btn-sm {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

@media (max-width: 720px) {
  .nav-inner { grid-template-columns: 1fr; }
  .brand { grid-column: 1; }
  .nav-links { gap: 18px; font-size: 12.5px; }
  .nav .btn.btn-primary.btn-sm { display: none; }
}

/* ==================================================
   BUTTONS — 각진 필 + 에메랄드 솔리드
   ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  font-family: var(--sans);
}
.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-lg { padding: 15px 30px; font-size: 15.5px; }

.btn-primary {
  background: var(--emerald);
  color: #ffffff;
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(15, 23, 42, 0.03);
}
.btn-ghost .arrow { transition: transform .2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ==================================================
   GLOBAL TYPOGRAPHY
   ================================================== */
.eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--emerald);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.eyebrow::before {
  content: "— ";
  color: var(--gold);
  font-weight: 400;
}

.section {
  padding: 120px 0;
  position: relative;
}
.section-dim { background: var(--bg-1); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}
.section-head .sub {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}

.grad,
.grad-2,
.grad-3,
.grad-4 {
  font-style: italic;
  color: var(--emerald);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
  font-weight: 700;
}
.grad-3 { color: var(--gold); }

/* ==================================================
   HERO
   ================================================== */
.hero {
  padding: 90px 0 110px;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--emerald);
  border-radius: 100px;
  font-size: 11px;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.tag .dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 auto 28px;
  max-width: 860px;
  color: var(--text);
}

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}
.lede strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0 0;
  border-top: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--emerald);
  font-style: italic;
}
.stat-label {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media (max-width: 780px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

/* ==================================================
   WHY
   ================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03);
}
.why-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: 0 16px 40px -20px rgba(15,23,42,0.12);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 18px;
  background: rgba(4,120,87,0.08);
  color: var(--emerald);
  border: 1px solid rgba(4,120,87,0.2);
}
.why-icon.cyan   { background: rgba(4,120,87,0.08); color: var(--emerald); border-color: rgba(4,120,87,0.2); }
.why-icon.pink   { background: rgba(184,134,11,0.1); color: var(--gold); border-color: rgba(184,134,11,0.25); }
.why-icon.green  { background: rgba(4,120,87,0.08); color: var(--emerald); border-color: rgba(4,120,87,0.2); }
.why-icon.yellow { background: rgba(184,134,11,0.1); color: var(--gold); border-color: rgba(184,134,11,0.25); }
.why-icon.purple { background: rgba(15,23,42,0.05); color: var(--text); border-color: rgba(15,23,42,0.15); }
.why-icon.orange { background: rgba(184,134,11,0.1); color: var(--gold); border-color: rgba(184,134,11,0.25); }
.why-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  color: var(--text);
}
.why-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.why-card strong { color: var(--text); font-weight: 600; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ==================================================
   PRODUCTS
   ================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.product-card::before { content: none; }
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  box-shadow: 0 16px 40px -20px rgba(15,23,42,0.12);
}
.product-head { margin-bottom: 14px; }
.product-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--muted);
}
.cyan-bg, .pink-bg, .green-bg, .yellow-bg, .purple-bg, .orange-bg {
  color: var(--emerald);
  border-color: rgba(4,120,87,0.4);
  background: rgba(4,120,87,0.04);
}
.pink-bg, .yellow-bg, .orange-bg {
  color: var(--gold);
  border-color: rgba(184,134,11,0.4);
  background: rgba(184,134,11,0.05);
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
}
.product-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-desc strong { color: var(--text); font-weight: 600; }
.product-points {
  list-style: none;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}
.product-points li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--emerald);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.combo-hint {
  margin-top: 36px;
  text-align: center;
  color: var(--text);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  padding: 18px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.combo-hint strong { font-style: normal; color: var(--emerald); }

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ==================================================
   SUPPLY
   ================================================== */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.supply-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .2s, border-color .2s;
}
.supply-card:hover { transform: translateY(-2px); border-color: var(--line-2); }
.supply-letter {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--emerald);
  font-style: italic;
  margin-bottom: 14px;
  background: none !important;
  -webkit-text-fill-color: var(--emerald) !important;
}
.supply-card:nth-child(2) .supply-letter,
.supply-card:nth-child(2) .supply-letter { color: var(--gold); -webkit-text-fill-color: var(--gold) !important; }
.supply-card:nth-child(3) .supply-letter { color: var(--ink); -webkit-text-fill-color: var(--ink) !important; }
.supply-card:nth-child(4) .supply-letter { color: var(--emerald-dark); -webkit-text-fill-color: var(--emerald-dark) !important; }
.supply-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  color: var(--text);
}
.supply-sub {
  color: var(--emerald);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.supply-card:nth-child(2) .supply-sub { color: var(--gold); }
.supply-card:nth-child(3) .supply-sub { color: var(--ink); }
.supply-card:nth-child(4) .supply-sub { color: var(--emerald-dark); }
.supply-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.supply-example {
  padding: 10px 14px;
  background: var(--bg-1);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--line);
}

@media (max-width: 900px) { .supply-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .supply-grid { grid-template-columns: 1fr; } }

/* ==================================================
   PROCESS
   ================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process::before { display: none; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .2s, border-color .2s;
}
.process-step:hover { transform: translateY(-2px); border-color: var(--line-2); }
.process-step.highlight {
  background: var(--emerald);
  border-color: var(--emerald);
}
.process-step.highlight h4,
.process-step.highlight p { color: #ffffff; }
.process-step.highlight .step-num {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}
.step-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--emerald);
  background: rgba(4,120,87,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.process-step p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ==================================================
   REFERENCES — Dogfood 인용 스타일 + 카드
   ================================================== */
.ray-dogfood-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 54px 56px 48px;
  margin-bottom: 36px;
  position: relative;
}
.ray-dogfood-card::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 40px;
  font-family: var(--serif);
  font-size: 140px;
  line-height: 1;
  color: var(--emerald);
  opacity: 0.18;
  font-weight: 700;
}
.ray-dogfood-card::after { content: none; }
.dogfood-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.dogfood-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(4,120,87,0.08);
  border: 1px solid rgba(4,120,87,0.22);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.dogfood-tag {
  display: inline-block;
  padding: 5px 12px;
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.ray-dogfood-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  max-width: 820px;
  color: var(--text);
}
.ray-dogfood-card h3 strong {
  background: none !important;
  -webkit-text-fill-color: var(--emerald) !important;
  color: var(--emerald);
  font-style: italic;
}
.dogfood-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--serif);
}
.dogfood-body strong {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 600;
}
.dogfood-body em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.dogfood-products {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.dogfood-products-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 3px rgba(4,120,87,0.15);
}
.dogfood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dogfood-chip {
  padding: 7px 14px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .ray-dogfood-card { padding: 40px 28px 32px; }
  .ray-dogfood-card::before { left: 18px; font-size: 100px; }
  .dogfood-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ref-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .2s, border-color .2s;
}
.ref-card:hover { transform: translateY(-2px); border-color: var(--line-2); }
.ref-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ref-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(4,120,87,0.08);
  color: var(--emerald);
  border: 1px solid rgba(4,120,87,0.2);
  border-radius: var(--radius-sm);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ref-tag.pink-tag {
  background: rgba(184,134,11,0.08);
  color: var(--gold);
  border-color: rgba(184,134,11,0.3);
}
.ref-product {
  font-size: 12.5px;
  color: var(--muted);
}
.ref-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--text);
}
.ref-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.ref-stats {
  display: flex;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ref-stat-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
}
.ref-stat-lab {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

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

/* ==================================================
   CONTACT
   ================================================== */
.section-contact { background: var(--bg-1); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}
.contact-copy .sub {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-copy strong { color: var(--text); font-weight: 600; }

.contact-direct {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.cd-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cd-row:last-child { border-bottom: none; }
.cd-label { color: var(--muted); font-weight: 500; }
.cd-value { color: var(--text); font-weight: 500; }
a.cd-value { color: var(--emerald); }
a.cd-value:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-row .req { color: var(--gold); }

.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=tel],
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(4,120,87,0.12);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--dim); }
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235b6472' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { cursor: pointer; user-select: none; }
.chip input { display: none; }
.chip span {
  display: inline-block;
  padding: 8px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all .15s;
}
.chip input:checked + span {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #ffffff;
}

.consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.6;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.consent input { margin-top: 3px; accent-color: var(--emerald); }

.form-note {
  font-size: 12.5px;
  color: var(--dim);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note.success { color: var(--emerald); }
.form-note.error { color: #b91c1c; }

@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 520px) { .form-row.two { grid-template-columns: 1fr; } }

/* ==================================================
   FOOTER
   ================================================== */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}
.footer-brand em { font-style: italic; color: var(--gold); font-weight: 400; }
.footer-meta .sep { margin: 0 8px; color: var(--dim); }
.footer-meta a { color: var(--emerald); }
.footer-meta a:hover { text-decoration: underline; }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a:hover { color: var(--emerald); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ==================================================
   SCROLL REVEAL
   ================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 780px) {
  .section { padding: 80px 0; }
  .hero { padding: 60px 0 80px; }
  .container { padding: 0 20px; }
}
