/* Exquisitely You — shared styles */

:root {
  --sage: #85A39A;
  --sage-deep: #6C8D83;
  --taupe: #B7AF90;
  --cream: #F8F4EF;
  --charcoal: #3D454B;
  --gold: #C9A24B;
  --gold-soft: #E4D3A0;
  --stone: #E7E3DC;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2em;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--taupe);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--cream);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.monogram {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.monogram img {
  background: var(--white);
  padding: 6px;
  border-radius: 4px;
}

.monogram .tag {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--charcoal); }

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--sage-deep); }

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero-frame {
  max-width: 640px;
  margin: 0 auto;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-sage { background: var(--sage); color: var(--white); }
.section-sage h2 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 34px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(61, 69, 75, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(61, 69, 75, 0.12);
}

.product-image {
  aspect-ratio: 1;
  background: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-hand);
  font-size: 1.1rem;
  overflow: hidden;
}

.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding: 20px; }
.product-info h3 { margin-bottom: 4px; }
.product-price { color: var(--gold); font-weight: 600; }
.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-soft);
  color: var(--charcoal);
  padding: 3px 9px;
  border-radius: 20px;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--taupe);
  color: var(--charcoal);
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-grid h4 {
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-grid a {
  display: inline-block;
  color: var(--charcoal);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(61,69,75,0.15);
  border-radius: 20px;
  padding: 8px 16px;
  margin: 0 6px 8px 0;
  font-size: 0.86rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-grid a:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(61,69,75,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: initial;
  opacity: 0.85;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.social-row a svg { width: 18px; height: 18px; fill: var(--charcoal); }
.social-row a:hover { opacity: 1; border-color: var(--gold); }
.social-row a:hover svg { fill: var(--gold); }
.social-row a .w-mark { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--charcoal); }
.social-row a:hover .w-mark { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(61, 69, 75, 0.15);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-bottom a { text-decoration: underline; opacity: 1; }

/* Form elements (contact + staff) */
.field-group { margin-bottom: 20px; }
.field-group label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(61,69,75,0.25);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 2px;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}

/* Utility */
.text-center { text-align: center; }
.muted { opacity: 0.7; }
.divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 20px auto;
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 28px 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(61,69,75,0.08);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
