/* ═══════════════════════════════════════════════
   TOKENS — edit these to restyle the whole site
═══════════════════════════════════════════════ */
:root {
  --color-bg:         #ffffff;
  --color-surface:    #eef4f2;   /* faint teal tint */
  --color-primary:    #3a6b4e;   /* faded forest green */
  --color-accent:     #7ebdb5;   /* jacket teal */
  --color-warm:       #b8895a;   /* ochre-brown (light backgrounds) */
  --color-warm-light: #d4aa78;   /* ochre lightened for dark backgrounds */
  --color-text:       #1a2420;   /* dark green-tinted black */
  --color-text-muted: #5c6b67;
  --color-border:     #c8ddd9;

  --font-body:   'Georgia', serif;
  --font-ui:     system-ui, -apple-system, sans-serif;
  --font-brand:  'Namdhinggo', system-ui, sans-serif;

  --radius:  6px;
  --gap:     clamp(1.25rem, 4vw, 2.5rem);
  --max-w:   1100px;

  --text-sm:   clamp(0.85rem,  1.5vw, 0.95rem);
  --text-base: clamp(1rem,     2vw,   1.1rem);
  --text-lg:   clamp(1.15rem,  2.5vw, 1.35rem);
  --text-xl:   clamp(1.4rem,   4vw,   2rem);
  --text-2xl:  clamp(1.8rem,   5vw,   2.75rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}

ul {
  list-style: none;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  background: var(--color-primary);
  color: #fff;
  padding: clamp(1rem, 3vw, 1.75rem) var(--gap);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 420px) {
  .brand {
    flex-direction: column;
    gap: 0.35rem;
  }
  .company-name {
    font-size: clamp(0.9rem, 4.8vw, 1.4rem);
  }
}

.logo {
  height: clamp(2.5rem, 6vw, 4rem);
  width: auto;
  object-fit: contain;
}

.company-name {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}

.header-phone {
  font-family: var(--font-brand);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.header-phone:hover {
  color: #fff;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT GRID
   Mobile: 1 column (headshot first, then text)
   Desktop ≥ 768px: 2 columns (headshot | text)
═══════════════════════════════════════════════ */
.content-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--gap);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
  }
}

/* ── Headshot ── */
.headshot-section {
  text-align: center;
}

.headshot {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.headshot-caption {
  margin-top: 0.6rem;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ── Intro + Services ── */
.body-section {
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 1.2);
}

.intro h2,
.services h2 {
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-warm);
  display: inline-block;
}

.intro p {
  font-size: var(--text-base);
  color: var(--color-text);
}

.services ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.services li {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  padding: 0.45rem 0.75rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ═══════════════════════════════════════════════
   FOOTER — CTA + Contacts
═══════════════════════════════════════════════ */
.cta-footer {
  background: var(--color-primary);
  color: #fff;
  padding: calc(var(--gap) * 1.5) var(--gap);
  text-align: center;
}

.cta-footer a {
  color: var(--color-accent);
}

.cta-footer a:hover {
  color: #fff;
}

.cta {
  max-width: 600px;
  margin: 0 auto var(--gap);
}

.cta-headline {
  font-family: var(--font-ui);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-warm-light);
  margin-bottom: 0.4rem;
}

.cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
}

/* ── Contact details grid ── */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto var(--gap);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.contact-label {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}

.contact-item a,
.contact-item span {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.9);
}

/* ── Copyright ── */
.copyright {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
   PRINT — strips nav chrome, keeps content
═══════════════════════════════════════════════ */
@media print {
  .site-header { background: none; color: #000; }
  .cta-footer  { background: none; color: #000; }
  .header-phone,
  .cta-headline,
  .contact-label { color: #000; }
}
