/* ---------------------------------------------------------
   Little Ross — tokens
--------------------------------------------------------- */
:root{
  --ink: #232C42;
  --linen: #EDE7D8;
  --chalk: #F8F5EC;
  --rust: #9A4B36;
  --char: #262320;
  --sage: #6E7F62;

  --line-on-linen: rgba(38,35,32,0.22);
  --line-on-ink: rgba(237,231,216,0.28);

  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-tag: "IBM Plex Mono", monospace;

  --max: 68rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html{
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--linen);
  color: var(--char);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3{
  font-family: var(--font-display);
  font-weight: 480;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p{ margin: 0; }

a{ color: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.visually-hidden{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, label:focus-visible{
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--linen);
  border-bottom: 1px solid var(--line-on-linen);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.mark{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.mark svg{ flex: none; }
.mark span{
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.nav-toggle{ display: none; }
.nav-toggle-label{
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle-label span{
  width: 22px; height: 2px; background: var(--ink); display: block;
}

.site-nav ul{
  list-style: none;
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  margin: 0; padding: 0;
}
.site-nav a{
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--char);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--rust), var(--rust));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.25s ease;
}
.site-nav a:hover, .site-nav a:focus-visible{
  background-size: 100% 1px;
}

@media (max-width: 700px){
  .nav-toggle-label{ display: flex; }
  .site-nav{
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--linen);
    border-bottom: 1px solid var(--line-on-linen);
    padding: 0.5rem var(--gutter) 1.25rem;
    display: none;
  }
  .site-nav ul{ flex-direction: column; gap: 0.9rem; }
  .nav-toggle:checked ~ .site-nav{ display: block; }
}

/* ---------------------------------------------------------
   Stitch divider (thematic rule motif)
--------------------------------------------------------- */
.stitch{
  display: block;
  width: 100%;
  height: 14px;
}
.stitch path{
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 9 9;
}
.stitch.animate path{
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 1.6s ease forwards 0.2s;
}
@keyframes draw{ to{ stroke-dashoffset: 0; } }

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero{
  padding-top: clamp(3.5rem, 9vw, 6.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.hero .eyebrow{
  font-family: var(--font-tag);
  font-size: 0.78rem;
  color: var(--rust);
  margin-bottom: 1rem;
  display: inline-block;
}
.hero h1{
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.03;
  max-width: 16ch;
}
.hero .lede{
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--char);
}
.hero .actions{
  margin-top: 2.1rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.button{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--chalk);
  background: var(--ink);
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
.button:hover{ background: var(--rust); border-color: var(--rust); }
.button:active{ transform: translateY(1px); }

.button.ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--char);
  padding: 0.83rem 1.4rem;
}
.button.ghost:hover{ border-color: var(--rust); color: var(--rust); background: transparent; }

.hero-stitch{ color: var(--char); margin-top: clamp(2.5rem, 6vw, 4rem); }

/* ---------------------------------------------------------
   Section shells
--------------------------------------------------------- */
section{ padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); }

.section-head{
  max-width: 40ch;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}
.section-head h2{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
}
.section-head p{
  margin-top: 0.9rem;
  color: var(--char);
  font-size: 1.02rem;
}

/* ---------------------------------------------------------
   Making (process) — genuine sequence, numbered
--------------------------------------------------------- */
.making{ background: var(--chalk); border-top: 1px solid var(--line-on-linen); border-bottom: 1px solid var(--line-on-linen); }

.process{
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}
.process li{
  counter-increment: step;
  padding: 1.4rem 1.2rem 0 0;
  border-top: 1px solid var(--line-on-linen);
  position: relative;
}
.process li:not(:last-child){ border-right: 1px dashed var(--line-on-linen); }
.process li::before{
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-tag);
  font-size: 0.8rem;
  color: var(--rust);
  display: block;
  margin-bottom: 0.6rem;
}
.process h3{
  font-size: 1.05rem;
  font-weight: 560;
  margin-bottom: 0.5rem;
}
.process p{ font-size: 0.93rem; padding-right: 0.6rem; }

@media (max-width: 900px){
  .process{ grid-template-columns: 1fr 1fr; }
  .process li:nth-child(2n){ border-right: none; }
  .process li{ border-right: 1px dashed var(--line-on-linen) !important; }
  .process li:nth-child(2n){ border-right: none !important; }
}
@media (max-width: 560px){
  .process{ grid-template-columns: 1fr; }
  .process li{ border-right: none !important; }
}

/* ---------------------------------------------------------
   Seasons
--------------------------------------------------------- */
.seasons-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2rem);
}
.season-card{
  border: 1px solid var(--line-on-linen);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.season-card h3{
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.season-card .weight{
  font-family: var(--font-tag);
  font-size: 0.78rem;
  color: var(--rust);
  display: block;
  margin-bottom: 1rem;
}
.season-card p{ font-size: 0.98rem; margin-bottom: 1.2rem; }
.chips{ display: flex; gap: 0.5rem; }
.chip{ width: 2.1rem; height: 2.1rem; border: 1px solid var(--line-on-linen); }

@media (max-width: 700px){
  .seasons-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   Values
--------------------------------------------------------- */
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.value h3{ font-size: 1.15rem; margin: 0.9rem 0 0.5rem; }
.value p{ font-size: 0.95rem; }
.value svg{ color: var(--rust); }

@media (max-width: 760px){
  .values-grid{ grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------------------------------------------------------
   Visit — dark section with hang-tag card
--------------------------------------------------------- */
.visit{
  background: var(--ink);
  color: var(--linen);
}
.visit .section-head h2{ color: var(--linen); }
.visit .section-head p{ color: rgba(237,231,216,0.82); }
.visit .stitch{ color: var(--line-on-ink); }

.visit-inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tag{
  position: relative;
  padding: 2.4rem 2.2rem 2.2rem 16%;
}
.tag svg.tag-shape{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tag-content{ position: relative; }
.tag-content .kicker{
  font-family: var(--font-tag);
  font-size: 0.75rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.6rem;
}
.tag-content h3{
  color: var(--ink);
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.tag-content p{
  color: var(--char);
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  max-width: 30ch;
}
.tag-content .button{ background: var(--rust); border-color: var(--rust); color: var(--chalk); }
.tag-content .button:hover{ background: var(--ink); border-color: var(--ink); }

.visit-copy p + p{ margin-top: 1rem; }
.visit-copy p{ max-width: 42ch; color: rgba(237,231,216,0.86); }

@media (max-width: 800px){
  .visit-inner{ grid-template-columns: 1fr; }
  .tag{ order: -1; max-width: 24rem; }
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.site-footer{
  background: var(--chalk);
  border-top: 1px solid var(--line-on-linen);
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
.footer-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-tag);
  font-size: 0.76rem;
  color: var(--char);
  letter-spacing: 0.02em;
}
.footer-row a{ text-decoration: none; }
.footer-row a:hover{ color: var(--rust); }
