/* ============================================
   TOLLELITE K9 — Global Stylesheet
   Mobile-first. Brand: navy/silver/white.
   ============================================ */

/* Fonts loaded via HTML link tags in head for performance */

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

:root {
  --ink:       #0C0F1A;
  --navy:      #111827;
  --navy-2:    #1A2540;
  --silver:    #C8D0DC;
  --silver-lt: #E8ECF4;
  --white:     #F5F7FA;
  --pure:      #FFFFFF;
  --accent:    #4A6A9A;
  --accent-lt: #6A8ABE;
  --muted:     #6A7888;
  --muted-lt:  #98A8B8;
  --warm:      #F2F4F8;
  --linen:     #DDE2EC;
  --body-size: 15px;
  --radius:    2px;
}

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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: var(--body-size);
  line-height: 1.75;
  color: var(--navy);
  background: var(--white);
  overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY SYSTEM ── */

/* Display — Cormorant serif, used for all major headings */
.t-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* Scripture — italic Cormorant for key words, emotionally warm */
.t-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.t-script-light {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--silver-lt);
}

/* Eyebrow labels */
.t-label {
  font-family: 'Raleway', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-label-light {
  font-family: 'Raleway', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 1;
}

/* Body copy */
.t-body {
  font-size: 15px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.9;
}
.t-body-light {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
}

/* Section label with rule */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}
.section-label.light::before { background: var(--silver); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pure);
  color: var(--ink);
  padding: 15px 36px;
}
.btn-primary:hover {
  background: var(--silver-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-dark {
  background: var(--navy);
  color: var(--pure);
  padding: 15px 36px;
}
.btn-dark:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 15px 0;
  letter-spacing: 0.2em;
}
.btn-outline:hover { color: var(--pure); }
.btn-outline .arr { transition: transform 0.25s; }
.btn-outline:hover .arr { transform: translateX(4px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(12,15,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-emblem {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-emblem svg { width: 20px; height: 20px; }
.nav-emblem img { width: 100%; height: 100%; object-fit: contain; }

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.nav-wordmark small {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.55;
  margin-top: 4px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.nav-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 68px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
  z-index: 99;
}
.nav-menu.open { transform: translateX(0); }
.nav-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  padding: 10px 0;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--pure); }
.nav-menu .menu-cta {
  margin-top: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--pure);
  color: var(--ink);
  padding: 14px 36px;
  border-radius: 1px;
}

/* Desktop nav links (hidden on mobile) */
.nav-links-desktop {
  display: none;
}

/* ── PHOTO PLACEHOLDER ── */
/* Used everywhere an image will go — clearly marked for Laura */
.photo-slot {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,37,64,0.9) 0%,
    rgba(74,106,154,0.15) 50%,
    rgba(12,15,26,0.8) 100%);
}
.photo-slot-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: linear-gradient(to top, rgba(12,15,26,0.8), transparent);
  z-index: 2;
}
.photo-slot-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  text-align: center;
  z-index: 2;
}
.photo-slot-icon svg { width: 28px; height: 28px; opacity: 0.18; margin: 0 auto 8px; }
.photo-slot-icon p {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.45;
  margin-top: 5px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--silver-lt); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-credit { opacity: 0.7; }
.footer-credit a {
  color: rgba(200,208,220,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(200,208,220,0.75); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   DESKTOP (768px+)
══════════════════════════════════════════ */
@media (min-width: 768px) {
  section { padding: 110px 0; }
  .container { padding: 0 48px; }
  .nav { padding: 0 48px; }

  .nav-toggle { display: none; }
  .nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links-desktop a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
  }
  .nav-links-desktop a:hover { color: var(--silver-lt); }
  .nav-cta-desktop {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--pure);
    color: var(--ink);
    padding: 10px 22px;
    border-radius: 1px;
    transition: all 0.25s;
  }
  .nav-cta-desktop:hover { background: var(--silver-lt); }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-links { flex-direction: row; gap: 28px; }
  .footer-copy { width: 100%; }
}

@media (min-width: 1024px) {
  .container { padding: 0 64px; }
  .nav { padding: 0 64px; }
}

/* ══ UNDERSTAND ══ */
.understand {
  background: var(--navy);
  padding: 72px 0;
}
.understand-inner {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.understand-head {}
.understand-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.0;
  color: var(--pure);
  margin-bottom: 16px;
}
.script-light {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: rgba(234,216,176,0.75);
  display: block;
}
.u-cards { display: flex; flex-direction: column; gap: 0; }
.u-card {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.u-card:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.u-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  width: 34px;
  line-height: 1.3;
}
.u-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 6px;
}
.u-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
}

/* ══ SERVICES TEASER ══ */
.services-teaser {
  background: var(--white);
  padding: 72px 0;
}
.services-head { margin-bottom: 48px; }
.services-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 14px;
}
.script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  display: block;
}

.svc-list { display: flex; flex-direction: column; gap: 1px; background: var(--linen); border: 1px solid var(--linen); }
.svc-item {
  background: var(--white);
  padding: 30px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s;
  cursor: pointer;
}
.svc-item:hover { background: var(--warm); }
.svc-item-l { display: flex; gap: 20px; align-items: flex-start; }
.svc-item-n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
}
.svc-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.svc-item p {
  font-size: 13px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.75;
}
.svc-arr {
  font-size: 18px;
  color: var(--linen);
  flex-shrink: 0;
  transition: color 0.25s, transform 0.25s;
  margin-left: 16px;
}
.svc-item:hover .svc-arr { color: var(--accent); transform: translate(3px,-3px); }
.svc-cta { margin-top: 36px; }

/* ══ GALLERY STRIP ══ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 200px;
  background: var(--ink);
}
.gs-item {
  position: relative;
  overflow: hidden;
}
.gs-item .photo-slot {
  height: 100%;
  transition: transform 0.5s ease;
}
.gs-item:hover .photo-slot { transform: scale(1.04); }
.gs-item--desktop { display: none; }
.gs-scene-1 { background: linear-gradient(155deg,#162040 0%,#0E1828 60%,#1C2E18 100%); }
.gs-scene-2 { background: linear-gradient(155deg,#0E1628 0%,#142038 60%,#182816 100%); }
.gs-scene-3 { background: linear-gradient(155deg,#1A2840 0%,#0C1820 60%,#203020 100%); }

/* ══ TESTIMONIALS ══ */
.testimonials {
  background: var(--warm);
  padding: 72px 0;
}
.testi-head { margin-bottom: 44px; }
.testi-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 52px);
  line-height: 1.0;
  color: var(--navy);
}
.tcard-list { display: flex; flex-direction: column; gap: 20px; }
.tcard {
  background: var(--pure);
  border: 1px solid var(--linen);
  border-radius: 2px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.tcard::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  position: absolute;
  top: 4px; right: 14px;
}
.tcard-stars { color: #D4A945; font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.tcard-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px solid var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.tcard-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.tcard-dog { font-size: 11px; color: var(--muted-lt); margin-top: 1px; }

/* Read-more collapse */
.tcard-collapsible {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tcard-collapsible.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.tcard-text-wrap { position: relative; }
.tcard-readmore {
  background: none;
  border: none;
  padding: 4px 0 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  display: block;
}
.tcard-readmore:hover { opacity: 0.7; }

/* ══ CONTACT ══ */
.contact { background: var(--ink); padding: 72px 0; }
.contact-head { margin-bottom: 48px; }
.contact-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 52px);
  line-height: 1.0;
  color: var(--pure);
  margin-bottom: 14px;
}
.contact-grid { display: flex; flex-direction: column; gap: 52px; }
.contact-details { display: flex; flex-direction: column; gap: 0; }
.cdet { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cdet:last-child { border: none; }
.cdet-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(234,216,176,0.5);
  margin-bottom: 5px;
}
.cdet-val { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.90); }
.cdet-val a { color: inherit; transition: color 0.2s; }
.cdet-val a:hover { color: rgba(255,255,255,0.8); }

.contact-form { display: flex; flex-direction: column; }
.fg { margin-bottom: 22px; }
.flbl {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.fi, .fsel, .fta {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--pure);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.fi:focus, .fsel:focus, .fta:focus {
  border-color: rgba(234,216,176,0.3);
  background: rgba(255,255,255,0.05);
}
.fi::placeholder, .fta::placeholder { color: rgba(255,255,255,0.68); }
.fsel option { background: var(--navy); }
.fta { resize: none; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-notice {
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  font-style: italic;
  margin-top: 12px;
}
.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-msg.success { background: rgba(74,154,100,0.12); border: 1px solid rgba(74,154,100,0.25); color: #7ADAA0; }
.form-msg.error   { background: rgba(200,80,80,0.1); border: 1px solid rgba(200,80,80,0.2); color: #F0A0A0; }

/* ── ABOUT SECTION TEXT ── */
.about-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(34px, 6.5vw, 56px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-h2 .script {
  display: block;
  font-weight: 300;
}
.stat-row {
  display: flex;
  margin: 32px 0;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  padding: 24px 0;
}
.stat-item {
  flex: 1;
  border-right: 1px solid var(--linen);
  padding-right: 20px;
  margin-right: 20px;
}
.stat-item:last-child { border: none; margin: 0; padding: 0; }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1;
}
.stat-l {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-top: 4px;
}
.bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.bullet {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.bullet::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Only hide gs-reveal elements when JS has run — prevents blank pages */
.js-ready .gs-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* ══ DESKTOP UPGRADES ══ */
@media (min-width: 768px) {
  .understand { padding: 110px 0; }
  .understand-inner { flex-direction: row; gap: 80px; align-items: start; }
  .understand-head { flex: 0 0 40%; }

  .services-teaser { padding: 110px 0; }
  .gallery-strip { grid-template-columns: repeat(5,1fr); height: 260px; }
  .gs-item--desktop { display: block; }

  .testimonials { padding: 110px 0; }
  .tcard-list { display: grid; grid-template-columns: repeat(3,1fr); }

  .contact { padding: 110px 0; }
  .contact-grid { flex-direction: row; gap: 80px; align-items: start; }
  .contact-details { flex: 0 0 360px; }
}


/* ══ CREDENTIAL BAND ══ */
.cred-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #080C14;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cred-band-item {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cred-band-item:last-child { border-right: none; }

/* Hover underline sweep */
.cred-band-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 44px;
  width: 0; height: 1px;
  background: linear-gradient(to right, rgba(200,215,240,0.35), transparent);
  transition: width 0.45s ease;
}
.cred-band-item:hover { background: rgba(255,255,255,0.018); }
.cred-band-item:hover::after { width: 60%; }

.cred-band-sep { display: none; }

/* Big number */
.cred-n {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.cred-star {
  font-size: 0.45em;
  color: #C4D0E4;
  opacity: 0.55;
  margin-right: 2px;
}

/* Spaced label beneath */
.cred-l {
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(190, 208, 230, 0.25);
}

@media (max-width: 767px) {
  .cred-band { grid-template-columns: 1fr 1fr; }
  .cred-band-item {
    padding: 36px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .cred-band-item:nth-child(3),
  .cred-band-item:nth-child(4) { border-bottom: none; }
  .cred-n { font-size: clamp(40px, 9vw, 56px); }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .cred-band-item { padding: 44px 32px; }
}

/* ══ PARALLAX BREATHER ══ */
.parallax-break {
  position: relative;
  height: 60vh;
  min-height: 320px;
  overflow: hidden;
}

.parallax-img {
  position: absolute;
  inset: -25% 0;
  background-size: cover;
  background-position: center;
  background-image: url('../images/parallax-bg.jpg');
  will-change: transform;
}

/* Overlay fades from dark top → near-white bottom */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 20, 0.55) 0%,
    rgba(8, 12, 20, 0.20) 40%,
    rgba(245, 245, 242, 0.65) 85%,
    rgba(245, 245, 242, 0.95) 100%
  );
}

/* ══ CINEMATIC ABOUT ENTRANCE ══ */
/* About section starts invisible — GSAP drives it in */
.about-teaser {
  clip-path: inset(8% 0% 0% 0%);
}

/* ══ COOKIE BANNER ══ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(8, 11, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 215, 240, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
#cookie-banner.ck-visible {
  transform: translateY(0);
}
#cookie-banner.ck-hidden {
  transform: translateY(100%);
}

.ck-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ck-text {
  flex: 1;
  min-width: 260px;
}
.ck-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(200, 215, 235, 0.6);
  margin: 0 0 4px;
}
.ck-text p strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.ck-link {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(200,215,240,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,215,240,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.ck-link:hover {
  color: rgba(200,215,240,0.7);
  border-bottom-color: rgba(200,215,240,0.3);
}

.ck-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ck-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 1px;
}

.ck-decline {
  background: transparent;
  color: rgba(200,215,240,0.4);
  border: 1px solid rgba(200,215,240,0.12);
}
.ck-decline:hover {
  color: rgba(200,215,240,0.75);
  border-color: rgba(200,215,240,0.25);
}

.ck-accept {
  background: #FFFFFF;
  color: #080B14;
}
.ck-accept:hover {
  background: #DCE8F4;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .ck-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px 28px;
  }
  .ck-actions { width: 100%; }
  .ck-btn { flex: 1; text-align: center; }
}

/* ══ FORM CHECKBOX — T&C ══ */
.fg-check { margin-top: 4px; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.check-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(74,106,154,0.3);
  background: transparent;
  border-radius: 2px;
  transition: all 0.2s ease;
  position: relative;
}
.check-box::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.check-label input:checked ~ .check-box {
  background: var(--navy);
  border-color: var(--navy);
}
.check-label input:checked ~ .check-box::after {
  border-color: #fff;
  transform: rotate(45deg) scale(1);
}
.check-label:hover .check-box {
  border-color: var(--accent);
}
.check-label input:focus ~ .check-box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Error state */
.check-label.error .check-box {
  border-color: #C0392B;
}

.check-text {
  font-family: 'Raleway', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}
.check-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(74,106,154,0.2);
  transition: border-color 0.2s;
}
.check-text a:hover { border-bottom-color: var(--accent); }

/* Section entrance prep — GSAP sets opacity:0 via fromTo, not CSS */

/* ══ INSTAGRAM NAV ICON ══ */
.nav-insta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
  padding: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-insta:hover { color: rgba(255,255,255,0.9); }
.nav-insta::after {
  content: 'Instagram';
}

.menu-insta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-insta::before {
  content: '';
  display: inline-block;
    position: relative;
  top: 1px;
width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='0.5' fill='white' stroke='none'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.6;
}

/* Footer Instagram link */
.footer-links a[href*="instagram"] {
  color: rgba(255,255,255,0.35);
}
.footer-links a[href*="instagram"]:hover {
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   IMAGE SLOTS — all paths root-relative
   so they work on Hostinger public_html
   ══════════════════════════════════════════ */

/* ── HERO ── */
/* hero.css .hero-scene already handles this */

/* ── ABOUT SECTION (index.html) ── */
.about-photo-main.photo-slot {
  background-image: url('../images/laura-portrait.jpg');
  background-size: cover;
  background-position: center 20%; /* Laura's face/torso at Crufts */
}
.about-photos-row .about-photo-sm.photo-slot:first-child {
  background-image: url('../images/training-action.jpg');
  background-size: cover;
  background-position: center 60%; /* dog and handler — lower focus */
}
.about-photos-row .about-photo-sm.photo-slot:last-child {
  background-image: url('../images/laura-dogs.jpg');
  background-size: cover;
  background-position: center 30%; /* Rottweiler face */
}

/* ── GALLERY STRIP (index.html) ── */
.gs-scene-1 {
  background-image: url('../images/gallery-1.jpg') !important;
  background-size: cover;
  background-position: center 60%; /* lower focus — show full figure */
}
.gs-scene-2 {
  background-image: url('../images/gallery-2.jpg') !important;
  background-size: cover;
  background-position: center 30%; /* Laura + GSD, keep faces */
}
.gs-scene-3 {
  background-image: url('../images/gallery-3.jpg') !important;
  background-size: cover;
  background-position: center 40%; /* GSD mid-stride */
}

/* ── ABOUT PAGE (about.html) ── */
.laura-main-photo.photo-slot {
  background-image: url('../images/laura-about-main.jpg');
  background-size: cover;
  background-position: center 15%; /* Laura's face prominent */
}
.pr-scene-1 {
  background-image: url('../images/training-action.jpg') !important;
  background-size: cover;
  background-position: center 60%;
}
.pr-scene-2 {
  background-image: url('../images/laura-dogs-row.jpg') !important;
  background-size: cover;
  background-position: center 40%; /* sleeping dogs */
}

/* ── SERVICES PAGE (services.html) ── */
.sp-1 {
  background-image: url('../images/svc-structured-solo.jpg') !important;
  background-size: cover;
  background-position: center 20%; /* lower — show full figure with dog */
}
.sp-2 {
  background-image: url('../images/svc-group-walk.jpg') !important;
  background-size: cover;
  background-position: center 60%; /* group walk — keep people + dogs */
}
.sp-3 {
  background-image: url('../images/svc-one-to-one.jpg') !important;
  background-size: cover;
  background-position: center 60%; /* Laura + dog faces */
}
.sp-4 {
  background-image: url('../images/svc-day-train.jpg') !important;
  background-size: cover;
  background-position: center 35%; /* GSD action shot */
}
.sp-5 {
  background-image: url('../images/svc-half-day-train.jpg') !important;
  background-size: cover;
  background-position: center 35%;
}
.sp-6 {
  background-image: url('../images/svc-puppy.jpg') !important;
  background-size: cover;
  background-position: center 35%; /* jumping GSD — keep head in frame */
}
.sp-7 {
  background-image: url('../images/svc-neutrality-walk.jpg') !important;
  background-size: cover;
  background-position: center 40%;
}
.sp-8 {
  background-image: url('../images/svc-group-walk.jpg') !important;
  background-size: cover;
  background-position: center 35%;
}
.sp-9 {
  background-image: url('../images/svc-solo-walk.jpg') !important;
  background-size: cover;
  background-position: center 80%;
}

/* Hide the placeholder icon/label once an image is set */
.about-photo-main.photo-slot .photo-slot-icon,
.about-photos-row .photo-slot .photo-slot-icon,
.laura-main-photo.photo-slot .photo-slot-icon,
.sp-1 .photo-slot-icon, .sp-2 .photo-slot-icon,
.sp-3 .photo-slot-icon, .sp-4 .photo-slot-icon,
.sp-5 .photo-slot-icon, .sp-6 .photo-slot-icon,
.sp-7 .photo-slot-icon, .sp-8 .photo-slot-icon,
.sp-9 .photo-slot-icon {
  display: none;
}

/* ══ CONSULTATION BANNER ══ */
.svc-consult-banner {
  max-width: 1080px;
  margin: 0 auto 32px;
  background: var(--navy);
  border: 1px solid rgba(74,106,154,0.3);
  border-radius: 4px;
  overflow: hidden;
}
.svc-consult-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-consult-left {
  padding: 28px 28px 0;
}
.svc-consult-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 10px;
}
.svc-consult-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--pure);
  line-height: 1.1;
  margin-bottom: 10px;
}
.svc-consult-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--silver-lt);
}
.svc-consult-p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}
.svc-consult-right {
  padding: 24px 28px 28px;
}
.svc-consult-price-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}
.svc-consult-price-item {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
}
.svc-consult-price-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.svc-consult-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--pure);
  line-height: 1;
}
.svc-consult-price-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}
.svc-consult-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .svc-consult-inner {
    flex-direction: row;
    align-items: center;
  }
  .svc-consult-left {
    flex: 1;
    padding: 32px 32px 32px;
  }
  .svc-consult-right {
    flex: 0 0 280px;
    padding: 32px 32px 32px;
    border-left: 1px solid rgba(255,255,255,0.07);
  }
}

/* Gallery slots 4 & 5 — desktop only */
.gs-scene-4 {
  background-image: url('../images/gallery-4.jpg') !important;
  background-size: cover;
  background-position: center 30%; /* group walk from behind */
}
.gs-scene-5 {
  background-image: url('../images/gallery-5.jpg') !important;
  background-size: cover;
  background-position: center 25%; /* jumping puppy — keep in frame */
}

/* ── INSTAGRAM SECTION ── */
.insta-section {
  background: var(--ink);
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.insta-section-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.insta-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.insta-cta-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-bottom: 8px;
}
.insta-cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--pure);
  line-height: 1.05;
  margin: 0;
}
.insta-cta-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
}
.insta-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--pure) !important;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  margin-top: 4px;
  flex-shrink: 0;
}
.insta-cta-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
}
@media (min-width: 700px) {
  .insta-section-inner {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 52px 40px;
  }
  .insta-cta-text {
    flex: 1;
  }
  .insta-cta-btn {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .insta-section-inner {
    padding: 56px 80px;
  }
}

/* ── FLOATING INSTAGRAM BUTTON ── */
.insta-float {
  position: fixed !important;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: #fff !important;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 16px 10px 12px;
  border-radius: 100px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(188,24,136,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.insta-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(188,24,136,0.45);
}
.insta-float svg {
  flex-shrink: 0;
}

/* Essex local areas footer text */
.footer-areas {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
