/*
Theme Name: Kent Smith Auction Group
Theme URI: https://kentsmithauctions.com
Author: Kent Smith Auction Group
Description: Custom theme for Kent Smith Auction Group, a Texas benefit and charity auctioneer. Navy, gold, and burgundy brand system built from the KB Auctions brand kit.
Version: 1.0
Requires PHP: 7.4
Text Domain: kb-auctions
*/

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

:root {
  --navy:   #1C2E4A;
  --gold:   #C4923A;
  --cream:  #F7F3EC;
  --burgundy: #8B2635;
  --navy-dark: #1C2E4A;
  --gold-light: #d4a655;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--navy);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  border-bottom: 2px solid var(--gold);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
.site-logo-img,
.site-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}
.nav-toggle:hover { color: var(--gold); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,149,58,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,26,60,0.08) 0%, transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  position: relative;
  max-width: 820px;
}

.hero-monogram {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}

.hero-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  margin: -0.5rem 0 1.5rem;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(245,240,232,0.4);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-credential {
  margin-top: 3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  background: var(--navy);
  text-align: center;
  padding: 160px 5% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .section-label { justify-content: center; display: flex; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── SECTION SHARED ──────────────────────────── */
section { padding: 90px 5%; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

/* ─── PROMISE STRIP ───────────────────────────── */
.promise-strip {
  background: var(--burgundy);
  padding: 28px 5%;
  text-align: center;
}
.promise-strip p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #fff;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.promise-strip p span {
  color: var(--gold-light);
}

/* ─── ABOUT ───────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-placeholder {
  background: var(--navy);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,149,58,0.12) 0%, transparent 70%);
}
.placeholder-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  position: relative;
}
.placeholder-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-top: 1rem;
  position: relative;
}
.about-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.3;
  z-index: 2;
}
.about-corner.tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.about-corner.br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.about-content .section-divider { margin-bottom: 1.5rem; }
.about-content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a3a;
  margin-bottom: 1.25rem;
}

.promise-blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(201,149,58,0.06);
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.promise-blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  margin: 0;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── FAQ PAGE ───────────────────────────── */
.faq { background: var(--cream); }
.faq-category { margin-bottom: 2.5rem; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(28,46,74,0.12);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { margin-bottom: 0.75rem; }
.faq-item p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0;
}

/* ─── SERVICES ────────────────────────────────── */
.services { background: var(--navy); }
.services .section-title { color: #fff; }
.services .section-label { color: var(--gold); }
.services-intro {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.services-featured {
  background: var(--burgundy);
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.services-featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(ellipse at top right, rgba(201,149,58,0.15), transparent 70%);
}

.service-icon {
  width: 54px; height: 54px;
  background: rgba(201,149,58,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.services-featured .service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.services-featured .service-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.services-featured .service-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(201,149,58,0.2);
  border-radius: 4px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover {
  background: rgba(245,240,232,0.07);
  border-color: rgba(201,149,58,0.5);
}
.service-card .service-icon {
  width: 44px; height: 44px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
}

/* ─── WHY KB ──────────────────────────────────── */
.why { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,149,58,0.12);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.pillar-card h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.75;
}

/* ─── COVERAGE ────────────────────────────────── */
.coverage {
  background: var(--navy-dark);
  text-align: center;
  padding: 80px 5%;
}
.coverage .section-label { text-align: center; justify-content: center; display: flex; }
.coverage .section-title { color: #fff; text-align: center; margin-bottom: 1rem; }
.coverage .section-divider { margin: 0 auto 1.5rem; }
.coverage-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.coverage-tag {
  background: rgba(201,149,58,0.12);
  border: 1px solid rgba(201,149,58,0.3);
  color: var(--gold-light);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.texas-flag-line {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
}

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-stub {
  border: 2px dashed rgba(27,46,75,0.15);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  gap: 1rem;
}
.testimonial-card {
  border: 1px solid rgba(27,46,75,0.12);
  border-radius: 4px;
  padding: 2rem;
  background: #fff;
}
.testimonial-card .quote-mark,
.testimonial-stub .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-card p.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.7;
  margin: 0.5rem 0 1rem;
}
.testimonial-card .attribution {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(27,46,75,0.6);
}
.testimonial-stub p {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(27,46,75,0.4);
  letter-spacing: 0.05em;
  font-style: italic;
}
.testimonials-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(27,46,75,0.4);
  font-style: italic;
}

/* ─── CONTACT / BOOK ──────────────────────────── */
.contact {
  background: var(--navy);
  text-align: center;
  padding: 100px 5%;
}
.contact .section-label { text-align: center; justify-content: center; display: flex; }
.contact .section-title { color: #fff; text-align: center; margin-bottom: 0.5rem; }
.contact .section-title em { color: var(--gold); font-style: italic; }
.contact .section-divider { margin: 1rem auto 1.5rem; }
.contact-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.contact-form,
.wpcf7-form {
  max-width: 560px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: rgba(245,240,232,0.07);
  border: 1px solid rgba(201,149,58,0.25);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,240,232,0.35); }
.contact-form select option { background: var(--navy); color: var(--cream); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn-primary { width: 100%; text-align: center; cursor: pointer; border: none; font-size: 0.8rem; }

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.6);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail:hover { color: var(--gold); }
.contact-detail .detail-icon { color: var(--gold); font-size: 1rem; }

/* ─── BLOG ─────────────────────────────────────── */
.blog-list { background: var(--cream); }
.post-card {
  border-bottom: 1px solid rgba(27,46,75,0.12);
  padding: 2rem 0;
}
.post-card:first-child { padding-top: 0; }
.post-card .post-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.post-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.post-card h2 a { text-decoration: none; color: var(--navy); }
.post-card h2 a:hover { color: var(--burgundy); }
.post-card .post-excerpt {
  font-size: 0.95rem;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.8;
}
.post-card .read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
}
.single-post-content {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
  color: #3a3a3a;
}
.single-post-content p { margin-bottom: 1.25rem; }
.single-post-content h2,
.single-post-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.pagination a, .pagination span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(27,46,75,0.2);
  border-radius: 2px;
}

/* ─── FOOTER ──────────────────────────────────── */
footer.site-footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-brand .brand-group {
  color: var(--gold);
}
.footer-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.4);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  color: rgba(201,149,58,0.5);
}
.footer-copy {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.3);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    padding: 0.5rem 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 5%;
  }
  .nav-cta {
    display: block;
    width: auto;
    margin: 0.5rem 5% 0;
    text-align: center;
  }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-placeholder { aspect-ratio: 3/2; }
  .form-row { grid-template-columns: 1fr; }
  footer.site-footer { flex-direction: column; text-align: center; }
  .services-featured { grid-template-columns: 1fr; }
}
