/* Google Fonts: Oswald (Sweet Gothic), DM Sans (Sweet Sans Pro), Cormorant Garamond (Empira) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brown: #271f14;
  --grey:  #dfdbd6;
  --linen: #f6f7f2;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}
html { font-size: 16px; }
body {
  background: var(--linen);
  color: var(--brown);
  font-family: var(--sans);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 64px;
  border-bottom: 1px solid rgba(39,31,20,.15);
  background: var(--linen);
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
}

nav { display: flex; gap: 36px; }

nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .55;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 6vw 72px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .6;
  margin-bottom: 40px;
}

.hero-logo {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 16px;
  max-width: 40vw;
}

.hero-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--brown);
  opacity: .5;
  margin: 25px;
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: var(--brown);
  opacity: .25;
  margin: 50px auto 0px;
}

.hero-title {
  font-family: 'Spectral', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 200;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: .01em;
}

.hero-tagline {
  font-family: 'Spectral', serif;
  font-size: 20px;
  font-weight: 200;
  color: var(--brown);
  line-height: 1.2;
  letter-spacing: .01em;
  margin-top: 30px;
  opacity: 1;
}

.hero-body {
  font-family: 'Proza Libre', serif;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--brown);
  opacity: .7;
  max-width: 480px;
  margin: 20px 0;
}

/* ── PILL – donkerbruin ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brown);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 25px;
  margin: 50px 0 25px;
}

.hero-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--grey);
  opacity: .7;
  flex-shrink: 0;
}

/* ── SERVICES BAR – donkerbruin ── */
.services {
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 6vw;
}

.service {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: .7;
  padding: 4px 28px;
  position: relative;
}

.service + .service::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 12px; width: 1px;
  background: var(--grey);
  opacity: .35;
}

/* ── FOOTER – grijs ── */
footer {
  background: var(--grey);
  padding: 52px 6vw 36px;
}

.footer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(39,31,20,.15);
}

.footer-grid > :nth-child(2) {
  margin-left: auto;
}

.footer-grid > :first-child img {
  max-width: 400px;
}

.footer-brand-name {
  font-family: 'Proza Libre', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.footer-brand-sub {
  font-family: 'Proza Libre', serif;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .55;
  line-height: 1.6;
}

.footer-col-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .5;
  margin-bottom: 12px;
}

.footer-col-value {
  font-family: 'Proza Libre', serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--brown);
}
.footer-url {
  font-family: 'Proza Libre', serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--brown);
  text-decoration: none;
  
}
.footer-url:hover { text-decoration: underline; }

.footer-col-value a { color: inherit; text-decoration: none; }
.footer-col-value a:hover { text-decoration: underline; }

.footer-bottom {
  max-width: 1000px;
  margin: 24px auto 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .10em;
  color: var(--brown);
  opacity: .75;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1024px) {
  .hero-logo { max-width: 60vw; }
}
@media (max-width: 680px) {
  nav { display: none; }
  .footer-grid { flex-wrap: wrap; }
  .footer-grid > :first-child { width: 100%; }
  .footer-grid > :nth-child(2) { margin-left: 0; }
  .hero-logo { max-width: 80vw; }
}
@media (max-width: 400px) {
  .footer-grid { flex-direction: column; }
}
