/* ===== Tokens — Walnut & Rust (목재·러스트 컨셉) ===== */
:root {
  --color-primary:        #7A4A24;
  --color-primary-hover:  #5E3A1B;
  --color-primary-dark:   #2B1B10;
  --color-primary-light:  #A06B3C;
  --color-primary-bg:     #F4E9DB;

  --color-accent:         #C1531B;
  --color-accent-light:   #E28347;
  --color-accent-tint:    rgba(193, 83, 27, 0.15);

  --color-text:           #211A14;
  --color-text-sub:       #4A3B2E;
  --color-text-muted:     #7A6A5A;

  --color-bg:             #FBF7F2;
  --color-bg-alt:         #F1E7D9;
  --color-bg-warm:        #F7EFE2;
  --color-surface:        #FFFFFF;

  --color-border:         #DED0BC;
  --color-border-soft:    #ECE2D2;

  --color-footer-bg:      #17100A;
  --color-overlay-dark:   rgba(0, 0, 0, 0.6);

  --text-on-light: #211A14;
  --text-on-dark:  #FFFFFF;

  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 3px 12px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.14);
  --shadow-brand: 0 8px 28px rgba(122,74,36,.25);

  --font-body: 'Pretendard Variable','Pretendard',-apple-system,BlinkMacSystemFont,'Apple SD Gothic Neo','Malgun Gothic',sans-serif;
  --font-display: 'Barlow Condensed','Pretendard Variable',sans-serif;

  --container-max: 1140px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-pad: clamp(64px, 9vw, 96px);
  --radius: 0;
  --radius-lg: 0;
  --transition: 220ms ease;
  --transition-slow: 380ms cubic-bezier(.22,1,.36,1);
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(56px, 8vw, 80px); }
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  padding-bottom: 0;
}
body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-primary); color: #fff;
  padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 { color: var(--color-primary-dark); font-weight: 800; letter-spacing: -.02em; margin: 0; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.lede { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--color-text-sub); font-weight: 400; }

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-warm { background: var(--color-bg-warm); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--color-primary); background: none; border-radius: 0; padding: 0;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--color-accent); display: inline-block; flex-shrink: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--radius); padding: 14px 32px 14px 36px; font-weight: 600; font-size: 1rem;
  transition: var(--transition);
  position: relative;
}
.btn-lg { padding: 18px 46px 18px 52px; font-size: 1.05rem; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-outline { border: 2px solid var(--color-primary); background: transparent; color: var(--color-primary); padding: 12px 30px 12px 34px; }
.btn::after {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-brand); }
  .btn-outline:hover { background: var(--color-primary); color: #fff; }
  .btn:hover::after { transform: translateX(5px); }
}
.btn-primary:active { background: var(--color-primary-hover); }

/* ===== Grid utility classes ===== */
.dp-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dp-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dp-stat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; align-items: center; }
.grid-3x2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .grid-3x2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dp-g2, .dp-g3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .dp-stat3 { grid-template-columns: 1fr; gap: 16px; } .grid-3x2 { grid-template-columns: 1fr; } }

/* ===== Card ===== */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  overflow: hidden;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .card:hover img { transform: scale(1.05); }
}
.card img { transition: var(--transition-slow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 20px 22px 24px; }
.card-title { font-size: 1.1rem; margin-bottom: 8px; }
.card-desc { color: var(--color-text-muted); font-size: .92rem; margin: 0; }
.card-cta { background: var(--color-primary-dark); color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 100%; padding: 40px 24px; position: relative; overflow: hidden; }
.card-cta h3 { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.card-cta p { color: rgba(255,255,255,.75); }
.card-cta h3::after {
  content: ''; width: 15px; height: 15px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C1531B' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  transition: transform var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .card-cta:hover h3::after { transform: translateX(5px); }
}

.card-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
@media (max-width: 768px) { .card-badges { flex-direction: column; align-items: flex-start; gap: 6px; } }
.badge-pill {
  background: var(--color-primary-bg); color: var(--color-primary-dark);
  padding: 4px 14px; font-size: .78rem; font-weight: 700;
}
.eeat-tag { background: var(--color-primary-bg); color: var(--color-primary-dark); padding: 6px 12px; font-size: .82rem; font-weight: 600; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  background: transparent; transition: var(--transition);
}
.site-header.scrolled { background: rgba(250,250,248,.97); box-shadow: 0 2px 16px rgba(0,0,0,.09); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }
.hdr-brand { display: flex; align-items: center; gap: 10px; }
.hdr-favicon { flex-shrink: 0; }
.hdr-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--color-primary-dark); }
.hdr-sub { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-muted); font-variant: small-caps; }
.hdr-cta { padding: 11px 28px; font-size: .92rem; }
.hdr-burger { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.hdr-burger span { display: block; width: 24px; height: 2px; background: var(--color-primary-dark); }

@media (max-width: 768px) {
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
}

.mob-nav {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--color-surface); transform: translateX(100%);
  transition: transform var(--transition-slow); z-index: 99; padding: 32px var(--gutter);
  overflow-y: auto;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav nav { display: flex; flex-direction: column; gap: 24px; }
.mob-nav a { font-size: 1.2rem; font-weight: 700; }
.mob-nav .btn { margin-top: 12px; }

/* ===== Hero ===== */
.hero { position: relative; height: 100svh; min-height: 620px; max-height: 940px; overflow: hidden; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.02);
  animation: hero-drift 9s ease-in-out infinite alternate;
}
.hero-slide::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: linear-gradient(to top, rgba(15,9,4,.82) 0%, rgba(15,9,4,.55) 45%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: clamp(48px, 8vw, 96px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; width: fit-content;
  color: #fff; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 20px; animation: hero-float 3.4s ease-in-out infinite;
  background: rgba(10,6,3,.6); padding: 8px 14px;
}
.hero-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--color-accent-light); display: inline-block; flex-shrink: 0; }
.hero-h1 {
  font-family: var(--font-display); color: #fff; font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.5rem); letter-spacing: -.04em; line-height: .92; margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero-sub { color: rgba(255,255,255,.88); max-width: 560px; font-size: clamp(1rem, 1.8vw, 1.2rem); margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta-group .btn-outline { border-color: #fff; color: #fff; }
@media (hover: hover) and (pointer: fine) {
  .hero-cta-group .btn-outline:hover { background: #fff; color: var(--color-primary-dark); }
}
.hero-dots { position: absolute; right: var(--gutter); bottom: 24px; z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 10px; height: 10px; background: rgba(255,255,255,.4); transition: var(--transition); }
.hero-dot.active { background: var(--color-accent); width: 28px; }

@keyframes hero-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes hero-drift { 0% { transform: scale(1.02) translate(0,0); } 100% { transform: scale(1.08) translate(-1%,-1%); } }

/* ===== Trust band (non-numeric) ===== */
.trust-band { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.trust-item {
  display: flex; align-items: center; gap: 10px; background: var(--color-surface);
  border: 1px solid var(--color-border-soft); border-radius: var(--radius-lg);
  padding: 16px 22px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .92rem;
}
.trust-item .ic { width: 8px; height: 8px; background: var(--color-accent); flex-shrink: 0; }

/* ===== Before/After compare ===== */
.ba-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .ba-compare { grid-template-columns: 1fr; } }
.ba-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ba-item img { aspect-ratio: 4/3; object-fit: cover; }
.ba-label {
  position: absolute; left: 14px; top: 14px; padding: 6px 16px;
  font-weight: 800; font-size: .82rem; color: #fff;
}
.ba-label.before { background: #7a3b3b; }
.ba-label.after { background: var(--color-primary); }

/* ===== Process (card style) ===== */
.proc-list { display: flex; flex-wrap: nowrap; list-style: none; margin: 0; padding: 0; gap: 16px; }
.proc-step {
  flex: 1 1 0; min-width: 0; position: relative; text-align: left;
  background: var(--color-surface); border: 1px solid var(--color-border-soft);
  padding: 28px 20px; transition: var(--transition-slow);
}
@media (hover: hover) and (pointer: fine) {
  .proc-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
}
.proc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-bottom: 20px;
  background: var(--color-primary); color: #fff; font-weight: 800; font-family: var(--font-display); font-size: 1.15rem;
}
.proc-step h3 { font-size: 1rem; margin-bottom: 6px; }
.proc-step p { color: var(--color-text-muted); font-size: .86rem; margin: 0; }

@media (max-width: 768px) {
  .proc-list { flex-direction: column; flex-wrap: wrap; gap: 14px; }
  .proc-step { flex: none; width: 100%; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; text-align: left; font-weight: 700; font-size: 1.02rem; color: var(--color-primary-dark);
}
.faq-q .plus { font-size: 1.4rem; font-weight: 300; transition: var(--transition); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-a p { padding: 0 4px 22px; color: var(--color-text-sub); margin: 0; }

/* ===== Contact cards ===== */
.contact-card {
  background: var(--color-surface); border: 2px solid var(--color-border-soft);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 68px; height: 68px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.6rem; font-weight: 800;
}
.contact-icon.tel { background: var(--color-primary-bg); color: var(--color-primary); }
.contact-icon.sms { background: var(--color-accent-tint); color: #9c7a1f; }
.contact-card h3 { margin-bottom: 8px; }
.contact-phone { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--color-primary-dark); margin: 12px 0; }
.contact-card p.desc { color: var(--color-text-muted); font-size: .9rem; }

/* ===== Table wrap ===== */
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border-soft); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--color-border-soft); font-size: .92rem; }
th { background: var(--color-bg-alt); font-weight: 700; color: var(--color-primary-dark); }

/* ===== Checklist ===== */
.check-list { display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius); padding: 14px 18px; }
.check-list .mark { color: var(--color-primary); font-weight: 900; flex-shrink: 0; }

/* ===== CTA banner (full-bleed section) ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff; background-image: url('/assets/images/optimized/wooden-bench-after-03.jpg');
  background-size: cover; background-position: center; position: relative; overflow: hidden;
  padding: var(--section-pad) 0;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,44,.94), rgba(42,92,69,.88)); }
.cta-banner::after {
  content: ''; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; text-align: left; }
.cta-content { flex: 1; min-width: 0; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 12px 0 0; max-width: 480px; }
.cta-banner .btn-primary { background: var(--color-accent); color: var(--color-primary-dark); flex-shrink: 0; }
@media (hover: hover) and (pointer: fine) {
  .cta-banner .btn-primary:hover { background: var(--color-accent-light); }
}
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner .btn-primary { width: 100%; }
}

/* ===== Footer ===== */
.site-footer { background: var(--color-footer-bg); color: rgba(255,255,255,.82); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-biz { grid-column: 1 / -1; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-biz-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-biz-list li { font-size: .88rem; margin-bottom: 6px; color: rgba(255,255,255,.68); }
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: 14px; font-size: .92rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a { font-size: .9rem; color: rgba(255,255,255,.68); }
@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover, .footer-services a:hover { color: var(--color-accent-light); }
}
.footer-services-row { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }

/* ===== Floating CTA / Back to top ===== */
.float-cta {
  position: fixed; right: 24px; bottom: 96px; z-index: 60; height: 60px; width: 60px;
  background: var(--color-accent); color: var(--color-primary-dark);
  display: flex; align-items: center; overflow: hidden; box-shadow: var(--shadow-lg);
  animation: ring-pulse 2.4s infinite; transition: width var(--transition-slow);
}
.float-cta-icon { width: 60px; height: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.float-cta-label {
  max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 800; font-size: .92rem;
  transition: max-width var(--transition-slow);
}
@media (hover: hover) and (pointer: fine) {
  .float-cta:hover { width: 178px; }
  .float-cta:hover .float-cta-label { max-width: 140px; }
}
@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,165,58,.5), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 14px rgba(212,165,58,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(212,165,58,0), var(--shadow-lg); }
}
.back-to-top {
  position: fixed; right: 28px; bottom: 24px; z-index: 60; width: 40px; height: 40px;
  background: rgba(42,92,69,.85); color: #fff; display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-md);
}
.back-to-top.show { display: flex; }

@media (max-width: 768px) {
  .float-cta { display: none; }
  body { padding-bottom: 64px; }
}
@media (min-width: 769px) { .mob-bar { display: none; } }
.mob-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--color-surface);
  border-top: 1px solid var(--color-border); padding: 10px var(--gutter);
}
.mob-bar-btn { display: flex; width: 100%; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .15s; }
.stagger.in > *:nth-child(3) { transition-delay: .25s; }
.stagger.in > *:nth-child(4) { transition-delay: .35s; }
.stagger.in > *:nth-child(5) { transition-delay: .45s; }
.stagger.in > *:nth-child(6) { transition-delay: .55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ===== Error page ===== */
.error-section { padding: calc(var(--section-pad) + 60px) 0 var(--section-pad); text-align: center; }
.error-code { font-family: var(--font-display); font-size: 6rem; font-weight: 900; color: var(--color-accent); margin: 0; }
.error-actions { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ===== Page hero (non-main pages) ===== */
.page-hero { position: relative; padding: 150px 0 64px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,26,22,.55), rgba(17,26,22,.86)); }
.page-hero-inner { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.page-hero .eyebrow { color: var(--color-accent-light); }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,.85); }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--color-surface); border: 1px solid var(--color-border-soft); border-radius: var(--radius-lg); padding: 24px; }
.info-card h3 { margin-bottom: 10px; }
.info-card p { color: var(--color-text-sub); margin: 0; font-size: .92rem; }
