/*
Theme Name:  Harding Asset Management
Theme URI:   https://hardingassetmanagement.co.uk
Author:      Harding Asset Management Ltd
Description: Custom theme for Harding Asset Management Ltd
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: harding
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --navy:      #1a1a2e;
  --navy-dark: #111120;
  --navy-mid:  #23233a;
  --gold:      #c8a84b;
  --white:     #ffffff;
  --off-white: #f5f4f0;
  --muted:     #cccccc;
  --dim:       #888888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: #222;
}

/* ── NAV ── */
.site-nav {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .custom-logo,
.site-nav img {
  height: 44px !important;
  width: auto !important;
  filter: brightness(0) invert(1);
}

.site-name {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
  color: var(--white);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 72px 48px 80px;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-text { flex: 1; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 18px;
}

.hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.btn-gold:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  padding: 12px 26px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.75); }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 20px 26px;
  min-width: 155px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
  padding: 64px 48px;
}

.section-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  color: #222;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: #f5f0e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card a {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.service-card a:hover { text-decoration: underline; }

/* ── CTA STRIP ── */
.cta-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-panel {
  padding: 52px 48px;
}

.cta-panel:not(.cta-panel--alt) { background: var(--navy); }
.cta-panel--alt { background: var(--navy-mid); }

.cta-tag {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.cta-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.cta-panel p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── INNER PAGES ── */
.page-content {
  background: var(--white);
  min-height: 60vh;
}

.page-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  color: #222;
  margin-bottom: 32px;
}

.page-body {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin: 36px 0 14px;
}

.page-body p { margin-bottom: 18px; }

.page-body a { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  padding: 48px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .custom-logo,
.footer-brand img {
  height: 42px !important;
  width: auto !important;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand .site-name {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 12px;
  color: #aaa;
  line-height: 1.7;
}

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: #555;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }

  .hero {
    flex-direction: column;
    padding: 48px 24px 56px;
    gap: 40px;
  }

  .hero h1 { font-size: 34px; }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .stat-card { flex: 1; min-width: 120px; }

  .services { padding: 48px 24px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .cta-strip { grid-template-columns: 1fr; }
  .cta-panel { padding: 40px 24px; }

  .site-footer { padding: 40px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-gold, .btn-outline { text-align: center; }
}
