/* ============================================
   HAWKEYE FINANCIAL — Light Theme, Gold Accents
   ============================================ */

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D49A;
  --gold-dark:   #A8842A;
  --gold-pale:   #FAF5E8;
  --ink:         #1A1A1A;
  --ink-mid:     #3D3D3D;
  --ink-soft:    #6B6B6B;
  --off-white:   #FAFAF8;
  --white:       #FFFFFF;
  --border:      #E8E4DA;
  --shadow:      rgba(26,26,26,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:   6px;
  --radius-lg: 12px;
  --max-w:    1200px;
  --transition: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; }
p  { color: var(--ink-mid); }

/* ---- Gold rule ---- */
.gold-rule {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px var(--shadow); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.main-nav a:hover { color: var(--ink); background: var(--gold-pale); }
.main-nav a.active { color: var(--gold-dark); }
.main-nav a.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.3rem;
  font-weight: 600;
}
.main-nav a.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   HERO — Full-bleed banner
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,250,248,0.07) 0%,
    rgba(250,250,248,0.05) 35%,
    rgba(250,250,248,0.03) 60%,
    rgba(250,250,248,0.0) 100%
  );
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 500px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-pale); }
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(255,255,255,0.1); }

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
}
.hero-cred-img {
  height: 52px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero-trust {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  gap: 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item .t-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-item .t-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-alt { background: var(--white); }
.section-dark {
  background: var(--ink);
  color: var(--off-white);
}
.section-dark h2, .section-dark h3 { color: var(--off-white); }
.section-dark p { color: rgba(250,250,248,0.7); }
.section-dark .gold-rule { background: var(--gold); }

.text-center { text-align: center; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.services-intro-content h2 { margin-bottom: 1.25rem; }
.services-intro-content p { margin-bottom: 1rem; line-height: 1.8; }

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.service-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   TWO-COL FEATURE
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.feature-image:hover .feature-img {
  transform: scale(1.03);
}
.feature-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #F0E8D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
  stroke: var(--gold-dark);
}
.feature-content h2 { margin-bottom: 1rem; }
.feature-content p { line-height: 1.8; margin-bottom: 1rem; }
.feature-content em { font-style: italic; color: var(--gold-dark); }
.feature-content strong { color: var(--ink); }

/* Quote block */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* ============================================
   PROMISE SECTION
   ============================================ */
.promise-section {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2218 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.promise-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.promise-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.promise-content h2 { color: var(--off-white); margin-bottom: 1rem; }
.promise-content p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1rem; }
.promise-content em { color: var(--gold-light); font-style: italic; }
.promise-content strong { color: var(--off-white); }

.promise-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.promise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.promise-card h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.promise-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ============================================
   ENTITY / TAX SECTION
   ============================================ */
.entity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.entity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.entity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.entity-card:hover { box-shadow: 0 8px 40px rgba(201,168,76,0.15); transform: translateY(-3px); }
.entity-card:hover::after { transform: scaleX(1); }
.entity-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.entity-card h3 { margin-bottom: 0.75rem; }
.entity-card p { font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 { max-width: 600px; }
.page-hero .lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: var(--ink-mid);
  margin-top: 1.25rem;
  line-height: 1.75;
}

.about-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}
.about-content h2 { margin-bottom: 0.75rem; }
.about-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.about-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 { color: var(--gold-dark); margin-bottom: 1rem; font-size: 0.8rem; }
.sidebar-list { list-style: none; }
.sidebar-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--ink-mid);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--ink-soft); margin-bottom: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.contact-info-wrap { position: sticky; top: 96px; }
.contact-info-card {
  background: var(--ink);
  color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}
.contact-detail:last-child { border-bottom: none; }
.cd-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.cd-text { display: flex; flex-direction: column; }
.cd-text .cd-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.cd-text .cd-val { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.cd-text a { color: var(--gold-light); }
.cd-text a:hover { color: var(--gold); }

.reg-card {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.reg-card h4 { color: var(--gold-dark); margin-bottom: 1rem; }
.reg-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--gold-light);
  font-size: 0.85rem;
}
.reg-row:last-child { border-bottom: none; }
.reg-row .rr-label { color: var(--ink-soft); }
.reg-row .rr-val { font-weight: 600; color: var(--ink); }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-3px); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gold-pale), #EDE3C8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img svg { width: 48px; height: 48px; opacity: 0.3; stroke: var(--gold-dark); }
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.85rem; color: var(--ink-soft); }
.blog-date { font-size: 0.78rem; color: var(--ink-soft); margin-top: 1rem; }

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--ink-soft);
  grid-column: 1 / -1;
}
.blog-empty svg { width: 56px; height: 56px; stroke: var(--gold-light); margin: 0 auto 1rem; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--off-white);
  padding-top: 5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Logo is black/yellow — invert to white/gold on dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 280px; line-height: 1.6; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notice {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-top: 1rem;
  display: none;
}
.notice.success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.notice.error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .promise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-wrap { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 1rem;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px var(--shadow);
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: center; padding: 0.75rem; }
  .nav-toggle { display: flex; }
  .hero { height: calc(100vh - 72px); min-height: 500px; }
  .hero-banner-overlay {
    background: linear-gradient(
      105deg,
      rgba(250,250,248,0.07) 0%,
      rgba(250,250,248,0.05) 50%,
      rgba(250,250,248,0.0) 100%
    );
  }
  .hero-inner { padding: 4rem 1.5rem 3rem; }
  .hero-trust { flex-wrap: wrap; gap: 1.5rem; }
  .entity-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
