@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --black: #0b0b0c;
  --charcoal: #1a1815;
  --ivory: #faf8f4;
  --ivory-deep: #f1ece1;
  --gold: #c9a227;
  --gold-light: #e4cd83;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --text-muted: #8a8680;
  --text-on-dark: #c9c5bd;
  --serif: 'Cormorant', serif;
  --sans: 'Outfit', sans-serif;
  --container: 1180px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--black);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- stitch motif ---------- */
.stitch {
  width: 100%;
  height: 14px;
  display: block;
}
.stitch path {
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 7 7;
  stroke-dashoffset: 600;
  animation: stitchDraw 2.4s ease forwards;
}
@keyframes stitchDraw {
  to { stroke-dashoffset: 0; }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stitch path { animation: none; stroke-dashoffset: 0; }
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 34px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}
.btn-solid { background: var(--gold); color: var(--black); }
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark { color: var(--ivory); border-color: var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: var(--black); }
.btn-outline-light { color: var(--black); border-color: var(--black); }
.btn-outline-light:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-color: rgba(201, 162, 39, 0.25);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  font-weight: 600;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 40px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text-on-dark);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px; height: 1px;
  background: var(--gold);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ivory);
}
.mobile-nav .close-btn {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

/* ---------- page hero (sub-pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--ivory);
  padding: 200px 0 90px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--ivory);
  margin-top: 18px;
}
.page-hero p {
  color: var(--text-on-dark);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 15px;
}

/* ---------- hero (home) ---------- */
.hero {
  background: var(--black);
  color: var(--ivory);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-tagline {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.05;
  color: var(--ivory);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 26px;
  max-width: 420px;
  color: var(--text-on-dark);
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .ring {
  width: 380px; height: 380px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual .ring::before {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(201,162,39,0.07);
  border-radius: 50%;
}
.hero-visual i {
  font-size: 130px;
  color: var(--gold);
  transform: rotate(-18deg);
}
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- sections ---------- */
section { padding: 110px 0; }
.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 15px;
}
.on-dark { background: var(--black); color: var(--ivory); }
.on-dark .section-head p { color: var(--text-on-dark); }
.on-ivory-deep { background: var(--ivory-deep); }

/* ---------- featured collection (home) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.shoe-card {
  background: var(--ivory);
  border: 1px solid rgba(11,11,12,0.08);
  padding: 0 0 30px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.shoe-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.25);
}
.shoe-card .icon-stage {
  background: var(--black);
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
}
.shoe-card .icon-stage i {
  font-size: 64px;
  color: var(--gold);
  transition: transform 0.5s ease;
}
.shoe-card:hover .icon-stage i { transform: scale(1.1) rotate(-6deg); }
.shoe-card .icon-stage::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.shoe-card h3 { font-size: 22px; margin: 0 18px 8px; }
.shoe-card .tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.shoe-card p.desc {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 26px;
}
.feature-grid-cta { text-align: center; margin-top: 56px; }

/* ---------- why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,162,39,0.18);
}
.why-item {
  background: var(--black);
  padding: 48px 32px;
  text-align: left;
}
.why-item i { font-size: 30px; color: var(--gold); }
.why-item h4 { color: var(--ivory); font-size: 20px; margin: 22px 0 10px; }
.why-item p { color: var(--text-on-dark); font-size: 14px; }

/* ---------- guarantee banner ---------- */
.guarantee {
  background: var(--gold);
  color: var(--black);
  padding: 56px 0;
}
.guarantee .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.guarantee h3 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: 540px;
}
.guarantee .badge-row { display: flex; gap: 34px; }
.guarantee .badge-row div { text-align: center; }
.guarantee .badge-row i { font-size: 30px; }
.guarantee .badge-row span { display: block; font-size: 12px; letter-spacing: 0.06em; margin-top: 8px; max-width: 100px; }

/* ---------- testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--ivory);
  border: 1px solid rgba(11,11,12,0.08);
  padding: 38px 30px;
}
.testi-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 18px; }
.testi-card p.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 24px;
}
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
}
.testi-card .who strong { display: block; font-size: 14px; }
.testi-card .who span { font-size: 12px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(11,11,12,0.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--black);
}
.faq-q i { color: var(--gold); transition: transform 0.35s ease; font-size: 18px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p { padding-bottom: 24px; color: var(--text-muted); font-size: 14.5px; max-width: 640px; }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--black);
  color: var(--ivory);
  text-align: center;
  padding: 100px 0;
}
.cta-strip h2 { font-size: clamp(30px, 4vw, 44px); margin: 18px 0 30px; }
.cta-strip .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.footer-grid .brand { margin-bottom: 16px; }
.footer-grid p.blurb { font-size: 14px; max-width: 280px; color: var(--text-on-dark); }
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-grid ul li { margin-bottom: 12px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 14px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-bottom {
  padding: 26px 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---------- about page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-split .icon-stage-lg {
  background: var(--black);
  padding: 90px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-split .icon-stage-lg i { font-size: 130px; color: var(--gold); }
.about-split h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 22px; }
.about-split p { color: var(--text-muted); margin-bottom: 18px; font-size: 15px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.value-card {
  text-align: center;
  padding: 42px 24px;
  border: 1px solid rgba(11,11,12,0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.value-card i { font-size: 32px; color: var(--gold); }
.value-card h4 { margin: 20px 0 10px; font-size: 19px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-strip div { padding: 0 20px; }
.stat-strip h3 { font-size: clamp(34px, 5vw, 50px); color: var(--gold); }
.stat-strip span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark); }
.stat-note { text-align: center; font-size: 11.5px; color: var(--text-muted); margin-top: 30px; }

/* ---------- collection page ---------- */
.filter-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid rgba(11,11,12,0.18);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.collection-card {
  background: var(--ivory);
  border: 1px solid rgba(11,11,12,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -22px rgba(0,0,0,0.25); }
.collection-card .icon-stage {
  background: var(--black);
  padding: 50px 0;
  text-align: center;
}
.collection-card .icon-stage i { font-size: 56px; color: var(--gold); }
.collection-card .body { padding: 24px 26px 28px; }
.collection-card .tag { font-size: 11px; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
.collection-card h3 { font-size: 21px; margin: 8px 0 10px; }
.collection-card p.desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.feature-tags span {
  font-size: 11px;
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  padding: 5px 11px;
  letter-spacing: 0.04em;
}
.collection-card.hidden { display: none; }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(11,11,12,0.22);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: none; height: 110px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 18px; display: none; }
.form-note.show { display: block; color: var(--gold); }

.info-card { background: var(--black); color: var(--ivory); padding: 44px 38px; }
.info-row { display: flex; gap: 16px; margin-bottom: 26px; }
.info-row i { color: var(--gold); font-size: 20px; margin-top: 2px; }
.info-row h5 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.info-row p { font-size: 14px; color: var(--text-on-dark); }
.hours-table { width: 100%; margin-top: 10px; font-size: 13.5px; }
.hours-table td { padding: 5px 0; color: var(--text-on-dark); }
.hours-table td:last-child { text-align: right; color: var(--ivory); }

.map-wrap { margin-top: 50px; border: 1px solid rgba(11,11,12,0.12); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; filter: grayscale(0.2); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 22px auto 0; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 50px; }
  .hero-visual .ring { width: 280px; height: 280px; }
  .feature-grid, .testi-grid, .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .about-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 80px 0; }
  .feature-grid, .testi-grid, .collection-grid, .why-grid, .values-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .guarantee .container { flex-direction: column; text-align: center; }
  .guarantee .badge-row { gap: 20px; }
  .page-hero { padding: 160px 0 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
