/* ===========================================================
   Bloom & Bounce — design tokens
   Ink:    #223523  deep botanical green
   Paper:  #F6F1E7  warm parchment
   Blush:  #E8A5A0  balloon pink (primary accent)
   Gold:   #E3A857  marigold (secondary accent)
   Plum:   #8B5E73  dusty plum (tertiary accent)
   =========================================================== */

:root{
  --ink: #223523;
  --paper: #F6F1E7;
  --paper-2: #EFE7D8;
  --blush: #E8A5A0;
  --gold: #E3A857;
  --plum: #8B5E73;
  --display: "Fraunces", serif;
  --body: "Work Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
.wrap{ max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 10px;
}

h1, h2{
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--ink);
}
h1{ font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h1 em{ font-style: italic; font-weight: 400; color: var(--plum); }
h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

p{ margin: 0 0 16px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--ink); color: var(--paper); }
.btn-primary:hover{ background: #1a2a1b; }
.btn-ghost{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--paper); }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,241,231,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(34,53,35,0.08);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.wordmark{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}
.logo-img{
  height: 28px;
  width: auto;
  display: block;
}
.wordmark .amp{ color: var(--blush); font-style: italic; }
.site-nav{ display: flex; gap: 32px; }
.site-nav a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.site-nav a::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blush);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
}
.nav-toggle span{ width: 100%; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero{ position: relative; padding: 90px 0 0; overflow: hidden; }
.hero-inner{ max-width: 760px; padding-bottom: 90px; }
.hero-sub{ font-size: 17px; max-width: 520px; color: #3d4f3e; }
.hero-actions{ display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.ribbon-divider{ display: block; width: 100%; height: 60px; }
.ribbon-divider path{ fill: var(--paper-2); }

/* ---------- Gallery ---------- */
.gallery-section{ background: var(--paper-2); padding: 90px 0; }
.filter-row{ display: flex; gap: 10px; margin-bottom: 36px; }
.filter-btn{
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer;
}
.filter-btn.is-active{ background: var(--ink); color: var(--paper); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item{ margin: 0; }
.gallery-item.is-hidden{ display: none; }
.ph{
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--c1), var(--c2));
}
.gallery-item figcaption{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; font-size: 14px;
}
.cap-title{ font-weight: 500; }
.cap-tag{ font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--plum); }
.gallery-note{ margin-top: 28px; font-size: 13px; color: var(--plum); font-style: italic; }

/* ---------- About ---------- */
.about-section{ padding: 100px 0; }
.about-inner{
  display: grid; grid-template-columns: 1fr 200px; gap: 60px; align-items: start;
}
.about-signature{ display: flex; justify-content: center; padding-top: 12px; }
.knot-mark{ animation: sway 6s ease-in-out infinite; transform-origin: top center; }
@keyframes sway{
  0%,100%{ transform: rotate(-3deg); }
  50%{ transform: rotate(3deg); }
}
@media (prefers-reduced-motion: reduce){
  .knot-mark{ animation: none; }
}

/* ---------- Order ---------- */
.order-section{ background: var(--ink); color: var(--paper); padding: 100px 0; }
.order-section .eyebrow{ color: var(--gold); }
.order-section h2{ color: var(--paper); }
.order-sub{ max-width: 560px; color: #cfd8cf; }

.order-form{ max-width: 560px; margin-top: 36px; }
.form-row{ margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row-split{ flex-direction: row; gap: 18px; }
.form-row-split > div{ flex: 1; display: flex; flex-direction: column; gap: 6px; }
label{ font-size: 13px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; color: #cfd8cf; }
input, select, textarea{
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #45573f;
  background: #1b2a1c;
  color: var(--paper);
}
input:focus, select:focus, textarea:focus{
  outline: 2px solid var(--gold); outline-offset: 1px;
}
.form-note{ margin-top: 14px; font-size: 14px; color: var(--gold); min-height: 20px; }

.payment-note{
  margin-top: 60px; padding-top: 40px; border-top: 1px solid #3a4c3b;
  max-width: 560px;
}
.payment-hint{ font-size: 13px; color: #9fae9c; margin-top: 10px; }
.order-section .btn-ghost{ border-color: var(--paper); color: var(--paper); }
.order-section .btn-ghost:hover{ background: var(--paper); color: var(--ink); }

/* ---------- Contact ---------- */
.contact-section{ padding: 90px 0 110px; }
.contact-list{ list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.contact-list a{ text-decoration: none; border-bottom: 1px solid rgba(34,53,35,0.3); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--paper-2); padding: 26px 0; }
.footer-inner p{ margin: 0; font-size: 13px; color: var(--plum); }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-signature{ order: -1; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .site-nav{
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    border-bottom: 1px solid rgba(34,53,35,0.08);
    transition: max-height 0.25s ease;
  }
  .site-nav.is-open{ max-height: 260px; }
  .site-nav a{ padding: 16px 28px; }
  .site-nav a::after{ display: none; }
  .nav-toggle{ display: flex; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .form-row-split{ flex-direction: column; }
}
