/* ————— Suzy's Nature — warm botanical, handmade paper ————— */

:root {
  --paper: #faf5ea;
  --paper-deep: #f3ecdb;
  --ink: #35422d;
  --ink-soft: #5a684f;
  --leaf: #5d7c4c;
  --leaf-dark: #46613a;
  --terracotta: #c26a3d;
  --terracotta-deep: #a5522c;
  --marigold: #e5b04a;
  --blush: #e3a68f;
  --line: rgba(53, 66, 45, 0.18);
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(53, 66, 45, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Karla", sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  /* soft paper grain */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .display {
  font-family: "Fraunces", serif;
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: var(--terracotta-deep); }

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

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.4rem; }

/* ————— header ————— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand svg { width: 34px; height: 34px; }

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 620;
  color: var(--ink);
}

.brand-name em {
  font-style: italic;
  color: var(--leaf-dark);
}

nav.main-nav { display: flex; gap: 1.4rem; }

nav.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

nav.main-nav a:hover { color: var(--terracotta-deep); }

nav.main-nav a.active {
  color: var(--leaf-dark);
  border-bottom-color: var(--marigold);
}

/* ————— hero ————— */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  margin-bottom: 1.2rem;
}

.hero h1 .accent {
  font-style: italic;
  color: var(--terracotta);
}

.hero p.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-art { position: relative; }

.hero-art svg { width: 100%; height: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  background: rgba(93, 124, 76, 0.12);
  border: 1px solid rgba(93, 124, 76, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

/* ————— buttons ————— */

.btn {
  display: inline-block;
  font-family: "Karla", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary {
  background: var(--terracotta);
  color: #fff8ef;
}

.btn-primary:hover { background: var(--terracotta-deep); }

.btn-ghost {
  background: transparent;
  color: var(--leaf-dark);
  border-color: var(--leaf);
  margin-left: 0.7rem;
}

.btn-ghost:hover { background: rgba(93, 124, 76, 0.1); }

/* ————— scalloped divider ————— */

.scallop {
  display: block;
  width: 100%;
  height: 26px;
  background: radial-gradient(circle at 12px -6px, transparent 16px, var(--paper-deep) 17px);
  background-size: 26px 26px;
  background-repeat: repeat-x;
}

/* ————— sections ————— */

section.band { padding: 4.5rem 0; }

section.band.deep { background: var(--paper-deep); }

.section-head { max-width: 620px; margin-bottom: 2.8rem; }

.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.7rem; }

.section-head p { color: var(--ink-soft); }

/* ————— feature cards ————— */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
}

.feature:nth-child(2) { transform: rotate(0.6deg); }
.feature:nth-child(3) { transform: rotate(-0.5deg); }

.feature .glyph {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}

.feature h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.feature p { color: var(--ink-soft); font-size: 0.99rem; }

/* ————— about strip ————— */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.portrait-frame {
  background: #fff;
  padding: 14px 14px 44px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(-1.6deg);
}

.portrait-frame figcaption {
  font-family: "Fraunces", serif;
  font-style: italic;
  text-align: center;
  color: var(--ink-soft);
  padding-top: 0.7rem;
}

.portrait-ph {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  background: linear-gradient(160deg, #dde5cf, #b9caa4);
  display: grid;
  place-items: center;
}

.portrait-ph svg { width: 44%; opacity: 0.75; }

/* ————— shop grid ————— */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.product-card:nth-child(3n+1) { transform: rotate(-0.5deg); }
.product-card:nth-child(3n+2) { transform: rotate(0.4deg); }

.product-card:hover {
  transform: translateY(-5px) rotate(0deg);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #e8e2cf, #cdd8ba);
  display: grid;
  place-items: center;
  position: relative;
}

.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-media svg.placeholder { width: 38%; opacity: 0.6; }

.badge-sold {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  transform: rotate(3deg);
}

.product-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }

.product-body h3 { font-size: 1.22rem; }

.product-body p.desc { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.price {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 620;
  color: var(--leaf-dark);
}

.product-foot a {
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--terracotta-deep);
  border-bottom: 2px solid var(--marigold);
  padding-bottom: 1px;
}

.shop-note {
  margin-top: 2.6rem;
  padding: 1.2rem 1.5rem;
  background: rgba(229, 176, 74, 0.14);
  border: 1px dashed rgba(165, 82, 44, 0.4);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-soft);
}

.empty-state svg { width: 90px; margin: 0 auto 1.2rem; opacity: 0.65; }

.empty-state h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* ————— contact ————— */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.4rem;
  align-items: start;
}

form.contact-form {
  background: #fffdf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  color: var(--leaf-dark);
}

.field input,
.field textarea {
  width: 100%;
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(93, 124, 76, 0.18);
}

.field textarea { min-height: 150px; resize: vertical; }

.hp { position: absolute; left: -6000px; opacity: 0; pointer-events: none; }

.form-status {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
}

.form-status.ok {
  display: block;
  background: rgba(93, 124, 76, 0.15);
  border: 1px solid rgba(93, 124, 76, 0.4);
  color: var(--leaf-dark);
}

.form-status.err {
  display: block;
  background: rgba(194, 106, 61, 0.13);
  border: 1px solid rgba(194, 106, 61, 0.45);
  color: var(--terracotta-deep);
}

/* ————— footer ————— */

.site-footer {
  background: var(--ink);
  color: rgba(250, 245, 234, 0.85);
  padding: 3rem 0 2.4rem;
  margin-top: 5rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer .foot-brand {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  color: var(--paper);
}

.site-footer p { font-size: 0.95rem; }

.site-footer a { color: var(--marigold); }

/* ————— reveal animation ————— */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
  }
  .reveal:nth-child(2) { animation-delay: 0.12s; }
  .reveal:nth-child(3) { animation-delay: 0.24s; }
  @keyframes rise { to { opacity: 1; transform: none; } }

  .sway { transform-origin: bottom center; animation: sway 6s ease-in-out infinite alternate; }
  @keyframes sway { from { transform: rotate(-2deg); } to { transform: rotate(2.5deg); } }
}

/* ————— responsive ————— */

@media (max-width: 840px) {
  .hero .wrap, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.4rem 0 4rem; }
  .hero-art { max-width: 380px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; }
  nav.main-nav { gap: 0.9rem; }
  .btn-ghost { margin-left: 0; margin-top: 0.6rem; }
}
