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

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

:root {
  --parchment:     #f8f2e8;
  --parchment-mid: #f0e8d5;
  --parchment-dk:  #e0d4b8;
  --bark:          #2e1f0f;
  --bark-mid:      #4a2f14;
  --bark-lt:       #7a5530;
  --blush:         #c97060;
  --blush-lt:      #e4b0a0;
  --rose:          #9e3d52;
  --rose-lt:       #c56878;
  --sage:          #5a6e4a;
  --sage-lt:       #8fa07a;
  --cream:         #fdf8f0;
  --gold:          #b8843a;
  --gold-lt:       #d4aa68;
  --forest:        #5c6e48;
  --forest-mid:    #6e8258;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--parchment);
  color: var(--bark);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--forest);
  color: #d4e8c4;
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 2px solid rgba(255,255,255,0.06);
}

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

.nav-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--parchment);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(248,242,232,0.8);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--parchment); background: rgba(255,255,255,0.07); }

.nav-links a.active {
  color: var(--parchment);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links .nav-shop-btn {
  background: var(--rose);
  color: var(--parchment) !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}

.nav-links .nav-shop-btn:hover { background: var(--rose-lt) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f5ede0 0%, #eee0c8 40%, #f8f0e0 100%);
}

/* Watercolor wash layers */
.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* SVG botanical illustration background */
.hero-botanical-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(340px, 56vw);
  height: min(340px, 56vw);
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(30,20,8,0.22));
  animation: heroFadeIn 1.1s ease both;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.0;
  margin-bottom: 0.75rem;
  animation: heroFadeIn 1.1s 0.15s ease both;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--bark-mid);
  margin-bottom: 2.25rem;
  animation: heroFadeIn 1.1s 0.28s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeIn 1.1s 0.4s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--bark);
  color: var(--parchment);
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--bark);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--bark-mid); border-color: var(--bark-mid); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--bark);
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--bark);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--bark); color: var(--parchment); transform: translateY(-1px); }

.btn-rose {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  border-radius: 2px;
  border: 2px solid var(--rose);
  transition: all 0.2s;
}
.btn-rose:hover { background: var(--rose-lt); border-color: var(--rose-lt); transform: translateY(-1px); }

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 5.5rem 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-label {
  font-family: 'Lora', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--bark);
  line-height: 1.15;
  margin-bottom: 0.9rem;
}
.section-title em { font-style: italic; color: var(--rose); }

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bark-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.divider-ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  opacity: 0.6;
  margin: 1.25rem 0;
}

/* ── CARDS ── */
.card {
  background: var(--cream);
  border: 1px solid var(--parchment-dk);
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(46,31,15,0.10); }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  color: var(--parchment-dk);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

footer img {
  width: 80px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-lt);
  margin-bottom: 1.75rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,242,232,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-lt); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(248,242,232,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-brand-text { font-size: 1rem; }
  .nav-links a:not(.nav-shop-btn) { display: none; }
}
