/* Karen Bizer Fine Jewelry — Main Stylesheet */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:      #f7f5f2;
  --cream:      #f0ede8;
  --taupe:      #a89e93;
  --taupe-dark: #8c8279;
  --taupe-light:#cdc7c0;
  --charcoal:   #2e2b28;
  --gold:       #b89b6e;
  --mono-gray:  #d8d2cb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--taupe-light);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--taupe);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

/* ── HERO / HOME COLLAGE ──────────────────────────────────── */
.hero-wrap {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--taupe-light);
}

.hero-collage {
  width: 100%;
  min-height: 340px;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-collage img {
  object-fit: cover;
  flex: 1 1 0;
  min-width: 0;
  display: block;
}

/* Hero main image */
.hero-main-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── BRAND BAR ────────────────────────────────────────────── */
.brand-bar {
  background: var(--taupe);
  color: #fff;
  text-align: center;
  padding: 14px 20px 10px;
}

.brand-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  background: var(--taupe-dark);
  padding: 12px 20px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
}

.site-nav ul li a {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 6px 16px;
  transition: color 0.2s;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── PAGE INNER ───────────────────────────────────────────── */
.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px 70px;
  flex: 1;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 8px;
}

.page-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.page-intro {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--taupe-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--taupe-light);
}

.product-card .img-area {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .img-area img {
  transform: scale(1.04);
}

/* Placeholder when no photo yet */
.product-card .img-area.no-photo {
  flex-direction: column;
  gap: 8px;
}

.product-card .img-area.no-photo span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

.product-card .img-area.no-photo::before {
  content: '✦';
  font-size: 1.5rem;
  color: var(--taupe-light);
}

.product-info {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--taupe-light);
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--taupe);
  line-height: 1.5;
}

/* ── TEXT PAGES (About, Press, Custom, Stores) ────────────── */
.text-section {
  max-width: 680px;
  margin: 0 auto;
}

.text-section p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.4em;
}

.text-section h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 2em 0 0.6em;
}

.text-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--taupe-dark);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 1.6em 0 1.6em 8px;
}

/* ── PRESS PAGE ───────────────────────────────────────────── */
.press-board {
  max-width: 700px;
  margin: 0 auto 48px;
  border: 1px solid var(--taupe-light);
  overflow: hidden;
}

.press-board img {
  width: 100%;
  display: block;
}


.press-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.press-item {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
}

.press-item .pub-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 4px;
}

.press-item .headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ── STORES PAGE ──────────────────────────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.store-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--taupe-light);
}

.store-card .store-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.store-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--taupe-dark);
  line-height: 1.7;
}

/* ── CONTACT / CUSTOM FORM ────────────────────────────────── */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--taupe-light);
  background: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--taupe);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  background: var(--taupe);
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--taupe-dark);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--taupe);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 28px 20px;
  margin-top: auto;
}

.site-footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .site-header { padding: 14px 20px; }
  .page-inner  { padding: 36px 20px 56px; }

  .site-nav ul li a {
    font-size: 0.58rem;
    padding: 5px 10px;
    letter-spacing: 0.18em;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stores-grid {
    grid-template-columns: 1fr;
  }
}
