/* ============================================================
   Voortman Group — styles.css
   Elegant, classic, refined — matched to the business card.
   Cream background, charcoal serif small-caps, a whisper of cobalt blue.
   ============================================================ */

:root {
  --cream:    #F8F7F2;  /* warm off-white page background */
  --ink:      #201F1B;  /* warm near-black: primary text */
  --charcoal: #3B3C3B;  /* lighter charcoal: watermark / muted */
  --mute:     #8C8B85;  /* small labels, captions */
  --line:     #DEDCD4;  /* hairline dividers / borders */
  --blue:     #2A4CC0;  /* cobalt accent — used sparingly, like the card */

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --maxw: 920px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* small-caps helper, as on the card (large initial, spaced caps) */
.sc, .wordmark, .tagline, .owner, .contact-label, .section-eyebrow,
.footer-mark {
  font-variant: small-caps;
  letter-spacing: 0.08em;
}

/* ============================================================
   HERO — the "business card" screen
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}

/* big faint serif V, echoing the card back */
.watermark {
  position: absolute;
  right: -2vw;
  bottom: -8vh;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 78vh;
  line-height: 1;
  color: var(--charcoal);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 640px; }

.wordmark {
  margin: 0;
  font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
}

.tagline {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 3.4vw, 1.55rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.dot { color: var(--blue); padding: 0 0.35em; }

.owner {
  margin: 2.25rem 0 0;
  font-size: clamp(0.95rem, 3vw, 1.25rem);
  color: var(--charcoal);
  letter-spacing: 0.14em;
}
.bar { color: var(--blue); padding: 0 0.6em; font-weight: 500; }

.rule {
  width: 64px;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem auto;
}

/* contact block */
.contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact li { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--mute);
  text-transform: uppercase;
}
.contact-value {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s ease;
}
.contact-value:hover { color: var(--blue); }

.scroll-cue {
  display: inline-block;
  margin-top: 2.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--mute);
  text-decoration: none;
  font-variant: small-caps;
  transition: color 0.15s ease;
}
.scroll-cue:hover { color: var(--ink); }

/* ============================================================
   OUR WORK / GALLERY
   ============================================================ */
.work {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6.5rem) 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.section-eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.section-title {
  margin: 0.4rem 0 0;
  font-weight: 600;
  font-size: clamp(2.1rem, 6.4vw, 3.2rem);
  letter-spacing: 0.03em;
}
.section-sub {
  margin: 0.75rem auto 0;
  max-width: 46ch;
  color: var(--charcoal);
  font-size: 1.15rem;
  font-style: italic;
}

.gallery {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.tile {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EFEDE6;
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(60,60,59,0.025) 14px 28px),
    #EFEDE6;
}
.tile.is-empty span {
  font-variant: small-caps;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--mute);
}

.work-cta {
  margin: 3rem auto 0;
  max-width: 50ch;
  font-size: 1.2rem;
  color: var(--ink);
}
.work-cta a { color: var(--blue); text-decoration: none; border-bottom: 1px solid var(--line); }
.work-cta a:hover { border-color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
}
.footer-mark {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.footer-line { margin: 0.6rem 0 0; font-size: 1.1rem; }
.footer-line a { color: var(--cream); text-decoration: none; }
.footer-line a:hover { color: var(--blue); }
.footer-line .dot { color: var(--blue); }
.footer-copy {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--mute);
  letter-spacing: 0.08em;
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
