/* =============================================
   BESTK9 — style.css
   Dark premium design inspired by reference
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark: #1a1a1a;
  --darker: #111111;
  --darkest: #0a0a0a;
  --mid: #2b2b2b;
  --border: #333333;
  --gold: #c9a85c;
  --gold-light: #e2c47a;
  --white: #ffffff;
  --off-white: #e8e4df;
  --text-dim: #999999;
  --text-muted: #666666;
  --overlay-text: rgba(255, 255, 255, 0.06);
  --transition: 0.35s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--darker);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

.section-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:hover {
  color: var(--darkest);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-solid {
  background: var(--gold);
  color: var(--darkest);
  border: 1px solid var(--gold);
}

.btn-solid::after {
  background: transparent;
  border: 1px solid var(--gold);
}

.btn-solid:hover {
  color: var(--gold);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--darkest);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.top-bar-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--off-white);
  transition: color var(--transition);
}

.top-bar-phone:hover {
  color: var(--gold);
}

.top-bar-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .logo-main {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo-text .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--darkest);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.mobile-menu.open {
  max-height: 450px;
  padding: 12px 0 20px;
}

.mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 32px;
}

.mobile-menu .mobile-cta {
  margin: 16px 24px 0;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--darkest);
}

/* Big decorative text behind everything */
.hero-bg-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(160px, 28vw, 380px);
  font-weight: 900;
  color: var(--overlay-text);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center top; */
  /* opacity: 0.35; */
  filter: grayscale(30%);
}

/* Dark gradient overlays */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.2) 100%);
  z-index: 1;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--darker), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--off-white);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 40px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 6px;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'About';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--off-white);
  opacity: 0.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: block;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(25%);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--dark);
  filter: grayscale(20%);
}

.about-badge-box {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--darkest);
  padding: 20px 22px;
  text-align: center;
}

.about-badge-box .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-badge-box .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--darker);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 0.97rem;
  color: var(--off-white);
  opacity: 0.75;
}

.section-header .gold-line {
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4px;
}

.service-card {
  background: var(--dark);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  background: #222;
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 24px;
}

.read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
}

.read-more::after {
  content: '→';
  transition: transform var(--transition);
}

.read-more:hover {
  gap: 12px;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* =============================================
   WHY SECTION (numbered tips)
   ============================================= */
.why {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
  order: 2;
}

.why-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}

.why-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: var(--darkest);
  padding: 22px 28px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}

.why-content {
  order: 1;
}

.why-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-content>p {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.75;
  margin-bottom: 40px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  padding-top: 2px;
}

.why-item-body h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.why-item-body p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* =============================================
   BREEDS SECTION
   ============================================= */
.breeds {
  padding: 100px 0;
  background: var(--darker);
}

.breeds-header {
  margin-bottom: 56px;
}

.breeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.breed-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.breed-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter var(--transition), transform 0.6s ease;
}

.breed-card:hover img {
  filter: grayscale(10%);
  transform: scale(1.04);
}

.breed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: padding var(--transition);
}

.breed-card:hover .breed-overlay {
  padding-bottom: 40px;
}

.breed-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.breed-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  padding: 80px 0;
  background: var(--darkest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'k9';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

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

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info>p {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--mid);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.contact-item-text .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item-text .value {
  font-size: 0.95rem;
  color: var(--off-white);
}

.contact-item-text .value a:hover {
  color: var(--gold);
}

/* Form */
.contact-form {
  background: var(--mid);
  padding: 44px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 16px;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--darkest);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition),
    background var(--transition);
  font-size: 0.8rem;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 92, 0.08);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-newsletter-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-right: none;
  padding: 11px 14px;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 11px 16px;
  cursor: pointer;
  color: var(--darkest);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* =============================================
   PHILOSOPHY SPLIT SECTION
   ============================================= */
.philosophy {
  padding: 0;
  background: var(--darkest);
  overflow: hidden;
}

.philosophy-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.philosophy-image {
  position: relative;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s ease;
  display: block;
}

.philosophy-image:hover img {
  transform: scale(1.04);
}

.philosophy-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--darkest) 100%);
}

.philosophy-content {
  padding: 80px 60px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--darkest);
}

.philosophy-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.philosophy-content p {
  font-size: 0.95rem;
  color: var(--off-white);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 16px;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.pillar-text {
  font-size: 0.85rem;
  color: var(--off-white);
  opacity: 0.8;
  line-height: 1.5;
}

.pillar-text strong {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* =============================================
   GSD DEEP DIVE (image right)
   ============================================= */
.breed-deep {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.breed-deep.dark-bg {
  background: var(--dark);
}

.breed-deep.darker-bg {
  background: var(--darker);
}

.breed-deep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.breed-deep-grid.reverse {
  /* Layout handled via flex/grid order */
}

.breed-deep-grid.reverse .breed-deep-visual {
  order: -1;
}

.breed-deep-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.breed-deep-text p {
  font-size: 0.93rem;
  color: var(--off-white);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 14px;
}

.breed-trait-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.breed-trait {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--gold);
}

.breed-trait-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 100px;
}

.breed-trait-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.breed-trait-bar {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  width: 0;
  transition: width 1.2s ease 0.3s;
}

.breed-trait-bar.animated {
  width: var(--pct, 80%);
}

.breed-trait-value {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 32px;
  text-align: right;
}

.breed-deep-visual {
  position: relative;
}

.breed-deep-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(15%);
  display: block;
}

.breed-deep-visual-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--gold);
  color: var(--darkest);
  padding: 18px 22px;
  text-align: center;
}

.breed-deep-visual-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.breed-deep-visual-badge .badge-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.breed-deep-visual-tag {
  position: absolute;
  top: 24px;
  left: -20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--darkest);
  padding: 16px 6px;
  border-right: 2px solid var(--gold);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: var(--darkest);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 400px;
  font-weight: 900;
  color: rgba(201, 168, 92, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
  transition: background var(--transition);
}

.testimonial-card:hover {
  background: #222;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--off-white);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-author-info .author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info .author-dog {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* =============================================
   TRAINING PROCESS SECTION
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.process-image {
  position: relative;
}

.process-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%);
}

.process-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
  padding: 32px 24px 24px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-step-circle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--dark);
  position: relative;
  z-index: 1;
}

.process-step-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 4px auto 0;
}

.process-step:last-child .process-step-line {
  display: none;
}

.process-step-body h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  padding-top: 10px;
}

.process-step-body p {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* =============================================
   SERVICE DOG FEATURE SECTION
   ============================================= */
.service-dog-feature {
  padding: 0;
  background: var(--darker);
  overflow: hidden;
}

.service-dog-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
}

.service-dog-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--darker);
}

.service-dog-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-dog-content p {
  font-size: 0.93rem;
  color: var(--off-white);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 14px;
}

.sd-checklist {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--off-white);
  opacity: 0.85;
}

.sd-check-icon {
  width: 20px;
  height: 20px;
  background: rgba(201, 168, 92, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sd-check-icon::after {
  content: '✓';
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 700;
}

.service-dog-image {
  position: relative;
  overflow: hidden;
}

.service-dog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s ease;
}

.service-dog-image:hover img {
  transform: scale(1.03);
}

.service-dog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, var(--darker) 100%);
}

/* =============================================
   scroll fade-in animations
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}
/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq-grid {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--mid);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-trigger {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-trigger::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.active .faq-trigger {
  color: var(--gold);
}

.faq-item.active .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  padding: 0 32px;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 32px 32px;
}

.faq-content p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* =============================================
   CONTACT SECTION (PREMIUM)
   ============================================= */
.contact {
  padding: 120px 0;
  background: var(--darkest);
}

.contact-card-premium {
  display: grid;
  grid-template-columns: 32% 24% 1fr;
  background: var(--mid);
  border: 1px solid var(--border);
  min-height: 550px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.contact-visual {
  position: relative;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: transform 1s ease;
}

.contact-card-premium:hover .contact-visual img {
  transform: scale(1.05);
}

.contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.contact-service-areas {
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.15);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-areas-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cities-grid a {
  color: var(--off-white);
  font-size: 0.92rem;
  opacity: 0.8;
  padding: 4px 0;
  transition: all var(--transition);
  position: relative;
  display: inline-block;
}

.cities-grid a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 8px;
}

.service-area-note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.contact-content-box {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-form-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-premium input,
.contact-form-premium select,
.contact-form-premium textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.contact-form-premium input:focus,
.contact-form-premium select:focus,
.contact-form-premium textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.contact-form-premium button {
  margin-top: 10px;
  padding: 20px;
  justify-content: center;
  font-size: 1.1rem;
}

@media (max-width: 1300px) {
  .contact-card-premium {
    grid-template-columns: 30% 25% 1fr;
  }
}

@media (max-width: 1100px) {
  .contact-card-premium {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    display: none;
  }

  .contact-service-areas {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 60px 40px;
  }

  .cities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .contact-content-box {
    padding: 60px 40px;
  }
}

@media (max-width: 600px) {
  .form-row-premium {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }

  .why-grid {
    gap: 48px;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .breed-deep-grid {
    gap: 48px;
  }

  .process-grid {
    gap: 48px;
  }

  .philosophy-content {
    padding: 60px 40px;
  }

  .service-dog-content {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .top-bar-tagline {
    display: none;
  }

  .top-bar-phone {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-scroll {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-accent {
    display: none;
  }

  .about-badge-box {
    right: 0;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: 0;
  }

  .why-content {
    order: 1;
  }

  .breeds-grid {
    grid-template-columns: 1fr;
  }

  /* New sections — mobile */
  .philosophy-split {
    grid-template-columns: 1fr;
  }

  .philosophy-image {
    min-height: 320px;
  }

  .philosophy-image-overlay {
    background: linear-gradient(to top, var(--darkest) 20%, transparent 80%);
  }

  .philosophy-content {
    padding: 48px 24px;
  }

  .breed-deep-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .breed-deep-grid.reverse .breed-deep-visual {
    order: 0;
  }

  .breed-deep-visual-badge {
    right: 0;
  }

  .breed-deep-visual-tag {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-dog-split {
    grid-template-columns: 1fr;
  }

  .service-dog-image {
    min-height: 320px;
  }

  .service-dog-image-overlay {
    background: linear-gradient(to top, var(--darker) 20%, transparent 80%);
  }

  .service-dog-content {
    padding: 48px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card {
    padding: 32px 24px;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
}