/*
Theme Name: RFM Template
Theme URI: http://localhost:8000
Author: RFM Dev
Description: Basic custom theme for the local WordPress template project.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rfmtemplate
*/

:root {
  --rfm-bg: #f7f5f1;
  --rfm-surface: #ffffff;
  --rfm-text: #1d1d1f;
  --rfm-muted: #62646a;
  --rfm-accent: #1b6ef3;
  --rfm-border: #dedbd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--rfm-bg);
  color: var(--rfm-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--rfm-accent);
}

.site-header,
.site-footer {
  border-color: var(--rfm-border);
  border-style: solid;
  border-width: 0;
}

.site-header {
  border-bottom-width: 1px;
  background: var(--rfm-surface);
}

.site-header__inner,
.site-main,
.site-footer__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.site-branding {
  color: var(--rfm-text);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}

.site-main {
  padding: 72px 0;
}

.hero {
  max-width: 720px;
}

.hero__eyebrow {
  color: var(--rfm-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
}

.hero p {
  margin: 0;
  color: var(--rfm-muted);
  font-size: 1.125rem;
}

.site-footer {
  border-top-width: 1px;
  color: var(--rfm-muted);
}

.site-footer__inner {
  padding: 28px 0;
}
