/* Val Beau Design — palette sampled from her templates */
:root {
  --green: #567C71;
  --green-dark: #3e5a4e;
  --cream: #f5f3e7;
  --cream-text: #f5f2e9;
  --page: #f3f4f6;
  --line: rgba(245, 242, 233, 0.45);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.script {
  font-family: "Pinyon Script", "Cormorant Garamond", cursive;
  font-weight: 400;
}

a { color: inherit; }

/* ---------- Top nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.4rem 1rem;
  background: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  color: var(--green-dark);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.nav a:hover, .nav a.active { border-color: var(--green-dark); }

/* ---------- Layout wrappers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Hero (landing) ---------- */
.hero {
  background: var(--cream);
  text-align: center;
  padding: 4.5rem 1.5rem 5rem;
}
.hero img.logo {
  max-width: 620px;
  width: 92%;
  height: auto;
}
.hero .tagline {
  margin-top: 0.5rem;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green);
}
.hero .cta {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 0.7rem 2.2rem;
  border: 1px solid var(--green);
  color: var(--green-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero .cta:hover { background: var(--green); color: var(--cream-text); }

/* ---------- Story section (bilingual) ---------- */
.story {
  background: var(--green);
  color: var(--cream-text);
  padding: 4rem 1.5rem 4.5rem;
}
.story .cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.story h2 {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: 2.4rem;
  margin: 0 0 1.5rem;
  text-align: center;
}
.story p { text-align: center; margin: 0 0 1.3rem; }
.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 520px;
  margin: 2.5rem auto 0;
  color: var(--cream-text);
}
.heart-divider::before, .heart-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

/* ---------- Shop grid ---------- */
.shop { background: var(--green); color: var(--cream-text); padding: 3.5rem 1.5rem 4.5rem; }
.shop-head { text-align: center; margin-bottom: 2.5rem; }
.shop-head h1 {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: 3rem;
  margin: 0 0 0.6rem;
}
.shop-head .rule { height: 1px; background: var(--line); max-width: var(--max); margin: 0 auto; }

.grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 1.8rem;
}
.card {
  text-decoration: none;
  color: var(--cream-text);
  text-align: center;
  display: block;
}
.card .frame {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.06);
}
.card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover img { transform: scale(1.05); }
.card h3 {
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin: 1rem 0 0.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.card .meta { font-size: 1.05rem; }
.card .price { display: block; margin-top: 0.2rem; }

/* ---------- Product detail ---------- */
.product { background: var(--green); color: var(--cream-text); padding: 3.5rem 1.5rem 5rem; min-height: 60vh; }
.product .inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.product .photo { aspect-ratio: 1/1; overflow: hidden; }
.product .photo img { width: 100%; height: 100%; object-fit: cover; }
.product h1 {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 1.4rem; margin: 0 0 0.3rem;
}
.product .sub { font-style: italic; font-size: 1.15rem; margin-bottom: 1rem; }
.product .price-lg { font-size: 1.8rem; margin: 0.5rem 0 1.5rem; }
.product .desc { margin-bottom: 1rem; }
.product .desc .en { opacity: 0.85; }
.product .back {
  display: inline-block; margin-top: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem;
  text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 3px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--green-dark);
}
.footer .credit {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}
.footer .credit a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.footer .credit a:hover { opacity: 0.7; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .story .cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .product .inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr; }
  .nav { gap: 1.3rem; flex-wrap: wrap; }
}
