@charset "UTF-8";

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 0 40px;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--ink-light);
  letter-spacing: .04em;
}

.breadcrumb a,
.breadcrumb-inner a {
  transition: color .3s;
}

.breadcrumb a:hover,
.breadcrumb-inner a:hover {
  color: var(--ink);
}

.breadcrumb-sep {
  color: var(--ink-faint);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 40px;
}

.section--white {
  background: var(--white);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 48px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: calc(var(--header-h) + 80px) 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-off) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .25em;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .04em;
}

.page-hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--ink-mid);
  max-width: 600px;
  margin-top: 24px;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 40px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .25em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 24px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink);
  background: var(--white);
  padding: 18px 48px;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--warm-white);
}

.cta-btn::after {
  content: '\2192';
  font-family: var(--font-display);
  font-size: 18px;
}

.cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  margin-top: 16px;
  letter-spacing: .04em;
}

/* ===== SHARED ANIMATION ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s var(--ease-out),
    transform .8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 48px) 20px 48px; }
  .breadcrumb { padding: 0 20px; margin-top: -24px; }
  .section { padding: 64px 20px; }
  .cta { padding: 64px 20px; }
}
