:root {
  --ink: #1a2420;
  --ink-soft: #3d4a43;
  --moss: #3f6b55;
  --moss-deep: #2a4a3a;
  --sage: #a8c4b0;
  --blush: #e8c4b8;
  --sand: #f3ebe3;
  --cream: #faf6f1;
  --line: rgba(26, 36, 32, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(168, 196, 176, 0.55), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 196, 184, 0.45), transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, var(--sand) 45%, #e7efe8 100%);
  min-height: 100vh;
}

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

a {
  color: var(--moss-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--ink);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 100;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(250, 246, 241, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  background: linear-gradient(135deg, var(--moss), var(--blush));
  transform: rotate(12deg);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.25s var(--ease);
}

.promo-banner {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, rgba(63, 107, 85, 0.12), rgba(232, 196, 184, 0.28));
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 36, 32, 0.15) 0%, rgba(26, 36, 32, 0.55) 70%, rgba(26, 36, 32, 0.72) 100%),
    linear-gradient(90deg, rgba(42, 74, 58, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
  color: var(--cream);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 0 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 0.9s var(--ease) 0.35s forwards;
}

.hero-lead {
  max-width: 36ch;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(250, 246, 241, 0.9);
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.9s var(--ease) 0.5s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: riseIn 0.9s var(--ease) 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.btn-primary:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(250, 246, 241, 0.55);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(250, 246, 241, 0.12);
  color: var(--cream);
}

.btn-solid {
  background: var(--moss);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--moss-deep);
  color: var(--cream);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--moss);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.45);
  margin: 1.5rem 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.product.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-media {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #d8d2cb;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product:hover .product-media img {
  transform: scale(1.04);
}

.product h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.85rem 0 0.25rem;
  letter-spacing: -0.01em;
}

.product .meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.product .desc {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.lookbook-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 1rem 0 0;
}

.lookbook-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 36, 32, 0.7), rgba(26, 36, 32, 0.25));
}

.lookbook-copy {
  position: relative;
  z-index: 1;
  color: var(--cream);
  max-width: 34rem;
  padding: 2.5rem 1.25rem;
}

.lookbook-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.page-hero {
  padding: 3.5rem 1.25rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--ink-soft);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  padding: 2.5rem 1.25rem 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.footer-note {
  margin: 0;
  max-width: 28rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 500;
}

.footer-copy {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(26, 36, 32, 0.25);
}

.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.88rem;
}

.cookie-bar a {
  color: var(--sage);
}

.cookie-bar button {
  flex-shrink: 0;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 246, 241, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    position: relative;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-brand,
  .hero h1,
  .hero-lead,
  .cta-row,
  .product {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
