/* ============================================================
   BLOOMS & BOTANICALS — design system
   Palette pulled from the actual arrangements: deep plum dahlias,
   burnt-clay marigolds, sage foliage, blush peonies.
   ============================================================ */

:root {
  /* core surfaces */
  --ink: #1e171a;
  --ink-soft: #2b2226;
  --paper: #f7f2ea;
  --paper-dim: #ece2d3;
  --line: rgba(247, 242, 234, 0.14);
  --line-on-paper: rgba(30, 23, 26, 0.12);

  /* floral accents, one per mood */
  --plum: #7c2f40;
  --clay: #b5692f;
  --sage: #5c6a49;
  --blush: #d99a92;
  --coral: #c1543f;
  --gold: #b98a25;

  --accent: var(--plum);

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.btn-light { color: var(--paper); }
.btn-light:hover { background: var(--paper); color: var(--ink); }
.btn-dark { color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--paper); }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ---------------- header ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--gutter);
  color: var(--paper);
  transition: background 0.35s ease, padding 0.35s ease, color 0.35s ease, box-shadow .35s ease;
}
.site-header.is-solid {
  background: rgba(30, 23, 26, 0.92);
  backdrop-filter: blur(10px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.on-light { color: var(--ink); }
.site-header.on-light.is-solid { background: rgba(247, 242, 234, 0.92); }

.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.wordmark span { color: var(--clay); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 40px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: inherit;
  width: 32px; height: 22px;
  position: relative;
  z-index: 110;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}
.nav-toggle span { top: 10px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--gutter) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-grid .wordmark { color: var(--paper); font-size: 1.4rem; margin-bottom: 14px; }
.footer-grid p { color: rgba(247,242,234,0.65); max-width: 32ch; margin: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.5);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span { display: block; margin-bottom: 10px; color: rgba(247,242,234,0.85); }
.footer-col a:hover { color: var(--blush); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(247,242,234,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.mood-dots { display: flex; gap: 6px; }
.mood-dots span { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

/* ---------------- reveal-on-scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- page hero (interior pages) ---------------- */
.page-hero {
  padding: 168px var(--gutter) 64px;
  display: grid;
  gap: 20px;
  max-width: 760px;
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.page-hero p { font-size: 1.05rem; color: rgba(30,23,26,0.7); max-width: 56ch; }

/* ---------------- home: hero ---------------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--ink);
  color: var(--paper);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 140px var(--gutter) 80px;
}
.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: var(--paper);
}
.hero-copy .tagline {
  font-size: 1.15rem;
  max-width: 40ch;
  color: rgba(247,242,234,0.75);
}
.hero-figure {
  position: relative;
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,23,26,0.35) 0%, rgba(30,23,26,0) 35%);
}

/* ---------------- home: mood strip ---------------- */
.mood-strip { padding: 120px 0; }
.mood-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.mood-strip-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 14ch; }
.mood-strip-head p { max-width: 34ch; color: rgba(30,23,26,0.65); }

.mood-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mood-chip {
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.mood-chip:hover { border-color: var(--mood-color, var(--clay)); transform: translateY(-4px); background: #fff; }
.mood-chip .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--mood-color, var(--clay)); }
.mood-chip .name { font-family: var(--font-display); font-size: 1.05rem; }
.mood-chip .desc { font-size: 0.82rem; color: rgba(30,23,26,0.55); line-height: 1.4; }

.cta-band {
  background: var(--paper-dim);
  padding: 100px var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; }
.cta-band p { max-width: 46ch; color: rgba(30,23,26,0.65); }

/* ---------------- gallery ---------------- */
.gallery-intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 168px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: end;
}
.gallery-intro .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--clay);
  margin: 18px 0 0;
}
.gallery-intro h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin-top: 14px; }
.gallery-intro p { color: rgba(30,23,26,0.65); max-width: 48ch; }

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 var(--gutter) 48px;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--line-on-paper);
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--ink);
  transition: all 0.2s ease;
}
.filter-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mood-color, var(--ink)); }
.filter-chip:hover { border-color: var(--mood-color, var(--ink)); }
.filter-chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-chip.is-active .dot { background: var(--mood-color, var(--paper)); }

.gallery-grid {
  padding: 0 var(--gutter) 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink-soft);
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,17,0.82) 0%, rgba(20,15,17,0.05) 55%);
}
.gallery-card .card-copy {
  position: absolute; left: 22px; right: 22px; bottom: 20px;
  color: var(--paper);
}
.gallery-card .card-copy .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mood-color, var(--clay)); margin-bottom: 10px; }
.gallery-card .card-copy .name { font-family: var(--font-display); font-size: 1.35rem; }
.gallery-card .card-copy .desc { font-size: 0.8rem; color: rgba(247,242,234,0.75); margin-top: 4px; }

.gallery-card.is-soon {
  background: var(--paper-dim);
  border: 1px dashed var(--line-on-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.gallery-card.is-soon .soon-copy { text-align: center; color: rgba(30,23,26,0.55); padding: 24px; }
.gallery-card.is-soon .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mood-color); margin: 0 auto 14px; }
.gallery-card.is-soon .name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.gallery-card.is-soon .desc { font-size: 0.78rem; margin-top: 6px; }

.gallery-card.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 11, 12, 0.94);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px var(--gutter);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox-frame { position: relative; }
.lightbox img {
  max-height: 78vh;
  margin: 0 auto;
  border-radius: var(--radius);
}
.lightbox-meta { color: var(--paper); margin-top: 20px; }
.lightbox-meta .name { font-family: var(--font-display); font-size: 1.4rem; }
.lightbox-meta .count { font-size: 0.78rem; color: rgba(247,242,234,0.55); margin-top: 6px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(247,242,234,0.08);
  border: 1px solid var(--line);
  color: var(--paper);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(247,242,234,0.18); }
.lightbox-close { top: -56px; right: 0; }
.lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 18px; height: 18px; }

/* ---------------- about ---------------- */
.about-split {
  padding: 168px var(--gutter) 120px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about-split figure { border-radius: var(--radius); overflow: hidden; }
.about-split figure img { aspect-ratio: 4/5; object-fit: cover; }
.about-copy h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin: 16px 0 28px; }
.about-copy p { color: rgba(30,23,26,0.7); margin-bottom: 18px; max-width: 52ch; }
.about-copy .role { font-family: var(--font-display); font-style: italic; color: var(--clay); font-size: 1.05rem; }

.inquiry {
  background: var(--ink);
  color: var(--paper);
  padding: 110px var(--gutter);
}
.inquiry-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.inquiry-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.inquiry-head p { color: rgba(247,242,234,0.65); margin-top: 14px; }

/* ---------------- contact ---------------- */
.contact-wrap {
  padding: 168px var(--gutter) 140px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: start;
}
.contact-copy .eyebrow { margin-bottom: 18px; }
.contact-copy h1 { font-size: clamp(2.4rem, 4.5vw, 3.2rem); margin-bottom: 18px; }
.contact-copy > p { color: rgba(30,23,26,0.65); margin-bottom: 40px; max-width: 44ch; }
.contact-figure { border-radius: var(--radius); overflow: hidden; position: sticky; top: 120px; }
.contact-figure img { aspect-ratio: 4/5; object-fit: cover; }

/* ---------------- forms (shared) ---------------- */
.form-grid { display: grid; gap: 22px; max-width: 560px; }
.form-grid.on-dark { max-width: 720px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: rgba(30,23,26,0.55);
}
.on-dark .field label { color: rgba(247,242,234,0.55); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.95rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-on-paper);
  padding: 10px 2px;
  color: inherit;
  border-radius: 0;
}
.on-dark .field input, .on-dark .field textarea, .on-dark .field select { border-bottom: 1px solid var(--line); }
.field select option { color: #111; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--clay); }
.field textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.field-hint { font-size: 0.78rem; color: rgba(30,23,26,0.45); margin-top: -2px; }
.on-dark .field-hint { color: rgba(247,242,234,0.4); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(247,242,234,0.7); }
.checkbox-row input { margin-top: 4px; }
.form-note { font-size: 0.8rem; color: rgba(30,23,26,0.45); margin-top: 4px; }
.on-dark .form-note { color: rgba(247,242,234,0.4); }
.form-success {
  display: none;
  padding: 16px 18px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 0.88rem;
  border-radius: var(--radius);
}
.on-dark .form-success { color: #a9c08f; border-color: #a9c08f; }
.form-success.is-visible { display: block; }

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .about-split, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-figure { position: static; order: -1; max-height: 360px; }
  .contact-figure img { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .main-nav ul {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--ink);
    color: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px var(--gutter);
    gap: 28px;
    transition: right 0.4s ease;
  }
  .main-nav ul a { color: var(--paper); font-size: 1rem; }
  .main-nav.is-open ul { right: 0; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-figure { height: 56vh; order: -1; }
  .hero-copy { padding: 48px var(--gutter) 64px; }

  .mood-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-intro { grid-template-columns: 1fr; gap: 24px; padding-top: 140px; }
  .form-row { grid-template-columns: 1fr; }

  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: -48px; right: 4px; }
  .lightbox-inner { padding: 0 12px; }
}
