:root {
  --bg: #f1eadc;
  --ink: #171715;
  --panel: #ffffffcc;
  --paper: #fffaf1;
  --line: #d6cab8;
  --accent: #8e5a32;
  --accent-2: #28463b;
}

* { box-sizing: border-box; }

html, body { margin:0; padding:0; }
body {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(900px 420px at 18% -8%, #e7ddcd 0%, transparent 64%),
    linear-gradient(135deg, #f1eadc, #e5dfd1 50%, #f8f3e8);
  min-height: 100vh;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.06) 0,
    rgba(255,255,255,0.06) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: multiply;
  z-index: -1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 0.9rem 6vw;
  border-bottom:1px solid #d0bfa7;
  background: color-mix(in oklab, var(--paper) 90%, #fff 10%);
  backdrop-filter: blur(4px);
}

.logo { font-size: 1.2rem; letter-spacing: 0.2em; font-weight: 700; }

nav { display:flex; gap: 1rem; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  color: #332b24;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
}

main { padding: 2rem 6vw 4rem; }

section { margin-bottom: 2rem; }

.hero, .section-head { max-width: 980px; }

.eyebrow {
  letter-spacing: 0.2em;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  color: #6c5a49;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  overflow: hidden;
  color: #fffaf4;
  background:
    linear-gradient(180deg, rgba(17,18,19,0.14), rgba(17,18,19,0.76)),
    url("assets/images/boutique-rack.jpg") center / cover no-repeat;
}

.hero .eyebrow { color: #f5dfbe; }
.hero h1 { margin: 0.3rem 0 0.6rem; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.hero p, .hero-actions { max-width: 590px; }

.hero-actions { margin-top: 1.1rem; display:flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  font-family: Arial, sans-serif;
}

.btn-soft { background: rgba(255,255,255,0.12); color: #fffaf4; border: 1px solid rgba(255,255,255,0.58); }

.grid-3, .grid-2, .timeline, .masonry {
  display: grid;
  gap: 1rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.masonry { grid-template-columns: repeat(3, 1fr); }

.card, .product-card, .contact-block, .step, .shot {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem;
  backdrop-filter: blur(2px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card img, .product-card img, .shot img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin: -1rem -1rem 1rem;
  width: calc(100% + 2rem);
}

.product-card img { height: 210px; }

.card:hover, .product-card:hover, .step:hover, .shot:hover, .contact-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(67, 56, 44, 0.12);
}

.product-card ul { padding-left: 1rem; margin: 0.4rem 0 0; }
.product-card ul li { margin-bottom: 0.3rem; }

.section-head h1, .masonry h3, .section-head { margin-bottom: 0.4rem; }

.highlight { margin-top: 1.5rem; background: linear-gradient(120deg, #fffdf8 0%, #f5efe3 100%); padding: 1rem; border: 1px solid var(--line); }
.inline-link { display: inline-block; margin-top: 0.8rem; font-weight: 700; color: var(--accent); }

.timeline .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}
.timeline .step span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #fff;
}

.shot { background: linear-gradient(145deg, #fff9f3, #f1e7d7); min-height: 170px; overflow: hidden; }

footer {
  text-align:center;
  font-family: Arial, sans-serif;
  color: #5f5446;
  padding: 1.2rem 0 2rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 940px) {
  .grid-3, .grid-2, .masonry { grid-template-columns: 1fr; }
  nav { justify-content: flex-end; }
  .hero { min-height: 460px; padding: 2rem; }
}
