/* Starlit Golden Retrievers — modern static rebuild */

:root {
  --cream:      #fdfaf3;
  --cream-2:    #f6efe1;
  --cream-3:    #f0e6d2;

  /* Brand "pop" colors — from the original logo: cyan script + gold star */
  --teal:       #0bb4d4;   /* vibrant brand cyan */
  --teal-deep:  #0a7d95;   /* darker cyan for text/links on light */
  --teal-soft:  #e3f6fb;   /* soft cyan tint for section backgrounds */
  --cyan-bright:#45d4ef;   /* bright cyan for use on dark surfaces */

  --gold:       #edaa28;   /* brightened brand gold (accents/icons/highlights) */
  --gold-deep:  #b07d17;   /* darker gold for text + button gradients */
  --gold-soft:  #f6d488;

  --ink:        #23292b;   /* dark text (slightly cool) */
  --ink-soft:   #45504f;
  --muted:      #6c736f;
  --line:       rgba(20, 35, 38, .10);

  --dark:       #0e2a31;   /* deep teal surface: header / footer / topbar / heroes */
  --dark-2:     #0a2127;

  --white:      #ffffff;
  --shadow-sm:  0 1px 2px rgba(14,35,38,.06), 0 6px 18px rgba(14,35,38,.07);
  --shadow-md:  0 2px 6px rgba(14,35,38,.08), 0 18px 40px rgba(14,35,38,.13);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1180px;
  --font-head:  "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

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

a { color: var(--teal-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}

.text-center { text-align: center; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #e3a526 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(176,125,23,.30);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176,125,23,.40); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20,35,38,.22);
}
.btn--ghost:hover { color: var(--teal-deep); border-color: var(--teal); background: rgba(11,180,212,.08); transform: translateY(-2px); }
.btn--light {
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.btn--light:hover { color: var(--ink); background: #fff; transform: translateY(-2px); }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--dark);
  color: #eaf6f4;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  padding: 9px 16px;
}
.topbar .dot { color: var(--gold); }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Solid background (no backdrop-filter): a filter here would make the
     fixed mobile menu position relative to the header instead of the viewport. */
  background: var(--dark);
  border-bottom: 1px solid rgba(11, 180, 212, .22);
  box-shadow: 0 4px 22px rgba(0, 0, 0, .18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 96px;
}
.nav__logo img { height: 68px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 10px; }
@media (max-width: 560px) { .nav { height: 80px; } .nav__logo img { height: 56px; } }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ece2d0;
  font-weight: 700;
  font-size: 15px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(231,201,135,.14); }
.nav__links a[aria-current="page"] { color: var(--gold-soft); background: rgba(231,201,135,.16); }
.nav__cta { margin-left: 14px; }
.nav__cta .btn { padding: 11px 22px; font-size: 14px; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #f0e6d4;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle span + span { margin-top: 6px; }
.nav.is-open .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--cream);
    box-shadow: -10px 0 40px rgba(44,38,32,.18);
    transform: translateX(100%);
    transition: transform .28s ease;
    padding: 96px 26px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  /* Drawer has a light background, so links must be dark (overrides the
     light-on-dark colors used by the desktop header). */
  .nav__links a { padding: 13px 16px; font-size: 17px; border-radius: 12px; color: var(--ink); }
  .nav__links a:hover { color: var(--gold-deep); background: rgba(196,145,47,.12); }
  .nav__links a[aria-current="page"] { color: var(--gold-deep); background: rgba(196,145,47,.16); }
  .nav__cta { margin: 14px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(20,16,12,.45);
    opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 40;
  }
  .nav.is-open ~ .nav-backdrop, body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 76vh;
  padding: 90px 0;
  background: var(--dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,28,33,.86) 0%, rgba(10,33,39,.58) 46%, rgba(12,42,49,.28) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 640px; }
.hero__eyebrow { color: var(--cyan-bright); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-bottom: .2em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: #f3e8d4;
  font-weight: 600;
  margin-bottom: .8em;
}
.hero__lead { color: #ece2d2; font-size: 1.06rem; margin-bottom: 2em; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--cream { background: var(--cream-2); }
.section--gold {
  background: linear-gradient(135deg, var(--cream-3) 0%, var(--cream-2) 100%);
}
.section--teal {
  background: linear-gradient(160deg, var(--teal-soft) 0%, #f3fbfc 100%);
}
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section__head--left { margin-left: 0; text-align: left; }

/* ---------- Welcome / intro split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media--portrait img { aspect-ratio: 3 / 4; }
.split h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.split p { color: var(--ink-soft); }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Feature grid (What we offer) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(11,180,212,.28);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.22rem; margin-bottom: .35em; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat__num { font-family: var(--font-head); font-size: 2.4rem; color: var(--teal-deep); font-weight: 600; line-height: 1; }
.stat__label { color: var(--muted); font-weight: 700; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; } }

/* ---------- Gallery ---------- */
.gallery {
  columns: 4 240px;
  column-gap: 16px;
}
.gallery a {
  display: block;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream-3);
}
.gallery img {
  width: 100%;
  transition: transform .4s ease;
}
.gallery a:hover img { transform: scale(1.05); }

/* ---------- Dog cards (Our Dogs) ---------- */
.dogs { display: flex; flex-direction: column; gap: 30px; }
.dog {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dog__head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.dog__name { font-size: 1.7rem; margin: 0; }
.dog__tag {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.dog__tag--retired { background: #efe7d8; color: var(--muted); }
.dog__tag--mom { background: #f6dde6; color: #a23d6a; }
.dog__tag--dad { background: #d9e8f4; color: #2f6da0; }
.dog__tag--active { background: rgba(196,145,47,.16); color: var(--gold-deep); }
.dog__photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px;
  padding: 4px;
}
.dog__photos a { display: block; overflow: hidden; }
.dog__photos img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .4s ease;
}
.dog__photos a:hover img { transform: scale(1.05); }

/* ---------- Parents (Available puppies) ---------- */
.parents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 18px;
}
.parent {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.parent img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.parent__body { padding: 20px 24px; }
.parent__role { font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }
.parent__name { font-size: 1.5rem; margin: 4px 0 0; }
@media (max-width: 700px) { .parents { grid-template-columns: 1fr; } }

/* ---------- Info cards ---------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 760px) { .cards-2 { grid-template-columns: 1fr; } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.4rem; }
.card p { color: var(--ink-soft); }
.price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: 6px 0 16px;
}
.price__amt { font-family: var(--font-head); font-size: 2.4rem; color: var(--gold-deep); font-weight: 600; }
.price__note { color: var(--muted); font-size: .95rem; }

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding: 9px 0 9px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute; left: 4px; top: 14px;
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}
.checklist li strong { color: var(--ink); }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 820px){ .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
}
.quote p { font-family: var(--font-head); font-size: 1.2rem; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.quote cite { color: var(--gold-deep); font-weight: 800; font-style: normal; font-size: .92rem; letter-spacing: .03em; }
.quote-banner {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--gold-deep);
  font-style: italic;
  margin-top: 48px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #114a56 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0 64px;
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .25em; }
.page-hero p { color: #d4eaef; font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--cyan-bright); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-info h3 { font-size: 1.5rem; }
.contact-list { list-style: none; margin: 18px 0 0; padding: 0; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(11,180,212,.13); color: var(--teal-deep);
  display: grid; place-items: center;
}
.contact-list .ci svg { width: 21px; height: 21px; }
.contact-list .cl { font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-list .cv { font-weight: 700; color: var(--ink); }
.contact-list .cv a { color: var(--ink); }
.contact-list .cv a:hover { color: var(--teal-deep); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: 13.5px; letter-spacing: .03em; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid rgba(20,35,38,.16);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11,180,212,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--error input, .field--error textarea { border-color: #c0392b; background: #fdf3f2; }
.field__error { color: #c0392b; font-size: 13px; font-weight: 700; margin-top: 6px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-weight: 700; }
.form-msg--err { background: #fdecea; color: #b03024; }
.form-msg--ok { background: #eaf6ec; color: #1f7a34; }
.form-success { text-align: center; padding: 24px 8px; }
.form-success__icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: #fff;
  font-size: 34px;
}
.form-success h3 { font-size: 1.5rem; }
.form-note { color: var(--muted); font-size: .9rem; margin-top: 14px; }

.callout {
  margin-top: 40px;
  background: var(--cream-3);
  border-radius: var(--radius);
  padding: 28px 30px;
  border-left: 5px solid var(--gold);
}
.callout h3 { font-size: 1.3rem; }
.callout p { color: var(--ink-soft); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #d6f2f8 0%, #eef9fb 100%);
  color: var(--ink-soft);
  text-align: center;
  padding: 70px 0;
  border-top: 1px solid rgba(11,180,212,.18);
  border-bottom: 1px solid rgba(11,180,212,.18);
}
.cta-band h2 { color: var(--ink); font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-band p { color: var(--ink-soft); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
/* Gold button so the CTA still pops on the light-blue band (gold star on cyan). */
.cta-band .btn--light {
  background: linear-gradient(135deg, #e3a526 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(176,125,23,.30);
}
.cta-band .btn--light:hover { color: #fff; background: linear-gradient(135deg, #eaad2e 0%, #b5811a 100%); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #c4d4d3; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.site-footer img.flogo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .92; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-body); font-weight: 800; margin-bottom: 14px; }
.site-footer p { color: #b8ac99; font-size: .96rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #d9cfbf; font-weight: 600; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-contact a { color: #f0e6d4; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .86rem; color: #9b8f7c;
}
.footer-bottom a { color: #9b8f7c; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }

/* ---------- Exioite credit ---------- */
.exioite-credit {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.exioite-credit__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  opacity: .82;
  transition: opacity .15s ease;
}
.exioite-credit__link:hover { opacity: 1; }
.exioite-credit__caption {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.exioite-credit__logo {
  display: block;
  height: 34px;
  width: auto;
}
.exioite-credit__sep { color: rgba(255,255,255,.3); }
.exioite-credit__url {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}
@media (max-width: 480px) {
  .exioite-credit__logo { height: 28px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,15,9,.92);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer;
  font-size: 26px; line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: 0; cursor: pointer;
  font-size: 30px; line-height: 1; display: grid; place-items: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
@media (max-width: 600px) { .lightbox__nav { display: none; } }

/* ---------- Misc ---------- */
.prose p { color: var(--ink-soft); }
.prose { max-width: 760px; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.divider-paw { text-align: center; color: var(--gold-soft); font-size: 1.4rem; margin: 8px 0 0; letter-spacing: .4em; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; padding: 70px 0; }
}
