/* ————————————————————————
   The Florist Office
   Stylesheet
   ———————————————————————— */

:root {
    --black: #1a1a1a;
    --off-white: #f5f0eb;
    --gray: #8a8a8a;
    --warm-gray: #c4b8a8;
    --forest: #2d4a3e;
    --sand: #b8a88a;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--black);
    background: var(--off-white);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--off-white);
    background: var(--black);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--forest); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    background: var(--off-white);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--off-white);
    background: var(--black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--forest);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
}

.hero-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Section Labels & Titles */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 2.5rem;
}

/* Services */
.services {
    background: var(--black);
    color: var(--off-white);
    padding: 7rem 0;
}

.services .section-label { color: var(--sand); }
.services .section-title { color: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    border-top: 1px solid rgba(245, 240, 235, 0.15);
    padding-top: 2rem;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--sand);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--off-white);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sand);
}

.services-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    opacity: 0.6;
    text-align: center;
    margin-top: 2rem;
}

/* About */
.about {
    background: var(--off-white);
    padding: 7rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.pillars {
    list-style: none;
    margin-top: 2rem;
}

.pillars li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.pillars li strong {
    color: var(--black);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-visual {
    position: sticky;
    top: 120px;
}

.about-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-placeholder {
    width: 80%;
    height: 80%;
    border: 2px solid rgba(26, 26, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder span {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.3);
    letter-spacing: 0.1em;
}

.about-caption {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.about-caption span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* The Read */
.read {
    background: var(--black);
    color: var(--off-white);
    padding: 7rem 0;
}

.read .section-label { color: var(--sand); }
.read .section-title { color: var(--off-white); }

.read-lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--warm-gray);
    max-width: 700px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.process-step {
    position: relative;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sand);
    opacity: 0.4;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.process-step h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--off-white);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    border: 1px solid rgba(245, 240, 235, 0.12);
    padding: 2.5rem;
    transition: border-color 0.3s;
}

.pricing-card:hover { border-color: rgba(245, 240, 235, 0.25); }

.pricing-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--off-white);
}

.price {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--sand);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.pricing-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--black);
    background: var(--off-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--off-white);
    background: transparent;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border: 1px solid rgba(245, 240, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--off-white);
    background: rgba(245, 240, 235, 0.05);
}

.calendly-embed {
    width: 100%;
    height: 700px;
    border-top: 1px solid rgba(245, 240, 235, 0.1);
    padding-top: 3rem;
}

.calendly-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact */
.contact {
    background: var(--off-white);
    padding: 7rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-lead {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--black);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-gray);
}

.contact-item a, .contact-item span:last-child {
    font-size: 1rem;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--forest); }

/* Form */
.contact-form {
    background: rgba(26, 26, 26, 0.02);
    padding: 2.5rem;
    border: 1px solid rgba(26, 26, 26, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    background: var(--off-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--black);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--off-white);
    padding: 5rem 0 2.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-seed {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-seed p {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

.footer-seed a {
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 168, 138, 0.3);
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

.copyright {
    opacity: 0.4 !important;
    font-size: 0.7rem !important;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .services-grid,
    .process,
    .pricing,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-visual { position: static; }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav { flex-wrap: wrap; gap: 1.5rem; }

    .calendly-embed { height: 600px; }
}

@media (max-width: 600px) {
    .container { padding: 0 1.25rem; }
    .nav-inner { padding: 0 1.25rem; height: 64px; }
    .hero { padding: 5rem 1.25rem 3rem; }
    .services, .about, .read, .contact { padding: 4.5rem 0; }
    .contact-form { padding: 1.5rem; }
}

/* Mobile menu active state */
.nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--off-white);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.nav.active .nav-cta {
    display: inline-block;
    margin-top: 1rem;
}
