@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;1,7..72,400&display=swap");

:root {
  --rp-forest: #1f3a2e;
  --rp-forest-deep: #13261e;
  --rp-canopy: #2f5442;
  --rp-moss: #4a7359;
  --rp-parchment: #f0e8d8;
  --rp-parchment-mid: #e5d9c4;
  --rp-parchment-deep: #d6c6ab;
  --rp-cream: #faf6ee;
  --rp-ink: #141c17;
  --rp-muted: #5a655d;
  --rp-line: rgba(19, 38, 30, 0.13);
  --rp-brass: #9a7a45;
  --rp-serif: "Literata", "Iowan Old Style", "Palatino Linotype", serif;
  --rp-sans: "Figtree", "Segoe UI", sans-serif;
  --rp-max: 1000px;
  --rp-wide: 1160px;
  --rp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--rp-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--rp-ink);
  background:
    radial-gradient(ellipse 48% 36% at 92% 4%, rgba(74, 115, 89, 0.16), transparent 58%),
    radial-gradient(ellipse 40% 30% at 6% 22%, rgba(154, 122, 69, 0.09), transparent 52%),
    linear-gradient(172deg, var(--rp-parchment) 0%, var(--rp-parchment-mid) 48%, var(--rp-parchment-deep) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rp-forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--rp-ease);
}

a:hover {
  color: var(--rp-brass);
}

h1,
h2,
h3 {
  font-family: var(--rp-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--rp-forest-deep);
  margin: 0 0 0.65rem;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(100% - 2.25rem, var(--rp-max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - 2.25rem, var(--rp-wide));
  margin-inline: auto;
}

.kicker {
  font-family: var(--rp-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-brass);
  margin: 0 0 0.75rem;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.15rem 0;
}

.site-header.is-solid {
  position: relative;
  background: var(--rp-forest-deep);
  padding: 0.85rem 0;
}

.header-bar {
  width: min(100% - 2.25rem, var(--rp-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--rp-serif);
  font-size: clamp(1.12rem, 2.3vw, 1.4rem);
  font-weight: 600;
  color: var(--rp-cream);
  text-decoration: none;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.brand em {
  display: block;
  font-family: var(--rp-sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  margin-top: 0.18rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid rgba(250, 246, 238, 0.28);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin-inline: auto;
  background: var(--rp-cream);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.3rem;
}

.nav-main a {
  color: rgba(250, 246, 238, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--rp-cream);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  font-family: var(--rp-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--rp-ease), color 0.25s var(--rp-ease), border-color 0.25s var(--rp-ease), transform 0.25s var(--rp-ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-brass {
  background: var(--rp-brass);
  color: var(--rp-cream);
  border-color: var(--rp-brass);
}

.btn-brass:hover {
  background: #856738;
  color: var(--rp-cream);
  border-color: #856738;
}

.btn-ghost {
  background: transparent;
  color: var(--rp-cream);
  border-color: rgba(250, 246, 238, 0.45);
}

.btn-ghost:hover {
  background: rgba(250, 246, 238, 0.1);
  color: var(--rp-cream);
}

.btn-forest {
  background: var(--rp-forest);
  color: var(--rp-cream);
  border-color: var(--rp-forest);
}

.btn-forest:hover {
  background: var(--rp-forest-deep);
  color: var(--rp-cream);
}

.btn-line {
  background: transparent;
  color: var(--rp-forest);
  border-color: var(--rp-forest);
}

.btn-line:hover {
  background: var(--rp-forest);
  color: var(--rp-cream);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--rp-cream);
  overflow: hidden;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: rp-settle 1.45s var(--rp-ease) both;
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 38, 30, 0.58) 0%, rgba(19, 38, 30, 0.26) 40%, rgba(19, 38, 30, 0.82) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 2.25rem, var(--rp-wide));
  margin: 0 auto;
  padding: 7.5rem 0 4.5rem;
  max-width: 34rem;
  margin-left: max(1.125rem, calc((100% - var(--rp-wide)) / 2 + 1.125rem));
  animation: rp-rise 0.95s var(--rp-ease) 0.18s both;
}

.hero-brand {
  font-family: var(--rp-serif);
  font-size: clamp(2.55rem, 6.8vw, 4.25rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--rp-cream);
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  line-height: 1.55;
  color: rgba(250, 246, 238, 0.9);
  max-width: 30rem;
  margin: 0 0 1.7rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes rp-settle {
  from {
    transform: scale(1.07);
    opacity: 0.65;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rp-rise {
  from {
    opacity: 0;
    transform: translateY(1.3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rp-creek {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.rise {
  animation: rp-rise 0.85s var(--rp-ease) both;
}

.rise-2 {
  animation-delay: 0.12s;
}

.rise-3 {
  animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-plane img,
  .hero-copy,
  .rise,
  .rise-2,
  .rise-3,
  .creek-rule::before {
    animation: none;
  }
}

/* Inner page top */
.page-top {
  background:
    linear-gradient(128deg, var(--rp-forest-deep) 0%, var(--rp-canopy) 100%);
  color: var(--rp-cream);
  padding: 3.4rem 0 2.7rem;
}

.page-top h1 {
  color: var(--rp-cream);
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.page-top p {
  color: rgba(250, 246, 238, 0.82);
  margin: 0;
  max-width: 36rem;
}

/* Sections */
.block {
  padding: 4.4rem 0;
}

.block-tight {
  padding: 2.85rem 0;
}

.block-head {
  max-width: 34rem;
  margin-bottom: 2.1rem;
}

.block-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
}

.wash {
  background: rgba(250, 246, 238, 0.42);
  border-block: 1px solid var(--rp-line);
}

.grove {
  background: var(--rp-forest-deep);
  color: rgba(250, 246, 238, 0.88);
}

.grove h2 {
  color: var(--rp-cream);
}

.grove p {
  color: rgba(250, 246, 238, 0.82);
}

.grove .kicker {
  color: #c4a86a;
}

.pair {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.4rem 3.4rem;
  align-items: start;
}

.prose h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Creek rule + triad — books / flowers / stationery */
.creek-rule {
  position: relative;
  padding-top: 0.35rem;
}

.creek-rule::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, transparent, var(--rp-moss), var(--rp-brass), var(--rp-moss), transparent);
  transform-origin: left center;
  animation: rp-creek 1.1s var(--rp-ease) 0.35s both;
}

.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.triad a {
  display: block;
  padding: 1.6rem 1.35rem 1.7rem;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--rp-line);
  transition: background 0.3s var(--rp-ease);
}

.triad a:last-child {
  border-right: none;
}

.triad a:hover {
  background: var(--rp-cream);
  color: inherit;
}

.triad .label {
  font-family: var(--rp-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-moss);
  margin: 0 0 0.55rem;
}

.triad h3 {
  font-size: 1.32rem;
  margin-bottom: 0.4rem;
}

.triad p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 0.94rem;
}

/* Hours / visit panel */
.visit-panel {
  background: var(--rp-cream);
  border: 1px solid var(--rp-line);
  padding: 1.7rem 1.45rem;
}

.visit-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.visit-panel dl {
  margin: 0;
}

.visit-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rp-line);
  font-size: 0.95rem;
}

.visit-panel dl > div:last-child {
  border-bottom: none;
}

.visit-panel dt {
  font-weight: 500;
  color: var(--rp-forest);
}

.visit-panel dd {
  margin: 0;
  color: var(--rp-muted);
  text-align: right;
}

/* Title list */
.spine-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rp-line);
}

.spine-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rp-line);
  font-family: var(--rp-serif);
  font-size: 1.12rem;
}

.spine-list .tag {
  font-family: var(--rp-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rp-muted);
  flex-shrink: 0;
}

/* Florist invite strip */
.bloom-strip {
  display: grid;
  grid-template-columns: 1.25fr auto;
  gap: 1.5rem;
  align-items: center;
}

.bloom-strip h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.bloom-strip p {
  margin-bottom: 0;
  max-width: 34rem;
}

/* Shelves */
.bay {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--rp-line);
}

.bay:last-child {
  border-bottom: none;
}

.bay h2 {
  font-size: clamp(1.5rem, 2.7vw, 1.9rem);
}

.bay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin-top: 1.2rem;
}

.bay-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

.bay-item p {
  margin: 0;
  color: var(--rp-muted);
  font-size: 0.95rem;
}

/* Flowers offerings */
.bloom-board {
  display: grid;
  gap: 2.4rem;
}

.bloom-group h2 {
  font-size: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--rp-forest);
  margin-bottom: 1rem;
}

.bloom-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bloom-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rp-line);
}

.bloom-list li:last-child {
  border-bottom: none;
}

.bloom-list strong {
  font-family: var(--rp-serif);
  font-weight: 600;
  color: var(--rp-forest-deep);
  display: block;
}

.bloom-list .note {
  display: block;
  font-size: 0.9rem;
  color: var(--rp-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.bloom-list .price {
  font-weight: 600;
  color: var(--rp-forest);
  white-space: nowrap;
}

.aside-note {
  font-size: 0.95rem;
  color: var(--rp-muted);
  font-style: italic;
  margin-top: 1.4rem;
}

/* Contact */
.contact-pair {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.4rem 3rem;
}

.contact-facts p {
  margin-bottom: 0.65rem;
}

.contact-facts a {
  font-weight: 500;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rp-forest);
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rp-line);
  background: var(--rp-cream);
  color: var(--rp-ink);
  width: 100%;
}

.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus {
  outline: 2px solid var(--rp-moss);
  outline-offset: 1px;
}

.form-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(74, 115, 89, 0.14);
  border: 1px solid var(--rp-moss);
  color: var(--rp-forest-deep);
}

.form-success.show {
  display: block;
}

/* Legal */
.legal {
  max-width: 42rem;
}

.legal h2 {
  font-size: 1.32rem;
  margin-top: 2rem;
}

.legal ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal code {
  font-size: 0.9em;
  background: rgba(19, 38, 30, 0.06);
  padding: 0.1em 0.35em;
}

/* Footer */
.site-footer {
  background: var(--rp-forest-deep);
  color: rgba(250, 246, 238, 0.78);
  padding: 3.4rem 0 1.5rem;
}

.site-footer .brand {
  color: var(--rp-cream);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(250, 246, 238, 0.82);
}

.site-footer a:hover {
  color: var(--rp-cream);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(250, 246, 238, 0.12);
}

.footer-cols h3 {
  color: var(--rp-cream);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.footer-cols p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.3rem;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.15rem;
}

.footer-legal a {
  text-decoration: none;
}

/* Cookie banner */
#cookie-banner {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  padding: 1rem;
  background: rgba(19, 38, 30, 0.96);
  color: rgba(250, 246, 238, 0.9);
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}

#cookie-banner.show {
  display: block;
}

.cookie-inner {
  width: min(100%, var(--rp-wide));
  margin-inline: auto;
}

.cookie-inner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.cookie-inner a {
  color: var(--rp-parchment);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

#cookie-banner .btn-brass {
  background: var(--rp-brass);
  color: var(--rp-cream);
}

#cookie-banner .btn-ghost {
  color: var(--rp-cream);
  border-color: rgba(250, 246, 238, 0.4);
}

#cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}

#cookie-panel.open {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

#cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 860px) {
  .menu-toggle {
    display: flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.125rem 1.25rem;
    background: var(--rp-forest-deep);
    border-top: 1px solid rgba(250, 246, 238, 0.12);
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main a {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(250, 246, 238, 0.1);
  }

  .site-header {
    background: linear-gradient(180deg, rgba(19, 38, 30, 0.78), transparent);
  }

  .site-header.is-solid {
    background: var(--rp-forest-deep);
  }

  .triad {
    grid-template-columns: 1fr;
  }

  .triad a {
    border-right: none;
    border-bottom: 1px solid var(--rp-line);
  }

  .triad a:last-child {
    border-bottom: none;
  }

  .pair,
  .bloom-strip,
  .contact-pair,
  .footer-cols,
  .bay-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 520px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .spine-list li {
    flex-direction: column;
    gap: 0.25rem;
  }
}
