/* ============================================
   DSV Buitenverblijven — Stylesheet
   Kleurpalet: Bosgroen · Goud · Warm gebroken wit
   ============================================ */

:root {
  --forest:      #2C3E2D;
  --forest-dark: #1e2d1f;
  --forest-light: #3d5c3e;
  --off-white:   #F5F0E8;
  --gold:        #B8975A;
  --wood:        #3E2E20;
  --gray:        #D4CFC5;
  --gray-light:  #e8e3d8;
  --text:        #2C3E2D;
  --text-light:  #5a6e5a;

  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   'Jost', 'Segoe UI', Arial, sans-serif;

  --max-width:   1100px;
  --section-pad: 96px 24px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAVIGATIE ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: var(--forest);
  padding: 14px 40px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-logo svg { display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-whatsapp {
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-whatsapp:hover { color: #25D366; }
.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 0.75px solid var(--gold);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--forest) url('tuinkamer-avond.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(28, 42, 29, 0.82);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px);
  pointer-events: none;
}
.hero-logo,
.hero-tagline,
.hero h1,
.hero-sub,
.hero-cta { position: relative; z-index: 2; }

.hero-logo { margin-bottom: 52px; opacity: 0.95; }

.hero-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 0.75px solid rgba(245,240,232,0.4);
  padding: 14px 32px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-cta:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(245,240,232,0.3);
}
.hero-scroll span { width: 1px; height: 40px; background: var(--gold); opacity: 0.5; }

/* ===== KERN STRIP ===== */
.kern {
  background: var(--forest-dark);
  padding: 56px 40px;
}
.kern-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.kern-item { border-left: 1px solid rgba(184,151,90,0.3); padding-left: 28px; }
.kern-nr {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}
.kern-item h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 10px;
}
.kern-item p {
  font-size: 14px;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

/* ===== GEDEELD SECTION HELPERS ===== */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== DIENSTEN ===== */
.diensten { background: var(--off-white); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.dienst-card {
  background: #fff;
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.dienst-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.dienst-icon {
  color: var(--gold);
  margin-bottom: 24px;
}
.dienst-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 14px;
}
.dienst-card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* ===== VERHAAL ===== */
.verhaal { background: var(--gray-light); }
.verhaal-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.verhaal-foto { text-align: center; }
.verhaal-portret-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.verhaal-portret-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}
.verhaal-portret-frame img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  display: block;
}
.verhaal-foto figcaption strong {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--forest);
  margin-bottom: 4px;
}
.verhaal-foto figcaption span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.verhaal-tekst .section-label { text-align: left; }
.verhaal-tekst h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 28px;
}
.verhaal-tekst p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}
.verhaal-tekst blockquote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--forest);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 28px;
}

/* Tijdlijn */
.verhaal-tijdlijn { display: flex; flex-direction: column; gap: 32px; }
.tijdlijn-item {
  padding-left: 20px;
  border-left: 1px solid rgba(184,151,90,0.35);
  position: relative;
}
.tijdlijn-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.tijdlijn-jaar {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.tijdlijn-item h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
}
.tijdlijn-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== WERKWIJZE ===== */
.werkwijze { background: var(--forest); }
.werkwijze .section-label { color: var(--gold); }
.werkwijze .section-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 56px;
}
.werkwijze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.werkwijze-stap {
  background: rgba(255,255,255,0.05);
  padding: 36px 28px;
  border-top: 1px solid rgba(184,151,90,0.25);
}
.stap-nr {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.werkwijze-stap h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 12px;
}
.werkwijze-stap p { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.75; }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--off-white); }
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.portfolio-header .section-label { text-align: left; margin-bottom: 12px; }
.portfolio-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
}
.btn-outline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  border: 0.75px solid var(--forest);
  padding: 12px 28px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--forest); color: var(--off-white); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--gray);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.92) saturate(0.9);
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,42,29,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  background: none;
  border: 0.75px solid rgba(245,240,232,0.5);
  padding: 8px 20px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.portfolio-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,42,29,0.96);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
  gap: 24px;
}
.lightbox-img {
  max-height: 65vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.lightbox-info { text-align: center; }
.lightbox-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 8px;
}
.lightbox-desc { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.7; max-width: 560px; }
.lightbox-counter { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; display: block; margin-top: 8px; }
.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  font-size: 36px;
  color: rgba(245,240,232,0.6);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  font-size: 48px;
  color: rgba(245,240,232,0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

/* ===== FAQ ===== */
.faq { background: var(--gray-light); }
.faq .section-header { margin-bottom: 48px; }
.faq .section-header h2 { color: var(--forest); }
.faq-lijst { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(44,62,45,0.12); }
.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { width: 8px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 8px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-vraag[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-antwoord {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-antwoord > div {
  overflow: hidden;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 22px;
}

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-label { text-align: left; }
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.25;
}
.contact-info > p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.contact-details svg { color: var(--gold); flex-shrink: 0; }
.contact-details a { color: var(--text); transition: color 0.2s; }
.contact-details a:hover { color: var(--gold); }

.contact-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-whatsapp, .btn-instagram, .btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 0.75px solid;
  transition: background 0.2s, color 0.2s;
}
.btn-whatsapp { color: #25D366; border-color: #25D366; }
.btn-whatsapp:hover { background: #25D366; color: #fff; }
.btn-instagram { color: #C13584; border-color: #C13584; }
.btn-instagram:hover { background: #C13584; color: #fff; }
.btn-facebook { color: #1877F2; border-color: #1877F2; }
.btn-facebook:hover { background: #1877F2; color: #fff; }

/* Formulier */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--gray);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 130px; resize: vertical; }
.btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--forest);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--forest-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-dark);
  padding: 40px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 64px 24px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .kern-inner { grid-template-columns: 1fr; gap: 28px; }
  .diensten-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .verhaal-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .verhaal-foto { grid-column: 1 / -1; text-align: center; }
  .werkwijze-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .werkwijze-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .verhaal-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .partner-inner { flex-direction: column; text-align: center; }
  .partner-logo img { max-width: 180px; }

  /* Nav: logo verbergen, alleen WhatsApp + CTA-knop rechts */
  .nav-logo { display: none; }
  .nav { justify-content: flex-end; padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-cta { font-size: 9px; padding: 8px 12px; letter-spacing: 0.07em; white-space: nowrap; }

  /* Hero SVG responsive */
  .hero-logo { width: 100vw; max-width: 520px; }
}

/* ============================================
   PARTNER STRIP
   ============================================ */
.partner-strip {
  background: var(--forest-dark);
  border-top: 1px solid rgba(184,151,90,0.2);
  border-bottom: 1px solid rgba(184,151,90,0.2);
  padding: 64px 24px;
}
.partner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.partner-logo img {
  max-width: 220px;
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 16px 24px;
  box-sizing: border-box;
}
.partner-tekst { flex: 1; }
.partner-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold);
  margin: 0 0 12px;
}
.partner-tekst h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0 0 14px;
  line-height: 1.3;
}
.partner-tekst p {
  font-size: 15px;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin: 0 0 24px;
}
.partner-btn {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.partner-btn:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* Footer credit */
.footer-credit {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  margin: 6px 0 0;
  text-align: center;
}
.footer-credit a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--gold); }
