
:root {
  --black: #080808;
  --cream: #f5f0e7;
  --warm-white: #fcfaf5;
  --gold: #d4ad61;
  --brown: #6a4a32;
  --text: #26211d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 86px;
  padding: 12px clamp(20px, 4vw, 70px);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  background: var(--black);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand img {
  width: 160px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
}
.nav a, .language-toggle {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold); }
.language-toggle, .menu-toggle {
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(212,173,97,.55);
  padding: 10px 14px;
  cursor: pointer;
}
.menu-toggle { display: none; }

.hero {
  min-height: 82vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/scarves.jpeg") center 44% / cover no-repeat;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35) 56%, rgba(0,0,0,.12));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 760px;
  margin-left: clamp(22px, 8vw, 130px);
  padding: 80px 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow.dark { color: #8d6c3d; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(3.6rem, 7vw, 7.2rem); max-width: 900px; }
h2 { font-size: clamp(2.5rem, 4.5vw, 4.7rem); }
h3 { font-size: 2rem; }
.hero-copy { max-width: 580px; font-size: 1.08rem; margin: 26px 0 34px; }

.button {
  display: inline-block;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: .25s ease;
}
.button-gold { background: var(--gold); color: var(--black); }
.button-gold:hover { background: white; }
.button-dark { background: var(--black); color: white; }
.button-outline { border-color: var(--black); }

.section { padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 110px); }
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  background: var(--cream);
}
.intro p:last-child { max-width: 680px; font-size: 1.05rem; }

.section-heading { max-width: 760px; margin-bottom: 54px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.product-card {
  background: white;
  border: 1px solid #e8e1d6;
  overflow: hidden;
}
.product-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.product-info { padding: 24px 26px 28px; }
.product-info p { margin-bottom: 0; color: #6f675f; }

.story-section {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--black);
  color: white;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; min-height: 760px; }
.story-copy {
  padding: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy h2 { margin-bottom: 32px; }
.story-copy p { color: #ded9d0; }

.craft {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}
.craft img { width: 100%; max-height: 820px; object-fit: cover; }
.craft-copy h2 { margin-bottom: 28px; }

.quote-section {
  padding: 100px 22px;
  text-align: center;
  background: #6a4a32;
  color: white;
}
.quote-section p {
  max-width: 1000px;
  margin: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 1.12;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  background: var(--cream);
}
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact a:hover { color: #8d6c3d; }

footer {
  background: var(--black);
  color: #bfb7ab;
  padding: 50px 22px;
  text-align: center;
}
footer img { width: 180px; height: 90px; object-fit: contain; margin: 0 auto 16px; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 0; right: 0; top: 86px;
    background: var(--black);
    display: none;
    flex-direction: column;
    padding: 26px;
  }
  .nav.open { display: flex; }
  .intro, .story-section, .craft { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { height: 470px; }
  .story-image img { min-height: 520px; }
  .contact { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .site-header { grid-template-columns: 1fr auto auto; padding: 10px 14px; }
  .brand img { width: 124px; }
  .hero { min-height: 76vh; }
  .hero-content { margin-left: 0; padding: 72px 24px; }
  h1 { font-size: 3.25rem; }
  .product-card img { height: 380px; }
}


/* Version 2 refinements */
.site-header {
  position: fixed;
  width: 100%;
  background: rgba(7,7,7,.28);
  backdrop-filter: blur(4px);
  transition: background .35s ease, min-height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(7,7,7,.97);
  min-height: 74px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.hero { min-height: 100vh; }
.hero-image { animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }

.suri-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #080808;
  color: white;
}
.suri-visual img {
  width: 100%;
  height: 100%;
  min-height: 1050px;
  object-fit: cover;
}
.suri-copy {
  padding: clamp(70px, 8vw, 125px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suri-copy h2 { margin-bottom: 30px; }
.suri-copy p { color: #ddd7cd; margin: 0 0 18px; }

.suri-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #efe8dc;
}
.suri-features article {
  padding-top: 20px;
  border-top: 1px solid #bba98d;
}
.suri-features span {
  color: #9f7844;
  font-size: .72rem;
  letter-spacing: .18em;
}
.suri-features p { color: #766f67; }

.contact-list {
  display: grid;
  gap: 9px;
  margin-top: 26px;
}
.social-panel {
  border-left: 1px solid #cbbda9;
  padding-left: 60px;
}
.social-links, .footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.social-links a, .footer-social a {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}
.footer-social { justify-content: center; margin: 18px 0; }

@media (max-width: 900px) {
  .suri-section { grid-template-columns: 1fr; }
  .suri-visual img { min-height: 540px; }
  .suri-features { grid-template-columns: repeat(2, 1fr); }
  .social-panel { border-left: 0; border-top: 1px solid #cbbda9; padding: 34px 0 0; }
}
@media (max-width: 560px) {
  .suri-features { grid-template-columns: 1fr; }
  .suri-copy { padding: 70px 24px; }
}
