:root {
  --theme-color-primary: #b08d3e;
  --theme-color-secondary: #1a1a1a;
  --theme-color-surface: #faf7f2;
  --theme-color-text: #1f1f1f;
  --theme-color-muted: #8a8378;
  --theme-font-heading: 'Playfair Display', serif;
  --theme-font-body: 'Lora', serif;
  --theme-radius: 0px;
  --theme-spacing-scale: 1.15;
  --theme-button-radius: 0px;
  --theme-button-bg: transparent;
  --theme-button-fg: var(--theme-color-primary);
  --theme-button-border: 2px solid var(--theme-color-primary);
}
/*
 * Self-hosted Google Fonts (plan.md Phase 5 task 1 — no CDN allowed).
 * Latin-subset woff2 only. Browsers only fetch a face that's actually
 * applied to rendered text, so listing all of them here costs nothing
 * for themes that don't use every font.
 */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/nunito-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/nunito-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/montserrat-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/montserrat-800.woff2') format('woff2');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/worksans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/worksans-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/playfairdisplay-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/playfairdisplay-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/lora-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Lora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/lora-700.woff2') format('woff2');
}

.sb-contact-form { padding: 56px 24px; }
.sb-contact-form .contact-inner { max-width: 480px; margin: 0 auto; text-align: center; }
.sb-contact-form h2 { font-size: 28px; margin-bottom: 8px; color: var(--theme-color-text); }
.sb-contact-form p { font-size: 15px; color: var(--theme-color-muted); margin-bottom: 24px; }
.sb-contact-form .contact-form-fields { text-align: left; }
.sb-contact-form .field { margin-bottom: 14px; }
.sb-contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: var(--theme-color-text); }
.sb-contact-form input, .sb-contact-form textarea {
  width: 100%; padding: 10px; border: 1px solid rgba(0, 0, 0, .15); border-radius: var(--theme-radius);
  font-family: inherit; background: #f7f7f7; color: var(--theme-color-muted);
}
.sb-contact-form .btn { width: 100%; padding: 12px; background: var(--theme-button-bg); color: var(--theme-button-fg); border: var(--theme-button-border); border-radius: var(--theme-button-radius); font-weight: 600; cursor: pointer; }
.sb-contact-form .hp-field { position: absolute; left: -9999px; top: -9999px; }
.sb-contact-form .contact-status { padding: 10px 14px; border-radius: var(--theme-radius); font-size: 14px; margin-bottom: 16px; }
.sb-contact-form .contact-status.sent { background: #edf7ee; color: #1e7a34; }
.sb-contact-form .contact-status.error { background: #fdecea; color: #b3261e; }
