:root {
  --ink: #05090e;
  --deep: #06101b;
  --night: #091522;
  --ice: #e9f7ff;
  --mist: #b8d7e8;
  --blue: #118cff;
  --blue-2: #7dcaff;
  --line-dark: rgba(232, 247, 255, 0.18);
  --line-light: rgba(4, 16, 27, 0.18);
  --cold-dark: linear-gradient(90deg, #02060a 0%, #06131f 52%, #082238 100%);
  --cold-light: linear-gradient(135deg, #5a86a8 0%, #739bb7 54%, #6087a2 100%);
  --cold-light-soft: linear-gradient(135deg, #668fab 0%, #7da4be 56%, #628aa6 100%);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 5rem; }

body {
  margin: 0;
  color: var(--ice);
  background: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open, body.explore-open { overflow: hidden; }

img { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--ice);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(6rem, 12vw, 11rem); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0.8rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, min-height 300ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(5, 9, 14, 0.86);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.site-header.is-explore-open { background: rgba(5, 9, 14, 0.94); border-color: var(--line-dark); backdrop-filter: blur(18px); }
.site-header.is-explore-open .desktop-nav { opacity: 0.38; pointer-events: none; }

.brand { display: inline-flex; width: fit-content; align-items: center; }

.brand-goat {
  width: 2.65rem;
  height: 3.15rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: width 300ms ease, height 300ms ease, transform 250ms ease;
}

.brand:hover .brand-goat { transform: translateY(-2px); }
.site-header.is-scrolled .brand-goat { width: 2.25rem; height: 2.7rem; }

.desktop-nav { display: flex; gap: clamp(1.5rem, 3vw, 3rem); }
.desktop-nav a { position: relative; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.desktop-nav a::after { position: absolute; content: ""; inset: auto 0 -0.35rem; height: 1px; background: var(--ice); transform: scaleX(0); transform-origin: right; transition: transform 200ms ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 1rem; padding: 0; color: inherit; background: none; border: 0; cursor: pointer; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.header-cta span { display: grid; width: 2.2rem; aspect-ratio: 1; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.header-cta:hover span, .header-cta:focus-visible span { color: var(--deep); background: var(--ice); }
.header-cta[aria-expanded="true"] span { color: var(--deep); background: var(--ice); transform: rotate(135deg); }

.menu-button, .mobile-menu { display: none; }

.explore-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(1, 5, 9, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.explore-backdrop.is-open { opacity: 1; pointer-events: auto; }

.explore-panel {
  position: fixed;
  z-index: 90;
  inset: 0 0 0 auto;
  width: min(35rem, 100%);
  color: var(--ice);
  background: #07192a;
  box-shadow: -2rem 0 5rem rgba(0, 0, 0, 0.32);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), visibility 360ms;
}

.explore-panel.is-open { transform: translateX(0); visibility: visible; }

.explore-panel-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(6.5rem, 11vh, 8.5rem) clamp(1.5rem, 4vw, 3.5rem) 2.5rem;
  overflow-y: auto;
}

.explore-panel-top, .explore-panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.explore-panel-top { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-dark); color: rgba(233, 247, 255, 0.58); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.explore-panel-top button { display: grid; width: 2.5rem; aspect-ratio: 1; place-items: center; color: var(--ice); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark); border-radius: 50%; cursor: pointer; font-size: 1.45rem; font-weight: 300; line-height: 1; transition: color 200ms ease, background 200ms ease, transform 200ms ease; }
.explore-panel-top button:hover, .explore-panel-top button:focus-visible { color: var(--deep); background: var(--ice); transform: rotate(90deg); }

.explore-links { display: flex; flex: 1; flex-direction: column; justify-content: center; padding-block: 2rem; }
.explore-links a { display: grid; grid-template-columns: 2rem 1fr; gap: 0.8rem; align-items: baseline; padding: 0.72rem 0; border-bottom: 1px solid transparent; transition: color 200ms ease, border-color 200ms ease, transform 200ms ease; }
.explore-links a:hover, .explore-links a:focus-visible { color: var(--blue-2); border-color: rgba(125, 202, 255, 0.34); transform: translateX(0.35rem); }
.explore-links span { color: rgba(233, 247, 255, 0.4); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; }
.explore-links strong { font-size: clamp(1.65rem, 3.2vw, 2.55rem); font-weight: 650; line-height: 1.08; letter-spacing: -0.04em; }
.explore-panel-foot { padding-top: 1.25rem; color: rgba(233, 247, 255, 0.46); border-top: 1px solid var(--line-dark); font-size: 0.62rem; font-weight: 750; letter-spacing: 0.11em; text-transform: uppercase; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 52% 42%, rgba(38, 117, 168, 0.24) 0%, rgba(11, 46, 70, 0.1) 38%, transparent 64%),
    var(--cold-dark);
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 20%, rgba(143, 214, 255, 0.026) 20.1% 20.22%, transparent 20.32% 54%, rgba(143, 214, 255, 0.022) 54.1% 54.2%, transparent 54.3%),
    repeating-linear-gradient(90deg, transparent 0 6.9rem, rgba(233, 247, 255, 0.018) 7rem);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2) 78%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 100svh;
  align-content: end;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: 8rem;
  padding-bottom: clamp(2.6rem, 5vw, 4.5rem);
}

.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: currentColor; }

.catalog-heading h2,
.about h2,
.visual-break h2,
.contact h2 {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy { align-self: end; }
.hero-eyebrow { margin-bottom: 0.85rem; color: rgba(233, 247, 255, 0.72); }
.hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.6rem, 5.8vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.34);
}

.hero-brand-visual {
  position: absolute;
  z-index: 1;
  top: 43%;
  left: 50%;
  width: min(70vw, 68rem, calc(68svh * 1.254));
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 2.2rem 3.2rem rgba(0, 0, 0, 0.48)) drop-shadow(0 0 2.8rem rgba(63, 161, 220, 0.12));
  animation: hero-mark-arrive 1200ms cubic-bezier(.2,.8,.2,1) both;
}

.hero-brand-visual::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 15% 5% 8%;
  background: radial-gradient(ellipse, rgba(98, 184, 235, 0.17), transparent 68%);
  filter: blur(2.5rem);
}

.hero-brand-mark { width: 100%; height: auto; object-fit: contain; }

.hero-bottom {
  display: flex;
  width: auto;
  align-items: flex-end;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-origin { color: rgba(233, 247, 255, 0.52); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }

.circle-link {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(233, 247, 255, 0.56);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.circle-link:hover { color: var(--ink); background: var(--ice); transform: translateY(-2px); }

.hero-index { position: absolute; right: var(--pad); top: 50%; display: flex; flex-direction: column; gap: 0.4rem; color: rgba(233, 247, 255, 0.42); font-size: 0.62rem; letter-spacing: 0.14em; transform: translateY(-50%) rotate(90deg); transform-origin: right top; }

.section-kicker { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line-dark); }
.section-kicker span:first-child { color: var(--blue-2); }

.catalog {
  color: var(--deep);
  background: var(--cold-light);
}
.section-kicker-dark { border-color: var(--line-light); }
.catalog-heading { margin-top: clamp(3rem, 6vw, 5rem); }
.catalog-heading h2 { font-size: clamp(3.4rem, 6.8vw, 6.75rem); }
.catalog-heading h2 span { color: var(--blue); }

.filter-bar { display: flex; gap: 0.45rem; margin-top: 4rem; padding-bottom: 1.5rem; overflow-x: auto; border-bottom: 1px solid var(--line-light); scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter { flex: 0 0 auto; padding: 0.65rem 1rem; color: rgba(6, 16, 27, 0.54); background: transparent; border: 1px solid rgba(6, 16, 27, 0.22); border-radius: 999px; cursor: pointer; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: 200ms ease; }
.filter sup { margin-left: 0.28rem; font-size: 0.58rem; }
.filter:hover, .filter.is-active { color: var(--ice); background: var(--deep); border-color: var(--deep); }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem) clamp(1rem, 2vw, 2rem); margin-top: clamp(2.5rem, 5vw, 5rem); }
.product-card { min-width: 0; transition: opacity 260ms ease, transform 260ms ease; }
.product-card[hidden] { display: none; }
.product-image { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #c8e8f7; }
.product-image img { height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 650ms ease; }
.product-card:hover img { transform: scale(1.035); filter: saturate(1.05) contrast(1.03); }
.status { position: absolute; top: 1rem; left: 1rem; padding: 0.5rem 0.68rem; color: var(--ice); background: rgba(5, 9, 14, 0.82); border: 1px solid rgba(233, 247, 255, 0.28); backdrop-filter: blur(10px); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.status-live { color: var(--deep); background: rgba(233, 247, 255, 0.88); border-color: rgba(6, 16, 27, 0.12); }
.product-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(6, 16, 27, 0.14); }
.product-category { color: rgba(6, 16, 27, 0.5); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; }
.product-meta h3 { margin: 0.3rem 0 0; font-size: clamp(1.35rem, 2.3vw, 2.2rem); line-height: 1; letter-spacing: -0.04em; }
.product-meta p { margin: 0; color: var(--deep); font-size: 0.792rem; font-weight: 700; text-align: right; }
.catalog-note { max-width: 44rem; margin: 5rem 0 0 auto; padding-top: 1.25rem; color: rgba(6, 16, 27, 0.56); border-top: 1px solid var(--line-light); font-size: 0.78rem; }

.about {
  color: var(--deep);
  background: var(--cold-light-soft);
}
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(3rem, 8vw, 8rem); }
.about h2 { margin-top: clamp(3rem, 6vw, 5rem); font-size: clamp(3.4rem, 6.2vw, 6.2rem); }
.about-copy { align-self: end; padding-top: 5rem; }
.about-copy p { color: rgba(6, 16, 27, 0.66); font-size: 1.05rem; }
.about-copy .about-lead { color: var(--deep); font-size: clamp(1.4rem, 2.25vw, 2.25rem); font-weight: 700; line-height: 1.16; letter-spacing: -0.035em; }

.principles {
  padding-bottom: clamp(3rem, 4vw, 4rem);
  background: var(--cold-dark);
}
.principles-heading { margin-top: clamp(3rem, 6vw, 5rem); }
.principles-heading h2 { margin: 0; font-size: clamp(3.4rem, 6.2vw, 6.2rem); font-weight: 500; line-height: 0.96; letter-spacing: -0.055em; }
.principles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(4rem, 8vw, 7rem); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.principle-card { min-height: 25rem; padding: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.principle-card > span { color: var(--blue-2); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; }
.principle-card h3 { max-width: 12ch; margin: clamp(4rem, 8vw, 7rem) 0 1.5rem; font-size: clamp(2rem, 3.4vw, 3.4rem); font-weight: 500; line-height: 1; letter-spacing: -0.045em; }
.principle-card p { max-width: 37rem; margin: 0; color: rgba(233, 247, 255, 0.64); font-size: 1rem; }
.principle-card-values { grid-column: 1 / -1; display: grid; grid-template-columns: 0.75fr 1.25fr; column-gap: clamp(2rem, 6vw, 6rem); min-height: auto; }
.principle-card-values > span { grid-column: 1 / -1; }
.principle-card-values h3 { margin-top: clamp(3rem, 6vw, 5rem); }
.principle-card-values > p { align-self: end; margin-bottom: 1.5rem; }
.values-list { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.values-list span { padding: 0.62rem 0.9rem; color: rgba(233, 247, 255, 0.82); border: 1px solid rgba(233, 247, 255, 0.24); border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.visual-break { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--deep); }
.visual-break > img { position: absolute; z-index: 0; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.visual-break-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(4, 9, 14, 0.82), rgba(4, 9, 14, 0.12) 62%), linear-gradient(0deg, rgba(4, 9, 14, 0.68), transparent 52%); }
.visual-break-copy { position: relative; z-index: 2; padding-bottom: clamp(3rem, 7vw, 6rem); }
.visual-break-copy > span { display: block; margin-bottom: 2rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; }
.visual-break h2 { font-size: clamp(3.6rem, 7.2vw, 7.2rem); }
.visual-break-copy > p { max-width: 34rem; margin: 1.75rem 0 0; color: rgba(233, 247, 255, 0.78); font-size: clamp(1rem, 1.3vw, 1.15rem); }
.visual-break-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2rem; }
.visual-break-meta span { padding: 0.55rem 0.75rem; color: rgba(233, 247, 255, 0.82); background: rgba(5, 9, 14, 0.26); border: 1px solid rgba(233, 247, 255, 0.28); backdrop-filter: blur(10px); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; }
.visual-break-link { display: inline-flex; align-items: center; gap: 1rem; margin-top: 1rem; padding: 0.75rem 0.9rem; border: 1px solid rgba(233, 247, 255, 0.42); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: color 220ms ease, background 220ms ease; }
.visual-break-link:hover, .visual-break-link:focus-visible { color: var(--deep); background: var(--ice); }

.collection-hero { position: relative; display: flex; min-height: 100svh; align-items: flex-end; isolation: isolate; overflow: hidden; background: var(--deep); }
.collection-hero-image, .collection-hero-overlay { position: absolute; inset: 0; }
.collection-hero-image { z-index: -2; height: 100%; object-fit: cover; object-position: center; animation: hero-settle 1600ms cubic-bezier(.2,.8,.2,1) both; }
.collection-hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(2, 7, 12, 0.8), rgba(2, 7, 12, 0.12) 68%), linear-gradient(0deg, rgba(2, 7, 12, 0.78), transparent 58%); }
.collection-hero-content { padding-top: 9rem; padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.collection-hero h1, .collection-intro h2, .lookbook h2, .collection-cta-section h2 { margin: 0; font-weight: 500; line-height: 0.96; letter-spacing: -0.055em; }
.collection-hero h1 { margin-top: 1.2rem; font-size: clamp(4.5rem, 10vw, 10rem); }
.collection-hero-bottom { display: flex; max-width: 70rem; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); }
.collection-hero-bottom p { max-width: 34rem; margin: 0; color: rgba(233, 247, 255, 0.82); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.collection-hero-bottom span { color: rgba(233, 247, 255, 0.6); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.collection-intro { background: var(--cold-dark); }
.collection-intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 9vw, 9rem); align-items: end; margin-top: clamp(4rem, 8vw, 7rem); }
.collection-intro h2 { font-size: clamp(3.8rem, 7vw, 7rem); }
.collection-intro-copy { max-width: 38rem; }
.collection-intro-copy p { color: rgba(233, 247, 255, 0.64); font-size: 1.05rem; }
.collection-intro-copy .collection-lead { color: var(--ice); font-size: clamp(1.45rem, 2.25vw, 2.25rem); font-weight: 650; line-height: 1.15; letter-spacing: -0.035em; }
.collection-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); }
.collection-tags span { padding: 0.58rem 0.85rem; border: 1px solid rgba(233, 247, 255, 0.24); border-radius: 999px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.lookbook { color: var(--deep); background: var(--cold-light-soft); }
.lookbook-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: end; margin-top: clamp(3rem, 6vw, 5rem); }
.lookbook h2 { font-size: clamp(3.2rem, 6vw, 6rem); }
.lookbook-heading p { max-width: 22rem; margin: 0 0 0.45rem auto; color: rgba(6, 16, 27, 0.58); font-size: 1rem; }
.lookbook-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 2rem); margin-top: clamp(3rem, 6vw, 5rem); }
.lookbook-item { margin: 0; }
.lookbook-item img { aspect-ratio: 4 / 3; object-fit: cover; }
.lookbook-item figcaption { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-light); }
.lookbook-item figcaption span { color: rgba(6, 16, 27, 0.5); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; }
.lookbook-item figcaption b { font-size: 1.05rem; }
.collection-disclaimer { max-width: 48rem; margin: 4rem 0 0 auto; padding-top: 1rem; color: rgba(6, 16, 27, 0.55); border-top: 1px solid var(--line-light); font-size: 0.78rem; }
.collection-cta-section { background: radial-gradient(circle at 75% 10%, rgba(18, 49, 76, 0.72) 0, transparent 38%), var(--cold-dark); }
.collection-cta-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.collection-cta-grid > div:first-child > span { color: var(--blue-2); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; }
.collection-cta-section h2 { max-width: 10ch; margin-top: 1.25rem; font-size: clamp(3.6rem, 7vw, 7rem); }
.collection-cta-grid > div:last-child > p { margin: 0 0 2rem; color: rgba(233, 247, 255, 0.64); font-size: 1.05rem; }

.contact { padding-top: clamp(3.5rem, 5vw, 5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); background: var(--cold-dark); }
.contact-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; margin-top: 0; }
.contact h2 { font-size: clamp(3.5rem, 6.6vw, 6.6rem); }
.contact h2 span { color: var(--blue-2); }
.contact-side > p { margin: 0 0 2rem; color: rgba(233, 247, 255, 0.62); font-size: 1.06rem; }
.primary-link { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.primary-link b { display: grid; width: 2.7rem; aspect-ratio: 1; place-items: center; color: var(--deep); background: var(--ice); border-radius: 50%; transition: transform 200ms ease; }
.primary-link:hover b { transform: rotate(45deg); }
.contact-details { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; color: rgba(233, 247, 255, 0.5); font-size: 0.72rem; }
.contact-details a { color: var(--ice); }

.footer { color: var(--ice); background: #000; }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; padding-top: clamp(2.5rem, 4vw, 4rem); padding-bottom: 3.25rem; }
.footer-contact { display: flex; max-width: 24rem; flex-direction: column; align-items: flex-start; }
.footer-label { margin-bottom: 1rem; color: rgba(233, 247, 255, 0.44); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-contact a { padding-bottom: 0.25rem; border-bottom: 1px solid rgba(233, 247, 255, 0.46); font-size: clamp(1rem, 1.45vw, 1.2rem); overflow-wrap: anywhere; }
.footer-contact p { margin: 1.15rem 0 0; color: rgba(233, 247, 255, 0.5); font-size: 0.8rem; }
.footer-seal { display: flex; width: 3.75rem; align-items: center; justify-content: center; transition: transform 220ms ease; }
.footer-seal:hover { transform: translateY(-3px); }
.footer-seal img { width: 100%; height: 4.5rem; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28)); }
.footer-instagram { justify-self: end; display: flex; align-items: center; gap: 0.9rem; padding: 0.55rem 0; border-bottom: 1px solid transparent; transition: color 220ms ease, border-color 220ms ease; }
.footer-instagram:hover, .footer-instagram:focus-visible { color: var(--blue-2); border-color: currentColor; }
.footer-instagram svg { width: 1.9rem; height: 1.9rem; fill: none; stroke: currentColor; stroke-width: 1.6; }
.footer-instagram span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; padding-bottom: 2rem; color: rgba(233, 247, 255, 0.48); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-bottom a { color: var(--ice); }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 800ms cubic-bezier(.2,.7,.2,1), transform 800ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-settle { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.035); } }
@keyframes hero-mark-arrive {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 1.5rem)) scale(0.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { justify-self: end; display: grid; width: 2.8rem; height: 2.8rem; padding: 0.8rem; place-content: center; gap: 0.4rem; color: var(--ice); background: rgba(5, 9, 14, 0.24); border: 1px solid var(--line-dark); cursor: pointer; }
  .menu-button span { display: block; width: 1.2rem; height: 1px; background: currentColor; transition: transform 200ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(0.22rem) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-0.22rem) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; gap: 0; padding: 6rem var(--pad) 2rem; overflow-y: auto; background: rgba(5, 9, 14, 0.98); opacity: 0; pointer-events: none; transition: opacity 250ms ease; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu a { padding: 1rem 0; border-bottom: 1px solid var(--line-dark); font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif; font-size: clamp(2.5rem, 9vw, 4.5rem); font-weight: 500; line-height: 1.08; }
  .about-grid, .collection-intro-grid, .lookbook-heading, .collection-cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .lookbook-heading p { margin-left: 0; }
  .about-copy { padding-top: 0; }
  .footer-main { grid-template-columns: 1fr auto; row-gap: 2.5rem; }
  .footer-seal { justify-self: end; }
  .footer-instagram { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 660px) {
  .site-header { min-height: 68px; }
  .brand-goat { width: 2.25rem; height: 2.7rem; }
  .site-header.is-scrolled .brand-goat { width: 2rem; height: 2.45rem; }
  .mobile-menu { justify-content: flex-start; padding-top: 5.5rem; }
  .mobile-menu a { padding: 0.8rem 0; font-size: clamp(2rem, 8vw, 3.1rem); }
  .hero { min-height: 100svh; }
  .hero-content { grid-template-columns: 1fr; gap: 1.35rem; padding-top: 5.75rem; padding-bottom: 1.75rem; }
  .hero-brand-visual { top: 41%; width: min(94vw, calc(54svh * 1.254)); }
  .hero-eyebrow { margin-bottom: 0.65rem; font-size: 0.62rem; }
  .hero-copy h1 { font-size: clamp(3.15rem, 14vw, 4.6rem); }
  .hero-bottom { align-items: flex-start; }
  .hero-origin { display: none; }
  .hero-index { display: none; }
  .section { padding-block: 5.5rem; }
  .principles { padding-bottom: 3rem; }
  .contact { padding-top: 4rem; padding-bottom: 3rem; }
  .catalog-heading h2, .about h2, .principles-heading h2, .contact h2 { font-size: clamp(3rem, 12.5vw, 4.8rem); }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 4 / 3; }
  .visual-break h2 { font-size: clamp(3.25rem, 14vw, 5rem); }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 22rem; }
  .principle-card-values { grid-column: auto; display: block; min-height: auto; }
  .principle-card-values h3 { margin-top: 4rem; }
  .principle-card-values > p { margin-bottom: 0; }
  .visual-break { min-height: 76svh; }
  .visual-break > img { object-position: 63% center; }
  .collection-hero { min-height: 88svh; }
  .collection-hero-image { object-position: 62% center; }
  .collection-hero-bottom { align-items: flex-start; flex-direction: column; }
  .collection-intro h2, .lookbook h2, .collection-cta-section h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .lookbook-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; align-items: start; padding-top: 2.5rem; padding-bottom: 2.75rem; }
  .footer-seal, .footer-instagram { grid-column: auto; justify-self: start; }
  .footer-seal { width: 3.4rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-top: 1rem; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
}
