@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Nunito+Sans:wght@400;500;600;700&display=swap');

:root {
  --green-deep: #2f4a3c;
  --green: #3d5c4a;
  --green-mid: #5a7a68;
  --sage: #a8bfb0;
  --sage-soft: #d8e6dd;
  --mist: #eef4f0;
  --rose: #c9898e;
  --rose-soft: #e8c4c6;
  --blush: #f6ecea;
  --ink: #1e2a24;
  --muted: #5c6b62;
  --cream: #faf7f4;
  --white: #ffffff;
  --line: rgba(47, 74, 60, 0.14);
  --shadow: 0 18px 40px rgba(31, 48, 39, 0.1);
  --radius: 2px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', Georgia, sans-serif;
  --header-h: 4.25rem;
  --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(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(168, 191, 176, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(232, 196, 198, 0.28), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--mist) 45%, var(--blush) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--rose);
}

h1, h2, h3, .brand-mark, .logo {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.45rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  color: var(--green-deep);
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.1;
}

.logo span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--rose);
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--green-deep);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 0.75rem 0 1.25rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav-mobile a {
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.page-hero .hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after,
.page-hero .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 42, 36, 0.18) 0%, rgba(30, 42, 36, 0.55) 55%, rgba(30, 42, 36, 0.78) 100%),
    linear-gradient(90deg, rgba(47, 74, 60, 0.35), transparent 55%);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 38rem;
}

.brand-mark {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.brand-mark em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-soft);
}

.hero .lede,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  max-width: 32rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-sage {
  background: linear-gradient(135deg, rgba(216, 230, 221, 0.7), rgba(246, 236, 234, 0.55));
}

.section-green {
  background: var(--green-deep);
  color: var(--cream);
}

.section-green .eyebrow {
  color: var(--rose-soft);
}

.section-green a {
  color: var(--rose-soft);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
}

.btn-rose:hover {
  background: #b7757b;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.pillars {
  display: grid;
  gap: 1.25rem;
}

.pillar {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.pillar img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pillar:hover img {
  transform: scale(1.05);
}

.pillar-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.pillar-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-photo {
  overflow: hidden;
  border: 1px solid var(--line);
}

.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  animation: softRise 1.1s var(--ease) both;
}

.quote-rail {
  display: grid;
  gap: 1.5rem;
}

.quote-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--rose);
}

.quote-card blockquote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--green-deep);
}

.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.bouquet-list {
  display: grid;
  gap: 2rem;
}

.bouquet-item {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.bouquet-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bouquet-item img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.occasion-grid {
  display: grid;
  gap: 1.5rem;
}

.occasion-block {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-top: 3px solid var(--sage);
}

.occasion-block.wedding {
  border-top-color: var(--rose);
}

.hours-box,
.contact-panel {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.hours-box dl,
.contact-panel dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.hours-box dt,
.contact-panel dt {
  font-weight: 700;
  color: var(--green-deep);
}

.hours-box dd,
.contact-panel dd {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--sage-soft);
  border: 1px solid var(--sage);
  color: var(--green-deep);
}

.form-success.is-visible {
  display: block;
}

.legal-content {
  max-width: 46rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--green-deep);
  color: rgba(250, 247, 244, 0.88);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.site-footer a {
  color: var(--rose-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  color: rgba(250, 247, 244, 0.65);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-left: auto;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.cookie-banner p {
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  padding: 0.65rem 0.95rem;
  font-size: 0.85rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(30, 42, 36, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-dialog {
  width: min(440px, 100%);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.fade-up {
  animation: fadeUp 0.9s var(--ease) both;
}

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

@keyframes softRise {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

@media (min-width: 760px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-copy {
    order: 2;
  }

  .quote-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .bouquet-item {
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
  }

  .bouquet-item:nth-child(even) img {
    order: 2;
  }

  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }

  .pillar img {
    aspect-ratio: 3 / 4;
  }
}
