:root {
  --cream:       #fdf8f3;
  --cream-dark:  #f0e9df;
  --ink:         #111111;
  --ink-mid:     #444444;
  --ink-soft:    #888888;
  --amber:       #e8621a;
  --amber-light: #fdf0e8;
  --white:       #ffffff;
  --border:      #e2dbd2;

  --sw-ink:    #1c1c2e;
  --sw-amber:  #c06020;
  --sw-clay:   #7a4a3a;
  --sw-forest: #2a4a3a;

  --nav-h: 68px;
  --r:     10px;
  --r-lg:  18px;
  --sh:    0 2px 20px rgba(0,0,0,0.06);
  --sh-lg: 0 10px 48px rgba(0,0,0,0.12);

  --sans:  'Space Grotesk', sans-serif;
  --serif: 'Lora', Georgia, serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.g-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.pad-section  { padding: 96px 0; }
.bg-ink       { background: var(--ink); }
.bg-cream-dark{ background: var(--cream-dark); }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

.display-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}
.display-heading em  { font-style: italic; color: var(--amber); }
.display-heading.light { color: var(--white); }
.display-heading.light em { color: rgba(255,255,255,0.6); }

.btn-fill {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r);
  transition: background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s;
  border: none;
  cursor: pointer;
}
.btn-fill:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.3);
}
.btn-fill-light {
  background: var(--white);
  color: var(--ink);
}
.btn-fill-light:hover {
  background: var(--amber-light);
  color: var(--amber);
  box-shadow: none;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-line:hover { color: var(--amber); }

.swatch-ink, .swatch-amber, .swatch-clay, .swatch-forest {
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  overflow: hidden;
  position: relative;
}
.swatch-ink    { background: var(--sw-ink); }
.swatch-amber  { background: var(--sw-amber); }
.swatch-clay   { background: var(--sw-clay); }
.swatch-forest { background: var(--sw-forest); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999;
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--sh); }
.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-box {
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-light { color: var(--white); }
.logo-box-light { background: var(--amber); color: var(--white); }

.nav-menu {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.is-active { color: var(--ink); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--ink);
  padding: 9px 18px;
  border-radius: var(--r);
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--amber); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.2s;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 998;
  flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
}
.mobile-panel.open { display: flex; }
.mobile-close {
  align-self: flex-end;
  font-size: 1.4rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.mobile-panel ul { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-panel li a {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-panel li a:hover { color: var(--amber); padding-left: 8px; }
.mobile-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 16px;
  border-radius: var(--r);
  margin-top: 24px;
  transition: background 0.2s;
}
.mobile-cta:hover { background: var(--amber); }

.page-banner {
  padding: calc(var(--nav-h) + 80px) 0 72px;
}
.page-banner-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 740px;
}
.page-banner-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.page-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  line-height: 1.75;
}
.dark-title { color: var(--ink); }
.dark-title em { color: var(--amber); }
.dark-sub { color: var(--ink-mid); }

.home-cta { background: var(--amber); padding: 80px 0; }
.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.home-cta .display-heading { color: var(--white); }
.home-cta .display-heading em { color: rgba(255,255,255,0.65); font-style: italic; }
.home-cta-action p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  max-width: 340px;
  line-height: 1.7;
}
.home-cta .btn-fill {
  background: var(--white);
  color: var(--amber);
}
.home-cta .btn-fill:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}
.home-cta .btn-line { color: rgba(255,255,255,0.8); }
.home-cta .btn-line:hover { color: var(--white); }

.footer { background: var(--ink); padding-top: 72px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-top: 16px; line-height: 1.7; }
.footer-nav { display: flex; gap: 48px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
}
.footer-bar p { font-size: 0.73rem; color: rgba(255,255,255,0.18); }
.footer-bar div { display: flex; gap: 20px; }
.footer-bar a { font-size: 0.73rem; color: rgba(255,255,255,0.22); transition: color 0.2s; }
.footer-bar a:hover { color: rgba(255,255,255,0.55); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }

@media (max-width: 880px) {
  .nav-menu, .nav-cta { display: none; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav { flex-wrap: wrap; gap: 32px; }
}
@media (max-width: 560px) {
  .g-wrap { padding: 0 20px; }
  .pad-section { padding: 64px 0; }
  .home-cta { padding: 56px 0; }
  .home-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bar { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
}