/* The Florist Office — static site for Netlify drop deploy
   Palette: cream paper, deep botanical green, gold accent */

:root {
  --paper: #faf7f1;
  --paper-alt: #f1ece2;
  --ink: #22302a;
  --ink-soft: #4c5a52;
  --green: #1f3d2b;
  --green-deep: #152c1f;
  --gold: #b98a2f;
  --line: #ddd5c5;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, .brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; text-decoration: none; color: var(--green-deep);
}
.brand-mark { width: 26px; height: 26px; color: var(--green); }
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 0.95rem;
}
.site-nav a:hover { color: var(--green-deep); }
.nav-cta {
  padding: 8px 18px; border: 1.5px solid var(--green); border-radius: 999px;
  color: var(--green) !important;
}
.nav-cta:hover { background: var(--green); color: #fff !important; }

/* Hero */
.hero { padding: 110px 0 90px; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%); }
.hero-inner { max-width: 720px; }
.lede { font-size: 1.2rem; color: var(--ink-soft); margin: 26px 0 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--green);
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { color: var(--green); background: transparent; }
.btn-ghost:hover { background: var(--green); color: #fff; }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--paper-alt); }
.section-lede { color: var(--ink-soft); max-width: 620px; margin-bottom: 44px; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
}
.card p { color: var(--ink-soft); font-size: 0.97rem; }
.card-lane {
  font-size: 0.75rem !important; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold) !important; margin-bottom: 10px;
}
.card .rate {
  margin-top: auto; padding-top: 18px; font-weight: 600; color: var(--green-deep) !important;
  border-top: 1px solid var(--line); margin-top: auto; padding-top: 16px; margin-top: 20px;
}
.card-locked { background: var(--paper); border-style: dashed; }
.card-locked .card-lane { color: var(--ink-soft) !important; }

/* Principles */
.principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; margin-top: 36px; }
.principle h4 { color: var(--green); }
.principle p { color: var(--ink-soft); font-size: 0.95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }
.about-facts {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px;
}
.about-facts dl div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.about-facts dl div:last-child { border-bottom: none; }
.about-facts dt {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}
.about-facts dd { color: var(--ink); font-size: 0.97rem; margin-top: 2px; }

/* Contact */
.contact-inner { max-width: 640px; }
.contact-form { margin-top: 30px; display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--green-deep); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green);
}
.hidden-field { display: none; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--paper); }
.footer-inner p { font-size: 0.9rem; color: var(--ink-soft); }
.footer-scope { margin-top: 8px; max-width: 720px; }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 64px 0; }
}
