:root {
  --ink: #1c1a17;
  --ink-soft: #4a443c;
  --paper: #faf7f2;
  --paper-2: #f2ece2;
  --gold: #b08b4f;
  --gold-deep: #8a6a35;
  --line: #e4dccf;
  --radius: 14px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 300;
  line-height: 1.65;
}

h1, h2, h3, .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 48px);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.5rem; letter-spacing: 0.04em; }
.nav { display: flex; gap: clamp(14px, 2.5vw, 32px); }
.nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold-deep); }

/* Hero */
.hero {
  text-align: center;
  padding: clamp(70px, 14vw, 150px) 20px clamp(60px, 10vw, 110px);
  background:
    radial-gradient(1200px 500px at 50% -10%, var(--paper-2), transparent),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.02;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  color: var(--ink-soft);
  margin: 18px auto 36px;
  max-width: 620px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); }
.btn-ghost { border-color: var(--gold); color: var(--gold-deep); }
.btn-ghost:hover { background: var(--gold); color: #fff; }

/* Brand marquee — "As Featured In" */
.marquee {
  padding: clamp(34px, 6vw, 56px) 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee[hidden] { display: none; }
.marquee-eyebrow {
  text-align: center;
  margin: 0 0 26px;
}
.marquee-viewport {
  overflow: hidden;
  /* fade out the edges so logos drift in/out gently */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-viewport:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 clamp(26px, 4.5vw, 52px);
  flex: 0 0 auto;
}
.marquee-icon {
  height: 26px;
  width: 26px;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.marquee-item:hover .marquee-icon { filter: grayscale(0); opacity: 1; }
.marquee-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink-soft);
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.marquee-item:hover .marquee-name { color: var(--gold-deep); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Sections */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) clamp(20px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 28px;
}
.section-head { margin-bottom: 36px; }
.section-sub, .contact-sub {
  color: var(--ink-soft);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  margin-top: 8px;
}
.about-body, .boutique-body { font-size: 1.08rem; max-width: 760px; color: var(--ink-soft); }
.about-body p, .boutique-body p { margin: 0 0 16px; }
.boutique-cta { margin-top: 10px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter-chip {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--gold); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(40, 30, 10, 0.10); }
.blog-card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  display: block;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card .card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .pub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 10px; }
.blog-card .excerpt { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.blog-card .card-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.blog-card .date { color: #9b9384; letter-spacing: 0.04em; }
.blog-card .read {
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.empty-state { color: var(--ink-soft); font-style: italic; grid-column: 1 / -1; }

/* Contact */
.contact { text-align: center; }
.contact .btn { text-transform: none; letter-spacing: 0.04em; }

.contact-form {
  max-width: 620px;
  margin: 34px auto 0;
  text-align: left;
}
.field-row { display: flex; gap: 18px; }
.field-row .field { flex: 1; }
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field > span em { font-style: italic; text-transform: none; letter-spacing: 0.02em; opacity: 0.7; }
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 139, 79, 0.15);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-form .btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.form-status { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
.form-status.is-success { color: #3f7d52; }
.form-status.is-error { color: #b0473f; }
.contact-alt {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.contact-alt a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

@media (max-width: 540px) {
  .field-row { flex-direction: column; gap: 0; }
}
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(14px, 3vw, 28px);
  margin-top: 34px;
}
.social-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover { color: var(--gold-deep); border-color: var(--gold); }

/* Footer */
.site-footer {
  text-align: center;
  padding: 36px 20px;
  font-size: 0.82rem;
  color: #9b9384;
  letter-spacing: 0.06em;
}

@media (max-width: 620px) {
  .nav { gap: 14px; }
  .nav a { font-size: 0.72rem; }
}
