/* ————— Kane Kova — design tokens ————— */
:root {
  --bg: #FAF9F7;
  --bg-cream: #F4EFE6;
  --bg-mist: #EDF0F2;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --ink-faint: #78716C;
  --accent: #A16207;
  --border: #E0DCD5;
  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Jost", -apple-system, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 104px;
  --space-7: 160px;
  --max-w: 1360px;
  --pad-x: clamp(20px, 4vw, 56px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; cursor: pointer; }
em { font-style: italic; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; }
/* Italiana has no italic — accent words are gold, upright */
h1 em, h2 em, .statement-text em, .band-text em, .prov-title em, .contact-title em { font-style: normal; }

/* ————— Header ————— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}
.site-header.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding-block: 12px;
}
.wordmark {
  display: grid;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
  margin-left: -16px;
  transition: color 0.35s;
}
.site-header.scrolled .wordmark, .site-header.past-hero .wordmark { color: var(--ink); }
/* Logo "A" = inverted V (crossbar-less), matching the brand mark */
.wordmark .va, .footer-mark .va {
  display: inline-block;
  font-style: normal;
  transform: scaleY(-1);
}
.main-nav { display: flex; gap: clamp(16px, 2.5vw, 36px); margin-inline: auto; }
.main-nav a {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 2px;
  position: relative;
  transition: color 0.35s;
}
.site-header.scrolled .main-nav a, .site-header.past-hero .main-nav a { color: var(--ink-soft); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled .header-cta, .site-header.past-hero .header-cta { color: var(--ink); }
.header-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav-toggle { display: none; }

/* ————— Hero ————— */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.hero-media { position: absolute; inset: -8% 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.78) 0%, rgba(12, 10, 9, 0.3) 45%, rgba(12, 10, 9, 0.55) 100%);
}
.hero-content {
  position: relative;
  padding: var(--space-6) var(--pad-x) var(--space-6);
  color: #fff;
  max-width: 900px;
}
.hero-title {
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.hero-title em { color: #E8D5A8; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 46ch;
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions span { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.line { display: block; overflow: hidden; }
.line > span { display: inline-block; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-solid { background: #fff; color: var(--ink); }
.btn-solid:hover { background: var(--accent); color: #fff; }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; right: var(--pad-x);
  width: 1px; height: 56px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.hero-scroll-hint span {
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scrollHint 2s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ————— Statement ————— */
.statement {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-7) var(--pad-x) var(--space-6);
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.3;
  font-weight: 400;
  max-width: 26em;
  margin-bottom: var(--space-4);
}
.text-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.text-link .arrow { transition: transform 0.3s var(--ease-out); }
.text-link:hover .arrow { transform: translateX(6px); }
.text-link:hover { color: var(--accent); }

/* ————— Product range ————— */
.range {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--space-7);
}
.section-title {
  font-size: clamp(40px, 5.5vw, 76px);
  margin-bottom: var(--space-5);
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.range-card { position: relative; }
.card-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-cream);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.range-card:hover .card-media img, .project-card:hover .card-media img { transform: scale(1.045); }
.card-tag {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 16px;
}
.card-label { padding-top: var(--space-2); }
.card-label h3 { font-size: clamp(24px, 2.2vw, 32px); margin-bottom: 6px; }
.card-label p { color: var(--ink-faint); font-size: 15px; }

/* ————— Band ————— */
.band {
  background: var(--bg-mist);
  padding: var(--space-7) var(--pad-x);
  text-align: center;
}
.band-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.2;
  font-weight: 400;
  max-width: 18em;
  margin: 0 auto;
}
.band-text em { color: var(--accent); }

/* ————— Provenance ————— */
.provenance {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-7) var(--pad-x);
}
.provenance > * { max-width: var(--max-w); margin-inline: auto; }
.prov-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8D5A8;
  margin-bottom: var(--space-3);
}
.prov-title {
  font-size: clamp(38px, 5.5vw, 84px);
  font-weight: 500;
  line-height: 1.08;
  max-width: 14em;
}
.prov-title em { color: #E8D5A8; }
.prov-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-top: var(--space-5);
}
.prov-media { overflow: hidden; }
.prov-media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.prov-story > p {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
  color: rgba(250, 249, 247, 0.85);
  margin-bottom: var(--space-4);
  max-width: 54ch;
}
.prov-facts { margin: 0; }
.prov-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(250, 249, 247, 0.18);
}
.prov-facts dt {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0.04em;
  color: #E8D5A8;
}
.prov-facts dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 249, 247, 0.72);
}

/* ————— Feature ————— */
.feature {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-7) var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.feature-media { overflow: hidden; }
.feature-media img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.feature-copy h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: var(--space-3); }
.feature-copy h2 em { color: var(--accent); }
.feature-copy > p { max-width: 52ch; color: var(--ink-soft); margin-bottom: var(--space-3); }
.feature-list {
  list-style: none;
  margin-bottom: var(--space-4);
}
.feature-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 50%;
  width: 8px; height: 8px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--accent);
}

/* ————— Projects ————— */
.projects { padding: 0 0 var(--space-7); }
.projects-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.projects-head .section-title { margin-bottom: 0; }
.carousel-nav { display: flex; gap: var(--space-1); }
.carousel-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.carousel-btn:hover { background: var(--ink); color: #fff; }
.carousel {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.carousel::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 clamp(280px, 32vw, 460px);
  scroll-snap-align: start;
}
.project-card .card-media { aspect-ratio: 4 / 3; margin-bottom: var(--space-2); }
.project-card h3 { font-size: clamp(24px, 2.4vw, 34px); margin-bottom: 4px; }
.credit { color: var(--ink-faint); font-size: 14px; letter-spacing: 0.04em; }

/* ————— Process ————— */
.process {
  background: var(--bg-cream);
  padding: var(--space-7) var(--pad-x);
}
.process .section-title em { color: var(--accent); }
.process-intro { max-width: 44ch; color: var(--ink-soft); margin: calc(-1 * var(--space-4)) 0 var(--space-5); }
.process > * { max-width: var(--max-w); margin-inline: auto; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.steps li { border-top: 1px solid var(--ink); padding-top: var(--space-3); }
.step-num {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-2);
}
.steps h3 { font-size: 28px; margin-bottom: 10px; }
.steps p { color: var(--ink-soft); font-size: 16px; }

/* ————— Contact ————— */
.contact-band {
  padding: var(--space-7) var(--pad-x);
  text-align: center;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.contact-title em { color: var(--accent); }
.contact-phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  display: inline-block;
  min-height: 44px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.3s;
}
.contact-phone:hover { color: var(--accent); }
.contact-note { margin-top: var(--space-3); color: var(--ink-faint); }
.contact-form {
  text-align: left;
  max-width: 480px;
  margin: var(--space-5) auto 0;
}
.contact-form .hidden-field { position: absolute; left: -9999px; }
.form-row { margin-bottom: var(--space-3); }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.25s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form .btn { margin-top: var(--space-2); width: 100%; }
.contact-alt { margin-top: var(--space-4); color: var(--ink-faint); }
.contact-alt a { color: var(--ink); border-bottom: 1px solid var(--border); }
.contact-alt a:hover { color: var(--accent); border-color: var(--accent); }
.form-success {
  display: none;
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-cream);
  border-left: 3px solid var(--accent);
  max-width: 480px;
  margin-inline: auto;
  text-align: left;
}
.form-success p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0; }

/* ————— Inner page head (FAQ, etc.) ————— */
.page-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--space-7) + 90px) var(--pad-x) var(--space-5);
}
.page-kicker {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.page-title { font-size: clamp(40px, 6vw, 84px); margin-bottom: var(--space-3); }
.page-lede { max-width: 46ch; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 20px); }

/* ————— Wider Range (coming soon) ————— */
.wider-notice-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) var(--space-5); }
.notice {
  border-left: 3px solid var(--accent);
  background: var(--bg-cream);
  padding: var(--space-3) var(--space-4);
  max-width: 68ch;
}
.notice p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0; }
.notice strong { color: var(--ink); }
.swatch-section { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) var(--space-7); }
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.swatch-block {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
}
.swatch-block img { width: 100%; height: 100%; object-fit: cover; }
.swatch-label { margin-top: var(--space-2); font-family: var(--font-display); font-size: 17px; }
.swatch-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}
.swatch-tag-stock { color: var(--accent); }
.swatch-footnote { color: var(--ink-faint); font-size: 14px; line-height: 1.6; max-width: 60ch; }

/* ————— FAQ ————— */
.faq { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x) var(--space-7); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s;
}
.faq-icon::before { width: 16px; height: 1px; }
.faq-icon::after { width: 1px; height: 16px; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--accent); }
.faq-answer { padding: 0 0 var(--space-3); max-width: 68ch; }
.faq-answer p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }

/* ————— Footer ————— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-5) var(--pad-x) var(--space-4);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.footer-mark {
  display: grid;
  align-content: start;
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--accent); }
.footer-area { display: block; padding: 6px 0; font-size: 15px; color: var(--ink-faint); }
.footer-legal { font-size: 13px; color: var(--ink-faint); }

/* ————— Reveal defaults (JS enhances) ————— */
[data-reveal], [data-reveal-lines] .reveal-line > span { will-change: transform, opacity; }

/* ————— Mobile ————— */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle {
    display: grid;
    gap: 7px;
    margin-left: auto;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 26px; height: 2px;
    background: #fff;
    transition: transform 0.3s var(--ease-out), background 0.3s;
  }
  .site-header.scrolled .nav-toggle span, .site-header.past-hero .nav-toggle span, .site-header.menu-open .nav-toggle span { background: var(--ink); }
  .site-header.menu-open .nav-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--bg);
    display: grid;
    place-items: center;
  }
  .mobile-menu nav { display: grid; gap: var(--space-2); text-align: center; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 34px;
    padding: 8px 16px;
  }
  .mobile-menu .mobile-cta {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--accent);
    margin-top: var(--space-3);
  }
  .range-grid, .steps { grid-template-columns: 1fr; gap: var(--space-5); }
  .feature, .prov-grid { grid-template-columns: 1fr; }
  .prov-facts div { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .swatch-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-head { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ————— Reduced motion ————— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll-hint { display: none; }
}
