:root {
  --ink: #141b24;
  --slate: #2c3644;
  --fog: #e7eef3;
  --paper: #f4f1eb;
  --mustard: #c7922d;
  --line: rgba(20, 27, 36, 0.12);
  --display: "Syne", "Avenir Next", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--paper);
  line-height: 1.5;
  font-size: 1.05rem;
}
a { color: inherit; }
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.92);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  font-size: 1.15rem;
}
.topbar-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate);
  text-align: center;
}
.topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.topbar nav a {
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - 62px);
}
.split-copy {
  background: var(--ink);
  color: var(--fog);
  padding: clamp(2.5rem, 7vw, 5rem) 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise 0.8s ease both;
}
.kicker {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 1.2rem;
}
.split-copy h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin: 0 0 1.3rem;
}
.intro {
  max-width: 28rem;
  font-size: 1.25rem;
  color: rgba(231, 238, 243, 0.86);
  margin: 0 0 1.8rem;
}
.link-arrow {
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  color: var(--mustard);
  width: fit-content;
}
.link-arrow:hover span { margin-left: 0.35rem; }
.link-arrow span { display: inline-block; transition: margin 0.2s ease; }
.split-photo {
  margin: 0;
  overflow: hidden;
  animation: wash 1.1s ease both;
}
.split-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #efe8dc;
  padding: 0.85rem 0;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--slate);
}

.journal {
  padding: clamp(3rem, 8vw, 5rem) 4vw;
}
.journal-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.journal-head h2,
.yarn-intro h2,
.visit-card h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.6rem;
}
.journal-head p,
.yarn-intro p {
  margin: 0;
  color: var(--slate);
  font-size: 1.15rem;
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease both;
}
.feature:nth-child(3) { animation-delay: 0.05s; }
.feature:nth-child(4) { animation-delay: 0.1s; }
.feature:nth-child(5) { animation-delay: 0.15s; }
.feature:nth-child(6) { animation-delay: 0.2s; }
.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature .meta {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 0.7rem;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.feature p { margin: 0 0 1rem; color: var(--slate); }
.feature a {
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
}

.yarn {
  padding: clamp(3rem, 7vw, 4.5rem) 4vw;
  background: var(--ink);
  color: var(--fog);
}
.yarn-intro { max-width: 34rem; margin-bottom: 2rem; }
.yarn-intro p { color: rgba(231, 238, 243, 0.75); }
.yarn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.yarn-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(231, 238, 243, 0.12);
  padding-bottom: 1rem;
}
.yarn-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.9rem;
}
.yarn-grid h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0.9rem 0.45rem;
  letter-spacing: -0.02em;
}
.yarn-grid p {
  margin: 0 0.9rem 0.7rem;
  color: rgba(231, 238, 243, 0.72);
  font-size: 1rem;
}
.yarn-grid span {
  display: inline-block;
  margin: 0 0.9rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mustard);
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.duo figure { margin: 0; position: relative; }
.duo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.duo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(transparent, rgba(20, 27, 36, 0.78));
  color: var(--fog);
  font-size: 1rem;
}

.visit {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
}
.visit > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit-card {
  position: relative;
  z-index: 1;
  margin: 4vw;
  max-width: 28rem;
  background: var(--paper);
  padding: 1.6rem 1.5rem 1.7rem;
  animation: rise 0.8s ease both;
}
.visit-card p { color: var(--slate); margin: 0 0 1.1rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  background: var(--ink);
  color: var(--fog);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--slate); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 3rem 4vw 2rem;
  background: #0e131a;
  color: var(--fog);
}
.brand-foot {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.site-footer p { color: rgba(231, 238, 243, 0.7); margin: 0; }
.site-footer label {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  color: var(--mustard);
}
.mail-row { display: flex; gap: 0.45rem; }
.mail-row input {
  flex: 1;
  border: 0;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: rgba(231, 238, 243, 0.95);
  color: var(--ink);
}
.mail-row button {
  border: 0;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  padding: 0 1rem;
  cursor: pointer;
}
.fine {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  margin-top: 0.5rem !important;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes wash {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }
  .topbar-note { display: none; }
  .topbar nav { display: none; }
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-photo { min-height: 48vh; }
  .feature,
  .feature-b {
    grid-template-columns: 1fr !important;
  }
  .feature-b img { order: -1; }
  .yarn-grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .visit { min-height: 60vh; }
}

.footer-legal { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; margin: 1rem 0; }
.footer-legal a { text-decoration: none; font-size: .92rem; opacity: .85; }
.form-note { font-size: .85rem; opacity: .75; margin: .6rem 0 0; }
.form-note a { text-decoration: underline; }
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50;
  max-width: 36rem; margin: 0 auto; padding: 1rem 1.1rem;
  background: #111; color: #f5f5f5; box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cookie-banner a { color: #fff; }
.cookie-banner p { margin: 0 0 .8rem; font-size: .92rem; line-height: 1.45; color: inherit; }
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-btn {
  border: 0; padding: .65rem 1rem; cursor: pointer; font-weight: 600; background: #fff; color: #111;
}
.cookie-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
