/* Peaceful Dog Leadership — final polished stylesheet */

:root {
  --bg: #f6f6f4;
  --surface: #ffffff;
  --surface-alt: #efefeb;
  --ink: #222126;
  --muted: #5c5b61;
  --line: #ddd9d2;
  --accent: #000000;
  --accent-dark: #222222;
  --shadow: 0 18px 40px rgba(20, 18, 16, 0.08);
  --shadow-hero: 0 22px 48px rgba(20, 18, 16, 0.12);
  --radius: 22px;
  --wrap: min(1200px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, ul { margin: 0 0 1rem; }

h1, h2, h3, h4, h5, .price {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.15;
  margin: 0 0 .8rem;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.centered { text-align: center; }

.section {
  padding: 70px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
  font-size: 32px;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: .75rem;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

/* Header */
.site-header {
  position: relative;
  background: linear-gradient(180deg, #fbfaf7 0%, #f7f6f3 100%);
  border-bottom: 0;
}

.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 20px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  height: clamp(145px, 18vw, 230px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Clean nav */
.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 12px 16px 16px;
  background: linear-gradient(180deg, #f7f6f3 0%, #f5f4f1 100%);
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
}

.top-nav a {
  color: #111;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-nav a:hover {
  color: #000;
  transform: translateY(-1px);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Premium hero */
.hero {
  width: 100%;
  margin: 0;
  padding: 0 0 42px;
  background: linear-gradient(180deg, #f7f6f3 0%, #f4f3f0 55%, #f3f1ec 100%);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.08);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,246,243,0.10) 0%, rgba(247,246,243,0.02) 24%, rgba(0,0,0,0.08) 70%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.015);
}

.hero-panel {
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  padding: 42px clamp(20px, 4vw, 48px);
  margin-top: 10px;
  box-shadow: var(--shadow-hero);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(221, 217, 210, 0.72);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .hero-social {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
}

.fb-button {
  background: #1877f2;
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.fb-button:hover {
  background: #145dc1;
  transform: translateY(-2px);
}

.hero h1 {
  font-size: clamp(44px, 5vw, 5.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-copy {
  font-size: 1.2rem;
  max-width: 820px;
  color: #3d3b40;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 3px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: .2s ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border-color: #cfc8be;
}

.button-light:hover {
  background: #f1ede8;
}

/* Services */
.service-grid {
  display: grid;
  gap: 28px;
}

.service {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 30px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.service-text-first {
  grid-template-columns: 1fr 1.04fr;
}

.service-copy {
  padding: 8px 6px;
}

.service-copy h2 {
  font-size: clamp(26px, 2.5vw, 2.4rem);
  font-weight: 600;
}

.service-copy p {
  color: #3d3b40;
  font-size: 1.06rem;
}

.accent-line {
  color: var(--accent-dark);
  font-weight: 700;
}

.framed-photo {
  border-radius: 20px;
  overflow: hidden;
  background: none;
  min-height: 280px;
}

.framed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pricing */
.pricing-section {
  background: var(--surface-alt);
}

.pricing-section h2 {
  font-size: clamp(26px, 3.2vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
}

.price-group {
  margin-bottom: 50px;
}

.price-group > h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  color: var(--accent-dark);
  font-weight: 800;
}

.training-feature {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(219, 214, 206, .85);
  padding: 28px;
  min-height: 100%;
}

.training-side h4 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.training-side .price {
  margin-bottom: 1rem;
}

.training-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-photo {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ece7df;
  margin-bottom: 1rem;
}

.training-photo img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.boarding-group .training-photo img,
.dogs-life-group .training-photo img {
  height: 300px;
}

.training-guidelines h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-dark);
  margin-bottom: 0.7rem;
}

.training-guidelines {
  width: 100%;
  text-align: left; /* changed from center */
}

.training-guidelines ul {
  list-style: disc; /* adds real bullets */
  padding-left: 20px; /* spacing for bullets */
  margin: 0;
  color: #3f3d42;
}

.training-guidelines li {
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-section {
  background: #f8f6f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(26px, 3vw, 3rem);
  font-weight: 600;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  margin: 1.2rem 0 1.3rem;
}

.contact-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card-copy h3 {
  margin: 0 0 4px;
}

.contact-card-copy p {
  margin: 0;
  color: var(--muted);
}


.contact-visual {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: #ece7df;
}

.large-placeholder img {
  height: 260px;
  object-fit: contain;
  background: #f0efed;
}

.logo-panel {
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo-panel img {
  background: transparent;
  display: block;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: block;
  font-weight: 700;
  margin-bottom: .4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d2cb;
  border-radius: 14px;
  padding: .9rem 1rem;
  font: inherit;
  background: #fdfdfc;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: #1f1d22;
  color: #fff;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .top-nav {
    gap: 24px;
    padding: 10px 12px 14px;
    flex-wrap: wrap;
  }

  .top-nav a {
    font-size: 17px;
  }

  .service,
  .service-text-first,
  .contact-grid,
  .training-feature {
    grid-template-columns: 1fr;
  }

  .training-center {
    order: 2;
  }

  .training-right {
    order: 3;
  }

  .hero-media {
    height: 360px;
  }

  .training-photo img,
  .boarding-group .training-photo img,
  .dogs-life-group .training-photo img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .header-bar {
    padding: 12px 0 6px;
  }

  .brand-logo {
    height: 112px;
  }

  .top-nav {
    gap: 16px;
  }

  .top-nav a {
    font-size: 16px;
  }

  .hero-media {
    height: 300px;
  }

  .hero-media img {
    object-position: center 18%;
  }

  .hero-panel {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .service,
  .contact-form {
    padding: 18px;
  }

  .training-side p {
    font-size: 15px;
  }

  .contact-card-bar {
    align-items: flex-start;
  }

}


/* Paw cursor */
body,
body a,
body button,
body input,
body textarea,
body select,
body label {
  cursor: none;
}

.no-custom-cursor body,
.no-custom-cursor body a,
.no-custom-cursor body button,
.no-custom-cursor body input,
.no-custom-cursor body textarea,
.no-custom-cursor body select,
.no-custom-cursor body label {
  cursor: auto;
}

.paw-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-18px, -16px) scale(1) rotate(-10deg);
  transform-origin: 50% 50%;
  background: url("images/paw-cursor-64.png") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.22));
  transition: opacity 0.18s ease, transform 0.14s ease;
  animation: paw-float 1.5s ease-in-out infinite alternate;
  will-change: left, top, transform;
}

.paw-cursor.is-visible {
  opacity: 1;
}

.paw-cursor--active {
  transform: translate(-18px, -16px) scale(1.12) rotate(0deg);
}

.paw-cursor--pressed {
  transform: translate(-18px, -16px) scale(0.92) rotate(6deg);
}

@keyframes paw-float {
  from {
    margin-top: 0;
  }
  to {
    margin-top: -3px;
  }
}

@media (hover: none), (pointer: coarse) {
  body,
  body a,
  body button,
  body input,
  body textarea,
  body select,
  body label {
    cursor: auto;
  }

  .paw-cursor {
    display: none;
  }
}


/* =========================
   MOBILE IMPROVEMENTS (SAFE)
   ========================= */

@media (max-width: 900px) {
  .service,
  .service-text-first {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .service-media {
    order: 1;
  }

  .service-copy {
    order: 2;
    padding: 2px 2px 0;
  }

  .framed-photo {
    min-height: 0;
    border-radius: 18px;
  }

  .framed-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
  }

  .service-copy h2 {
    margin-bottom: 0.65rem;
  }

  .service-copy p:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .service,
  .service-text-first {
    gap: 16px;
    padding: 16px;
  }

  .framed-photo img {
    height: 220px;
  }

  .service-copy h2 {
    font-size: 1.75rem;
  }

  .service-copy p {
    font-size: 15px;
    line-height: 1.55;
  }
}


.social-inline-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.instagram-inline-link,
.facebook-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.instagram-inline-link {
  background: linear-gradient(45deg, #fdf497 0%, #fd5949 34%, #d6249f 68%, #285AEB 100%);
  color: #ffffff;
}

.instagram-inline-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(214, 36, 159, 0.35);
}

.facebook-inline-link {
  background: #1877f2;
  color: #ffffff;
}

.facebook-inline-link:hover {
  background: #145dc1;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.35);
}

.instagram-inline-icon,
.facebook-inline-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.instagram-inline-icon svg,
.facebook-inline-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .social-inline-links {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }

  .instagram-inline-link,
  .facebook-inline-link {
    white-space: normal;
  }
}
