/* === Design Tokens === */
:root {
    --bg:         #FAF8F4;
    --cream:      #F3EEE4;
    --white:      #FFFFFF;
    --green-dark: #2D4A3E;
    --green-mid:  #4A7566;
    --gold:       #C4A35A;
    --gold-light: #E8D5A3;
    --text:       #2C2C2C;
    --muted:      #6B6B6B;
    --border:     #E2D9CC;
    --serif:      'Playfair Display', Georgia, serif;
    --sans:       'Lato', system-ui, sans-serif;
    --wide:       1100px;
    --narrow:     680px;
    --radius:     5px;
    --shadow:     0 2px 20px rgba(0,0,0,0.08);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.75; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === Layout === */
.container       { max-width: var(--wide);   margin: 0 auto; padding: 0 1.5rem; }
.container-narrow{ max-width: var(--narrow); margin: 0 auto; padding: 0 1.5rem; }
.section         { padding: 5rem 0; }
.section-white   { background: var(--white); }
.section-green   { background: var(--green-dark); color: var(--white); }
.section-cream   { background: var(--cream); }

.section-header  { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.section-green .section-header h2 { color: var(--gold-light); }

.divider         { width: 56px; height: 2px; background: var(--gold); margin: 0 auto; }
.divider-light   { background: var(--gold-light); }

.section-intro   { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

/* === Navigation === */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo        { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name       { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--green-dark); }
.logo-sub        { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.nav-links       { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a     { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta         { background: var(--green-dark) !important; color: var(--white) !important; padding: 0.5rem 1.2rem; border-radius: var(--radius); transition: background 0.2s !important; }
.nav-cta:hover   { background: var(--green-mid) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--green-dark); border-radius: 2px;
    transition: opacity 0.2s;
}

/* === Hero === */
.hero {
    margin-top: 70px;
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-blur {
    position: absolute; inset: 0;
    background: url('images/annie-hero.jpg') center / cover no-repeat var(--green-dark);
    filter: blur(10px) brightness(0.7);
    transform: scale(1.08);
}
.hero-image {
    position: absolute; inset: 0;
    background: url('images/annie-hero.jpg') center / contain no-repeat transparent;
}
.hero-overlay {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 100%; min-height: 88vh;
    background: rgba(0,0,0,0.38);
    padding: 3rem 1.5rem;
}
.hero-content    { text-align: center; color: var(--white); max-width: 620px; }
.hero-eyebrow    { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.hero-title      { font-family: var(--serif); font-size: clamp(4rem, 10vw, 7rem); font-style: italic; margin-bottom: 1rem; }
.hero-subtitle   { font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; }

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary     { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #b8943f; transform: translateY(-2px); }
.btn-full        { width: 100%; text-align: center; font-size: 0.9rem; }

/* === Content blocks === */
.content-block   { max-width: var(--narrow); margin: 0 auto; text-align: center; }
.content-block p { font-size: 1.05rem; margin-bottom: 1.2rem; }
.content-block p:last-child { margin-bottom: 0; }
.content-centered { text-align: center; margin-top: 3rem; }
.section-green .content-block p { color: rgba(255,255,255,0.85); }

/* === Service cards === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.service-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.service-icon    { font-size: 1.8rem; margin-bottom: 1rem; color: var(--gold-light); }
.service-card h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.6rem; }
.service-card p  { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.65; }

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.gallery-img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    background: var(--cream);
}

/* === Prices === */
.prices-block    { max-width: 540px; margin: 0 auto; text-align: center; }
.prices-block > p { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; }
.price-examples  { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.price-item {
    display: flex; align-items: center; justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 8px; padding: 1.2rem 1.5rem;
    background: var(--bg);
}
.price-item.featured {
    border-color: var(--gold);
    background: #FBF6EC;
}
.price-label     { font-size: 1rem; color: var(--text); text-align: left; }
.price-label em  { font-style: italic; color: var(--muted); font-size: 0.9rem; }
.price-value     { font-family: var(--serif); font-size: 1.6rem; color: var(--green-dark); white-space: nowrap; }
.price-from      { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); font-style: italic; margin-right: 0.25rem; }
.prices-note     { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; }

/* === Contact form === */
.contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group      { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--sans); font-size: 1rem; color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--green-mid); background: var(--white);
}
.form-group textarea { resize: vertical; }

/* === Footer === */
.footer          { background: var(--green-dark); color: rgba(255,255,255,0.65); padding: 3rem 0; text-align: center; }
.footer-logo     { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
.footer .logo-name  { font-size: 1.9rem; color: var(--gold-light); }
.footer .logo-sub   { color: rgba(255,255,255,0.4); }
.footer-contact  { margin-bottom: 0.75rem; }
.footer-contact a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-copy     { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle  { display: flex; }
    .nav-links   {
        display: none;
        position: absolute; top: 70px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column; align-items: stretch;
        padding: 1rem 1.5rem 1.5rem; gap: 0;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--border); }
    .nav-links li:last-child { border-bottom: none; margin-top: 0.75rem; }
    .nav-links a { display: block; padding: 0.85rem 0; }
    .nav-cta     { text-align: center; border-radius: var(--radius); }

    .gallery-grid   { grid-template-columns: 1fr; }
    .service-grid   { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
    .contact-form   { padding: 1.5rem; }
    .price-item     { flex-direction: column; text-align: center; gap: 0.25rem; }
    .section        { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .hero-title  { font-size: 3.5rem; }
}
