/* ============================================
   dandicker.com — Site Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --navy:   #0d2137;
  --gold:   #c8922a;
  --gold-light: #e8b04a;
  --dark:   #111820;
  --mid:    #2c3e50;
  --text:   #2a2a2a;
  --muted:  #666;
  --light:  #f7f5f2;
  --white:  #ffffff;
  --border: #ddd5c8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── HEADER ─────────────────────────────── */
.site-header {
  background: #7a8a96;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo img { height: 28px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 6px; }

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand img { height: 28px; margin-bottom: 16px; opacity: 0.8; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-copy { font-size: 0.82rem; }

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
  margin-top: 4px;
}

/* ── UTILITIES ───────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-light { background: var(--light); }
.section-mid { background: var(--mid); color: var(--white); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.section-dark .section-subtitle,
.section-mid .section-subtitle { color: rgba(255,255,255,0.7); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,146,42,0.4); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 28px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  position: relative;
  padding-top: 12px;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -4px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author .name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testimonial-author .sub  { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 14px; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .header-inner { padding: 0 20px; }
}
