/* ============================================================
   styles.css  —  Edit the :root block to rebrand the site.
   All colors, fonts, and spacing update automatically.
   See CHEATSHEET.md for font and color options.
   ============================================================ */

/* Active font import — swap using options in CHEATSHEET.md */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Playfair+Display:wght@600&display=swap');

/* ── THEME — ✏️ edit these values ──────────────────────── */
:root {
  /* Colors */
  --color-primary:    #D85A30;              /* coral — buttons, accents         */
  --color-primary-dk: #993C1D;              /* dark coral — hover states        */
  --color-accent:     #EF9F27;              /* amber — logo 2nd word            */
  --color-bg:         #FFFFFF;              /* page background                  */
  --color-bg-soft:    #FDF7F2;              /* warm off-white — alt sections    */
  --color-bg-card:    #FAF4EE;              /* warm cream — cards               */
  --color-text:       #1C1210;              /* near-black body text             */
  --color-text-muted: #7A5C50;              /* warm grey — captions/secondary   */
  --color-border:     rgba(216,90,48,0.14); /* subtle warm border               */

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif; /* headings  */
  --font-body:    'DM Sans', system-ui, sans-serif;   /* body text */

  /* Spacing & shape */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --max-width:  1040px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--color-text); background: var(--color-bg); }
img   { max-width: 100%; display: block; }
a     { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container   { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section     { padding: 80px 0; }
.section-alt { background: var(--color-bg-soft); }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px);
  font-weight: 600; line-height: 1.2; margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; color: var(--color-text-muted);
  max-width: 560px; margin-bottom: 40px; line-height: 1.75;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 12px 28px;
  border-radius: var(--radius-md); font-family: var(--font-body);
  font-size: 15px; font-weight: 500; cursor: pointer;
  border: none; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary       { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dk); }
.btn-outline       { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-bg-soft); }

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border); padding: 0 28px;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--color-primary-dk); text-decoration: none; }
.nav-logo span { color: var(--color-accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--color-text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.25s; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--color-bg-soft); padding: 100px 28px 88px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -160px; left: 50%;
  transform: translateX(-50%); width: 800px; height: 800px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(239,159,39,0.1) 0%, transparent 68%);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 6vw, 56px);
  font-weight: 600; line-height: 1.15; margin-bottom: 20px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--color-primary); }
.hero p { font-size: 17px; color: var(--color-text-muted); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; max-width: 720px; margin: 0 auto; text-align: center; }
.about-text p { font-size: 16px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.tag {
  display: inline-block; background: var(--color-bg-card);
  border: 1px solid var(--color-border); border-radius: 100px;
  padding: 6px 16px; font-size: 13px; font-weight: 500; color: var(--color-primary-dk);
}
.about-photo {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 32px;
  color: var(--color-text-muted); font-size: 14px; line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(216,90,48,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.card p  { font-size: 15px; color: var(--color-text-muted); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--color-bg-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(216,90,48,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 4px;
}
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-primary); }
.contact-value { font-size: 16px; font-weight: 500; color: var(--color-text); }
.contact-value a { color: var(--color-text); }
.contact-value a:hover { color: var(--color-primary); text-decoration: none; }
.contact-note { font-size: 13px; color: var(--color-text-muted); line-height: 1.55; }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-header { background: var(--color-bg-soft); border-bottom: 1px solid var(--color-border); padding: 64px 28px 40px; }
.legal-header h1 { font-family: var(--font-display); font-size: 36px; font-weight: 600; margin-bottom: 8px; }
.legal-header p { font-size: 14px; color: var(--color-text-muted); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 56px 28px 88px; }
.legal-body h2 { font-size: 19px; font-weight: 600; margin: 40px 0 10px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p  { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; list-style: disc; margin-bottom: 12px; }
.legal-body li { font-size: 15px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 6px; }
.legal-body a  { color: var(--color-primary); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #1C1210; padding: 52px 28px 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; flex-wrap: wrap; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 280px; line-height: 1.65; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 10px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 24px 28px; border-bottom: 1px solid var(--color-border); gap: 20px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 72px 28px 64px; }
  .section { padding: 56px 0; }
  .footer-top { flex-direction: column; gap: 32px; }
}

/* ── ACCESSIBILITY & POLISH (added) ──────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-primary); color: #fff;
  padding: 10px 18px; border-radius: 0 0 var(--radius-md) 0;
  font-size: 14px; font-weight: 500;
}
.skip-link:focus { left: 0; text-decoration: none; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.contact-value { line-height: 1.5; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .card:hover { transform: none; }
}

/* ── SERVICES NOTE (secondary block under the cards) ─────── */
.services-note {
  margin-top: 32px; padding: 24px 26px;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  max-width: 640px;
}
.services-note h3 {
  font-size: 13px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 8px;
}
.services-note p {
  font-size: 15px; color: var(--color-text-muted); line-height: 1.7;
}
