/* Petals & Pinecone Studio — brand system per PPS master palette */
:root {
  --dusty-blue: #8FA8C4;
  --powder-blue: #C9DCEC;
  --blush-rose: #E8B4BE;
  --petal-blush: #F4D8DD;
  --warm-cream: #FAF6F0;
  --soft-sage: #A8B5A0;
  --antique-gold: #C9A96B;
  --charcoal: #3E3A36;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-cream);
  color: var(--charcoal);
  line-height: 1.6;
}

h1, h2, h3, .serif { font-family: 'Playfair Display', serif; font-weight: 600; }
.script { font-family: 'Pinyon Script', cursive; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--dusty-blue);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
}
.announce a { text-decoration: underline; }

/* ---------- Header / nav ---------- */
header {
  background: var(--warm-cream);
  border-bottom: 1px solid #e8e0d4;
}
.banner-strip {
  display: block;
  height: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* TODO at deploy: replace with local assets/img/header-banner.png */
  background-image: url("https://d8j0ntlcm91z4.cloudfront.net/user_3FScD84zLA6JmUUlcWeI5Nitwp6/hf_20260719_194458_3b0fccfb-3805-44b9-b4af-b5777a0baf82.png");
}
.brand-block {
  display: flex;
  justify-content: center;
  padding: 6px 24px 0;
}
.site-logo img { height: 155px; width: auto; margin-bottom: -8px; }
@media (max-width: 920px) {
  .banner-strip { height: 120px; }
  .site-logo img { height: 104px; }
  .brand-block { padding: 4px 24px 0; }
}
.nav-row {
  border-top: 1px solid #eee4d5;
  background: var(--warm-cream);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav.main-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 14px 14px;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nav-item > a:hover, .nav-item.open > a { border-bottom-color: var(--antique-gold); color: #6f86a3; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid #eee4d5;
  border-top: 2px solid var(--antique-gold);
  box-shadow: 0 10px 24px rgba(62,58,54,.10);
  padding: 10px 0;
}
.nav-item:hover .dropdown, .nav-item.open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
}
.dropdown a:hover { background: var(--warm-cream); color: #6f86a3; }
.dropdown .dd-label {
  padding: 8px 20px 4px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--antique-gold);
}
.dropdown .soon { color: #a09a91; font-style: italic; }
.dropdown .soon::after { content: " · soon"; font-size: 11px; color: var(--antique-gold); }

.etsy-btn {
  background: var(--charcoal);
  color: var(--warm-cream) !important;
  padding: 10px 18px !important;
  border-radius: 3px;
  border-bottom: none !important;
  margin-left: 8px;
}
.etsy-btn:hover { background: #57514b; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd2c0;
  border-radius: 3px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--charcoal);
  cursor: pointer;
  padding: 8px 14px;
}
@media (max-width: 920px) {
  .nav-toggle { display: block; margin: 10px auto; }
  .nav-row { position: static; }
  nav.main-nav {
    display: none;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 2px solid var(--antique-gold);
    box-shadow: 0 14px 24px rgba(62,58,54,.12);
    padding: 0;
  }
  nav.main-nav.show { display: flex; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--powder-blue);
    margin: 0 0 6px 22px;
  }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .dropdown { display: block; }
  .etsy-btn { margin: 10px 20px 16px; display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 18px 0 56px;
}
.hero .tagline { font-size: 30px; color: var(--dusty-blue); margin-bottom: 10px; }
.hero h1 { font-size: 46px; line-height: 1.15; margin-bottom: 18px; }
.hero p.lead { font-size: 18px; color: #5d574f; margin-bottom: 28px; max-width: 34em; }
.hero-img img { border-radius: 6px; box-shadow: 0 18px 40px rgba(62,58,54,.14); }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 40px 0; }
  .hero h1 { font-size: 34px; }
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid var(--charcoal);
  transition: all .15s;
}
.btn.solid { background: var(--charcoal); color: var(--warm-cream); }
.btn.solid:hover { background: #57514b; border-color: #57514b; }
.btn.ghost:hover { background: var(--charcoal); color: var(--warm-cream); }
.btn.blue { background: var(--dusty-blue); border-color: var(--dusty-blue); color: var(--white); }
.btn.blue:hover { background: #7d97b5; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Section scaffolding ---------- */
section { padding: 56px 0; }
.kicker {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 8px;
}
.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: 34px; }
.section-head .sub { color: #5d574f; max-width: 44em; margin-top: 8px; }
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--antique-gold), transparent);
  margin: 0 auto;
  max-width: 1180px;
}

/* ---------- Category tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tile {
  background: var(--white);
  border: 1px solid #efe8dc;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(62,58,54,.12); }
.tile .tile-img { aspect-ratio: 4/3; overflow: hidden; background: var(--powder-blue); }
.tile .tile-img img { width: 100%; height: 100%; object-fit: cover; }
.tile .tile-body { padding: 16px 18px 20px; }
.tile h3 { font-size: 19px; margin-bottom: 4px; }
.tile p { font-size: 14px; color: #6b655c; }
@media (max-width: 920px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }

/* ---------- Product grid ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.products.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid #efe8dc;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(62,58,54,.12); }
.card .card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--warm-cream); position: relative; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--blush-rose);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.card .badge.blue { background: var(--dusty-blue); }
.card .badge.gold { background: var(--antique-gold); }
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card h3 { font-size: 16.5px; font-weight: 600; line-height: 1.35; }
.card .price { font-size: 15px; color: #5d574f; }
.card .price .was { text-decoration: line-through; color: #a09a91; margin-left: 6px; font-size: 13px; }
.card .buy {
  margin-top: auto;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dusty-blue);
  font-weight: 700;
}
.card .buy:hover { color: #6f86a3; }
@media (max-width: 920px) { .products, .products.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .products, .products.three { grid-template-columns: 1fr; } }

/* Coming soon cards */
.card.soon-card .card-img { display: flex; align-items: center; justify-content: center; }
.card.soon-card .card-img .bow { width: 42%; opacity: .9; }
.card.soon-card { border-style: dashed; border-color: #ddd2c0; background: #fffdf9; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 12px 0 8px; }
.page-hero h1 { font-size: 40px; margin-bottom: 8px; }
.page-hero .sub { color: #5d574f; max-width: 46em; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.about-grid .logo-side img { max-width: 340px; margin: 0 auto; }
.about-copy p { margin-bottom: 18px; font-size: 17px; color: #4a453f; }
.about-copy .script { font-size: 30px; color: var(--dusty-blue); display: block; margin: 26px 0 6px; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-grid .logo-side img { max-width: 240px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; color: #5d574f; }
form input[type=text], form input[type=email], form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd2c0;
  border-radius: 3px;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
}
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--powder-blue); border-color: var(--dusty-blue); }
form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #4a453f; }
form .check input { margin-top: 4px; }
.info-card {
  background: var(--white);
  border: 1px solid #efe8dc;
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h3 { font-size: 20px; margin-bottom: 8px; }
.info-card p { font-size: 15px; color: #5d574f; }

/* ---------- Footer ---------- */
footer { background: #F2ECE2; border-top: 1px solid #e5dccb; margin-top: 40px; }
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img.bow { width: 64px; margin-bottom: 12px; }
.footer-brand .script { font-size: 24px; color: var(--dusty-blue); }
footer h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; color: #5d574f; }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; font-size: 14.5px; }
footer li a:hover { color: #6f86a3; text-decoration: underline; }
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #8a8378;
  padding: 18px 24px 26px;
  border-top: 1px solid #e5dccb;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
