/* Anywhere Blooms — soft floral marketing styles
   Mobile-first, accessible, warm greens / creams / blush */

:root {
  --cream: #fffdfb;
  --cream-deep: #faf6f3;
  --blush: #e8b4b8;
  --blush-soft: #f8e8ea;
  --blush-mid: #f3d6d8;
  --sage: #8fad9a;
  --sage-deep: #6e947c;
  --sage-muted: #b7cfc0;
  --leaf: #3f5c4c;
  --ink: #2f3f36;
  --ink-soft: #5a6b60;
  --white: #ffffff;
  --border: rgba(143, 173, 154, 0.28);
  --shadow: 0 10px 32px rgba(63, 92, 76, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --serif: "Georgia", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--sage-muted);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--leaf);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header / Nav */
.site-header {
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}



.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--leaf);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo span {
  color: var(--sage);
  font-weight: 400;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--leaf);
  cursor: pointer;
  padding: 0;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--blush-soft);
}

.nav-toggle-icon {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.5rem;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-list.is-open {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
}

.nav-list a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: var(--blush-soft);
  color: var(--leaf);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-inner {
    padding: 1rem 1.5rem;
  }

  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
  }

  .nav-list a {
    padding: 0.45rem 0.75rem;
    font-size: 0.95rem;
  }
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.25rem 0;
}

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

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

.section--blush {
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
}

.section--sage-tint {
  background: linear-gradient(180deg, #f4f8f5 0%, var(--cream) 100%);
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--leaf);
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 2.85rem);
}

h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0 0 1.5rem;
}

.muted {
  color: var(--ink-soft);
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  min-height: 48px;
}

.btn:active {
  transform: scale(0.98);
}

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

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

.btn-secondary {
  background: var(--white);
  color: var(--leaf);
  border-color: var(--blush);
}

.btn-secondary:hover {
  background: var(--blush-soft);
  color: var(--leaf);
  border-color: var(--blush);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-row.center {
  justify-content: center;
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(243, 214, 216, 0.55), transparent 58%),
    radial-gradient(ellipse 65% 50% at 4% 85%, rgba(183, 207, 192, 0.4), transparent 52%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

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

.hero-copy {
  min-width: 0;
}

.hero-visual {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 420px;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 18px 44px rgba(63, 92, 76, 0.12),
    0 2px 8px rgba(232, 180, 184, 0.25);
  border: 1px solid rgba(243, 214, 216, 0.55);
  background: var(--blush-soft);
}

.hero-card {
  background: linear-gradient(160deg, var(--white) 0%, var(--blush-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.hero-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero-card p:last-child {
  margin-bottom: 0;
}

.hero-card strong {
  color: var(--leaf);
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-visual {
    justify-self: end;
    max-width: 460px;
  }
}

/* Decorative peony accents (tasteful, not wallpaper) */
.accent-peony {
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 10px 28px rgba(63, 92, 76, 0.1);
  border: 1px solid rgba(243, 214, 216, 0.5);
}

.accent-peony--sm {
  max-width: 112px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.accent-row {
  display: flex;
  justify-content: center;
  margin: 0 0 0.5rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin-bottom: 0.4rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tier cards */
.tiers {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.tier {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.tier--featured {
  border-color: var(--sage-muted);
  background: linear-gradient(180deg, var(--white) 0%, #f7fbf8 100%);
  box-shadow: 0 12px 36px rgba(143, 173, 154, 0.16);
  position: relative;
}

.tier-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.tier-name {
  margin-bottom: 0.25rem;
}

.tier-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--leaf);
  margin: 0 0 0.75rem;
}

.tier-price small {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: var(--font);
  font-weight: 400;
}

.tier-desc {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.98rem;
}

.tier .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .tiers {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* Callouts / notes */
.note {
  background: var(--blush-soft);
  border-left: 4px solid var(--blush);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.note strong {
  color: var(--leaf);
}

/* Policy / prose pages */
.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose ul {
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.page-hero {
  padding: 2.5rem 0 1rem;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  max-width: 28rem;
}

.contact-card a {
  font-weight: 600;
  font-size: 1.1rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(ellipse 80% 80% at 15% 20%, rgba(248, 232, 234, 0.35), transparent 55%),
    linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 55%, #557a66 100%);
  color: var(--white);
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: var(--max);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-band p {
  margin: 0 auto 1.4rem;
  max-width: 32em;
  opacity: 0.94;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--leaf);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--leaf);
}

.cta-wrap {
  padding: 0 1.25rem 3.5rem;
}

/* Footer */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 1rem;
}

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

.footer-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--leaf);
  margin: 0 0 0.4rem;
}

.footer-legal {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

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

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

.footer-nav a:hover {
  color: var(--leaf);
  text-decoration: underline;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
