/* Design tokens */
:root {
  color-scheme: light;
  --cream: #FAF8F4;
  --warm-white: #FFFDF9;
  --charcoal: #2C2C2A;
  --mid: #7A7A76;
  --light: #B8B5B0;
  --accent: #2E8B57;
  --accent-warm: #D4A574;
  --border: rgba(46,139,87,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --nav-height: 72px;
}

/* Reset + document base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height); /* keep anchored sections clear of the fixed nav */
}

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-height);
  background: rgba(253,251,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo span {
  font-weight: 300;
  font-style: italic;
  color: var(--accent-warm);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  background: transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--warm-white);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-insta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--charcoal);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nav-insta:hover {
  color: var(--warm-white);
  background: var(--accent);
  border-color: var(--accent);
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
}

.nav-toggle:focus-visible ~ .nav-right .nav-toggle-label {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* HERO */
.hero {
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  background: var(--warm-white);
}

.hero-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--charcoal);
  text-align: center;
  max-width: 720px;
  letter-spacing: 0.01em;
}

/* COLLECTIONS / BRANDS */
.section {
  padding: 100px 80px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}

.section-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--accent-warm);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--cream);
}

.brand-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FFFFFF;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Per-logo breathing room (logos have different intrinsic aspect ratios). */
.brand-bg--pad-sm { padding: 10%; }
.brand-bg--pad-md { padding: 12%; }
.brand-bg--pad-lg { padding: 14%; }
.brand-bg--pad-xl { padding: 16%; }

.brand-card:hover .brand-bg { transform: scale(1.05); }

.brand-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 36px;
  background: linear-gradient(to top, rgba(20,18,16,0.75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transition: padding 0.3s;
}

.brand-card:hover .brand-info { padding-bottom: 40px; }

.brand-arrow {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(28,28,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.brand-card:hover .brand-arrow {
  opacity: 1;
  transform: translateX(0);
}

.brand-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #1C1C1A;
  fill: none;
}

/* ABOUT STRIP */
.about-strip {
  background: var(--charcoal);
  padding: 100px 80px;
}

.about-full { max-width: 1100px; }

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.about-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 24px;
}

.about-headline {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  color: #F7F4EF;
  margin-bottom: 28px;
}

.about-headline em {
  font-style: italic;
  color: var(--accent-warm);
}

.about-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(247,244,239,0.55);
  margin-bottom: 40px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(212,165,116,0.4);
  transition: gap 0.3s, border-color 0.2s;
}

.about-cta:hover { gap: 20px; border-color: var(--accent-warm); }

/* CONTACT SECTION */
.contact-section {
  padding: 100px 80px;
  border-bottom: 0.5px solid var(--border);
}

.contact-intro {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.contact-intro em {
  font-style: italic;
  color: var(--accent-warm);
}

.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
}

.contact-item-value {
  font-size: 14px;
  color: var(--charcoal);
}

.contact-item-value a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.contact-item-value a:hover {
  color: var(--accent);
  border-color: var(--accent-warm);
}

/* FOOTER */
footer {
  background: var(--charcoal);
  padding: 28px 80px;
  border-top: 0.5px solid rgba(247,244,239,0.15);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-simple-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-simple-nav a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-simple-nav a:hover { color: var(--accent-warm); }

.footer-divider {
  color: rgba(247,244,239,0.25);
  font-size: 12px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(247,244,239,0.55);
  letter-spacing: 0.05em;
}

.footer-insta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-insta:hover { color: var(--accent-warm); }

/* MOBILE */
@media (max-width: 900px) {
  body > nav { padding: 0 24px; }

  .nav-logo { font-size: clamp(13px, 4.2vw, 16px); white-space: nowrap; }
  .nav-right { gap: 12px; }
  .nav-insta { font-size: 10px; padding: 7px 12px; }

  .nav-toggle-label { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    background: rgba(253,251,248,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }

  .nav-toggle:checked ~ .nav-links { display: flex; }

  .hero { padding: 40px 24px; }

  .section { padding: 60px 24px; }
  .about-strip { padding: 60px 24px; }
  .about-columns { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 60px 24px; }
  footer { padding: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .brands-grid { grid-template-columns: 1fr; }
}
