/* ============================================
   Heal with Rachana — Global Stylesheet
   MAWD Agency Standard | Earthy Vibrant Theme
   ============================================ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font: inherit; border: none; }

:root {
    /* === FOREST GREEN PALETTE === */
    --brand-gold: #3d7a5e;
    --brand-gold-light: #5aaa7e;
    --brand-gold-glow: rgba(61, 122, 94, 0.35);
    --brand-teal: #1e4535;
    --brand-teal-light: #2d6b4f;
    --brand-terracotta: #4a7c59;
    --brand-sage: #7aad8a;
    --brand-rose: #a8c9b0;
    --brand-cream: #f0f4f1;
    --brand-sand: #e4ede7;
    --brand-linen: #f5f8f5;

    /* === BACKGROUND === */
    --bg-warm: #f0f4f1;
    --bg-sand: #e4ede7;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --border-soft: rgba(61, 122, 94, 0.15);
    --border-warm: rgba(61, 122, 94, 0.25);

    /* === TEXT === */
    --text-dark: #1a2e22;
    --text-body: #2e4038;
    --text-muted: #4a6057;
    --text-heading: #1e4535;

    /* === FONTS === */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Dancing Script', cursive;
}

address { font-style: normal; }

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.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;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}
.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--brand-gold);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
}

.field-error {
    border-color: #d45050 !important;
    box-shadow: 0 0 0 2px rgba(212, 80, 80, 0.15) !important;
}

.field-error-msg {
    color: #c44040;
    font-family: var(--font-body);
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

body {
    font-family: var(--font-body);
    background-color: #e8edea;
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
