

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

:root {
  --bg: #F5F2ED;
  --ink: #1C1C1A;
  --muted: #6B6860;
  --accent: #C4A882;
  --accent-dark: #8B7355;
  --white: #FDFCFB;
  --border: rgba(28,28,26,0.10);
  --ff: Georgia, 'Times New Roman', serif;
  --ffs: 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--ffs); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--white); }

/* Skip-to-content link */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--ink); color: var(--white); padding: 12px 24px; z-index: 200; font-size: 14px; font-family: var(--ffs); }
.skip-link:focus { top: 8px; }

/* Focus styles */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn:focus-visible { outline-offset: 4px; }
.nav-link:focus-visible { outline-offset: 4px; }
.work-card:focus-visible { outline-offset: 0; }
.post-item:focus-visible { outline-offset: 0; }

/* Visually hidden but accessible */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.grain, .hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: 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.04'/%3E%3C/svg%3E");
}

#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,242,237,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--ff); font-size: 18px; color: var(--ink); letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 28px; }
.nav-link { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-link.active, .nav-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

.btn { display: inline-block; cursor: pointer; font-family: var(--ffs); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border: none; transition: opacity 0.2s; }
.btn:hover { opacity: 0.85; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-full { width: 100%; text-align: center; display: block; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.tag { display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(196,168,130,0.27); color: var(--accent-dark); padding: 4px 12px; border-radius: 20px; }
.eyebrow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.eyebrow-gold { color: var(--accent); }

.hero { min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 32px 80px; position: relative; overflow: hidden; }
.hero-bg { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -2; background: linear-gradient(160deg, #EDE8E0 0%, #F5F2ED 50%, #E8E3F0 100%); }
.hero-grain { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; }
.hero-content { max-width: 820px; margin: 0 auto; width: 100%; }
.hero-title { font-family: var(--ff); font-size: clamp(42px, 7vw, 88px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 36px; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }

.section { padding: 100px 32px; }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 56px; }
.section-title { font-family: var(--ff); font-size: 36px; font-weight: 400; letter-spacing: -0.02em; }
.link-muted { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: underline; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.work-card { background: var(--white); cursor: pointer; overflow: hidden; transition: opacity 0.2s; }
.work-card:hover { opacity: 0.9; }
.work-card-hero { height: 200px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.work-card-img { max-width: 80%; max-height: 160px; object-fit: contain; position: relative; z-index: 1; }
.work-card-badge { position: absolute; top: 20px; right: 20px; background: var(--ink); color: var(--white); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; }
.work-card-tag { position: absolute; bottom: 20px; left: 20px; }
.work-card-body { padding: 22px 24px 26px; }
.work-card-row { display: flex; justify-content: space-between; align-items: baseline; }
.work-card-title { font-family: var(--ff); font-size: 22px; font-weight: 400; letter-spacing: -0.02em; }
.work-card-year { color: var(--muted); font-size: 13px; }
.work-card-desc { color: var(--muted); font-size: 14px; line-height: 1.7; margin-top: 8px; }

.post-item { cursor: pointer; padding: 32px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; transition: opacity 0.2s; }
.post-item:hover { opacity: 0.75; }
.post-body { flex: 1; }
.post-tag { margin-bottom: 12px; }
.post-title { font-family: var(--ff); font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3; }
.post-excerpt { color: var(--muted); font-size: 14px; line-height: 1.7; }
.post-date { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; white-space: nowrap; padding-top: 4px; }

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-post { padding: 32px 0; border-bottom: 1px solid var(--border); min-height: 100px;
  background: linear-gradient(90deg, #e8e3dc, #f0ebe4, #e8e3dc); background-size: 200% 100%; animation: shimmer 1.4s infinite; }

.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-title { font-family: var(--ff); font-size: 40px; font-weight: 400; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.newsletter-sub { color: rgba(253,252,251,0.6); line-height: 1.7; margin-bottom: 36px; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; }
.nl-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; padding: 14px 20px; color: var(--white); font-size: 14px; outline: none; font-family: var(--ffs); }
.nl-btn { background: var(--accent); border: none; color: var(--ink); padding: 14px 24px; cursor: pointer; font-size: 13px; font-family: var(--ffs); letter-spacing: 0.08em; text-transform: uppercase; }
.nl-thanks { color: var(--accent); font-family: var(--ff); font-size: 18px; }

.divider { height: 1px; background: var(--border); margin: 48px 0; }
.page-hero { padding: 140px 32px 80px; position: relative; }
.page-title { font-family: var(--ff); font-size: clamp(36px, 5vw, 60px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 16px; }
.page-sub { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 64px; max-width: 560px; }

.form-wrap { max-width: 640px; margin: 0 auto; }
.form-field { margin-bottom: 32px; }
.form-label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 15px; color: var(--ink); outline: none; font-family: var(--ffs); resize: vertical; }
.form-select { appearance: none; }

.error-note { padding: 20px 24px; background: #fff8f5; border: 1px solid #f0d0c0; border-radius: 4px; margin-bottom: 24px; font-size: 13px; color: #8B5E3C; line-height: 1.6; }

.work-detail-hero { min-height: 380px; position: relative; margin-top: 64px; display: flex; flex-direction: column; justify-content: flex-end; }
.work-detail-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px 56px; width: 100%; position: relative; }
.back-link { display: inline-block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.back-link:hover { color: var(--ink); }
.outcome-item { display: flex; gap: 16px; margin-bottom: 16px; align-items: flex-start; }
.outcome-star { color: var(--accent); font-size: 18px; }
.outcome-text { font-family: var(--ff); font-size: 18px; line-height: 1.5; }
.cta-box { margin-top: 64px; padding: 40px; background: var(--white); text-align: center; }
.cta-box p { font-family: var(--ff); font-size: 22px; margin-bottom: 24px; }

.work-card-link { display: inline-block; font-size: 11px; letter-spacing: 0.06em; color: var(--accent-dark); margin-top: 8px; }

.work-detail-body { max-width: 760px; margin: 0 auto; padding: 64px 32px 100px; }
.work-detail-content {}
.work-intro { font-family: var(--ff); font-size: 20px; line-height: 1.75; margin-bottom: 20px; }
.work-detail-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.work-section-title { font-family: var(--ff); font-size: 24px; font-weight: 400; letter-spacing: -0.02em; margin: 48px 0 20px; }
.work-image-feature { border-radius: 0; overflow: hidden; }
.outcome-list { margin-bottom: 48px; }
.work-visit-link { margin: 48px 0; }
.work-related-section { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--border); }

.cc-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; max-width: 1040px; margin: 0 auto; padding: 64px 32px 100px; }
.cc-arc { display: flex; align-items: center; background: var(--white); padding: 18px 24px; margin-bottom: 40px; flex-wrap: wrap; gap: 4px; }
.cc-arc-item { font-family: var(--ff); font-size: 15px; }
.cc-arc-sep { color: var(--accent); margin: 0 10px; font-size: 16px; }
.cc-toggle { background: none; border: 1px solid var(--border); cursor: pointer; padding: 12px 20px; font-family: var(--ffs); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }
.cc-part-header { background: var(--ink); padding: 12px 20px; margin-top: 20px; }
.cc-part-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.cc-part-title { font-family: var(--ff); font-size: 16px; color: var(--white); margin-top: 2px; }
.cc-q { padding: 16px 0; border-bottom: 1px solid var(--border); }
.cc-q-num { font-size: 10px; letter-spacing: 0.12em; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.cc-q-text { font-family: var(--ff); font-size: 16px; margin-bottom: 6px; line-height: 1.3; }
.cc-q-why { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cc-sq-block { padding: 24px 28px; background: var(--ink); margin-top: 40px; }
.cc-sq-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.cc-sq-title { font-family: var(--ff); font-size: 17px; color: var(--white); line-height: 1.6; margin-bottom: 8px; }
.cc-sq-desc { font-size: 13px; color: rgba(253,252,251,0.55); line-height: 1.7; }
.cc-card { background: var(--white); padding: 28px; border: 1px solid var(--border); position: sticky; top: 88px; }
.cc-card-title { font-family: var(--ff); font-size: 19px; line-height: 1.3; margin-bottom: 8px; }
.cc-card-sub { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.cc-checklist { margin-top: 12px; padding: 18px 20px; background: var(--bg); border: 1px solid var(--border); }
.cc-check-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.cc-check-item { display: flex; gap: 8px; margin-bottom: 8px; align-items: flex-start; }
.cc-check-star { color: var(--accent); font-size: 12px; margin-top: 2px; }
.cc-check-text { font-size: 12px; color: var(--ink); line-height: 1.5; }

.about-hero { background: linear-gradient(160deg, #EDE8E0, #E8E3F0); padding: 140px 32px 100px; position: relative; }
.about-quote { font-family: var(--ff); font-size: clamp(32px, 5vw, 60px); font-weight: 400; letter-spacing: -0.03em; line-height: 1.08; }
.prose { max-width: 680px; margin: 0 auto; padding: 72px 32px 100px; }
.prose p { font-family: var(--ff); font-size: 19px; line-height: 1.8; margin-bottom: 28px; }

.next-step { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.next-step h3 { font-family: var(--ff); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.next-step p { color: var(--muted); font-size: 15px; line-height: 1.7; }

footer { background: var(--white); border-top: 1px solid var(--border); padding: 48px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--ff); font-size: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-link { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.footer-link:hover { color: var(--ink); }
.footer-copy { font-size: 12px; color: var(--muted); }

.simple-page { max-width: 680px; margin: 0 auto; padding: 140px 32px 100px; }
.simple-page h1 { font-family: var(--ff); font-size: 42px; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 48px; }
.simple-page p { font-size: 15px; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }

.article-content { font-family: var(--ff); font-size: 19px; line-height: 1.8; }
.article-content p { margin-bottom: 28px; }
.article-content h2 { font-size: 28px; font-weight: 400; letter-spacing: -0.02em; margin: 48px 0 20px; }
.article-content h3 { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin: 40px 0 16px; }
.article-content blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 24px; margin: 32px 0; color: var(--muted); font-style: italic; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 28px; }
.article-content li { margin-bottom: 8px; }
.article-content img { max-width: 100%; height: auto; margin: 32px 0; }
.article-content a { color: var(--accent-dark); text-decoration: underline; }
.article-content a:hover { color: var(--ink); }
.article-content figure { margin: 32px 0; }
.article-content figcaption { font-family: var(--ffs); font-size: 13px; color: var(--muted); margin-top: 8px; }

.form-success { text-align: center; padding: 80px 40px; background: var(--white); }
.form-success h1, .form-success h3 { font-family: var(--ff); font-size: 28px; margin-bottom: 12px; font-weight: 400; }
.form-success p { color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; }
  .cc-grid { grid-template-columns: 1fr; }
  .hero { padding: 0 20px 60px; }
  .section { padding: 64px 20px; }
  .prose { padding: 48px 20px 80px; }
  .hero-title { font-size: clamp(36px, 8vw, 60px); }
}
