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

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --dark: #1a1a1a;
  --mid-dark: #2a2a2a;
  --mid: #555555;
  --mid-light: #888888;
  --light: #cccccc;
  --near-white: #f0f0f0;
  --white: #ffffff;
  --accent: #c8a96e;

  --font-serif: 'Montserrat', system-ui, sans-serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* ─── HEADER ─────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--white);
  transition: box-shadow 0.3s ease;
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  transition: opacity 0.2s ease;
}

.logo-img:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: var(--space-5);
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--near-black);
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--near-black);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--white);
  border-top: 1px solid var(--light);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: var(--space-2) var(--space-4);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--near-black);
  border-bottom: 1px solid var(--light);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background-color: var(--near-white);
  color: var(--near-black);
}

/* ─── HERO ────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-image {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-4);
  max-width: 800px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--black);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.hero-scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ─── INTRO BAND ──────────────────────────────────────── */

.intro-band {
  background-color: var(--black);
  padding: var(--space-6) 0;
}

.intro-band p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--light);
  text-align: center;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

/* ─── SECTION LABELS ─────────────────────────────────── */

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.section-label.center {
  text-align: center;
}

.section-label.light {
  color: var(--accent);
}

/* ─── STORY ───────────────────────────────────────────── */

.story {
  padding: var(--space-16) 0;
  background-color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.story-image-wrap {
  position: relative;
  display: none;
}

.story-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.story-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--near-black);
  z-index: -1;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--near-black);
  margin-bottom: var(--space-4);
}

.story-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text em {
  font-style: italic;
  color: var(--near-black);
  font-family: var(--font-serif);
}

/* ─── BREEDS ──────────────────────────────────────────── */

.breeds {
  padding: var(--space-16) 0;
  background-color: var(--near-white);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: var(--space-3);
}

.section-title.center {
  text-align: center;
}

.section-intro {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.section-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.breeds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.breed-card {
  background-color: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.breed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.breed-image-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.breed-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

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

.breed-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  padding: 6px 14px;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.breed-badge.commercial {
  background-color: var(--mid-dark);
}

.breed-content {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.breed-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 4px;
}

.breed-subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-light);
  margin-bottom: var(--space-3) !important;
}

.breed-content p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.breed-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-3);
}

.breed-traits span {
  padding: 5px 12px;
  border: 1px solid var(--light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── PHILOSOPHY ──────────────────────────────────────── */

.philosophy {
  position: relative;
  padding: var(--space-16) 0;
  overflow: hidden;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.82);
  z-index: 1;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.philosophy-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-5);
  letter-spacing: 0.02em;
}

.philosophy-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  padding-left: var(--space-4);
  border-left: 2px solid var(--accent);
}

.philosophy-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: var(--space-3);
}

.philosophy-content p:last-child {
  margin-bottom: 0;
}

/* ─── GALLERY ─────────────────────────────────────────── */

.gallery {
  background-color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  height: 260px;
}

.gallery-item.tall {
  grid-row: span 2;
  height: 524px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(30%);
}

/* ─── CONTACT ─────────────────────────────────────────── */

.contact {
  padding: var(--space-16) 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.contact-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: var(--space-3);
}

.contact-text > p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--near-black);
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-light);
  margin-bottom: 4px !important;
}

.contact-item a {
  display: block;
  font-size: 15px;
  color: var(--near-black);
  transition: color 0.2s ease;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--mid);
}

/* ─── FOOTER ──────────────────────────────────────────── */

.site-footer {
  background-color: var(--black);
  padding: var(--space-8) 0;
}

.footer-inner {
  text-align: center;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: inline-block;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--mid-light);
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.08em;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .story-img {
    height: 360px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  .gallery-item.tall {
    grid-row: span 1;
    height: 260px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 var(--space-3);
  }

  .story {
    padding: var(--space-10) 0;
  }

  .breeds {
    padding: var(--space-10) 0;
  }

  .philosophy {
    padding: var(--space-10) 0;
  }

  .contact {
    padding: var(--space-10) 0;
  }

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

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    height: 220px;
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-title {
    font-size: 36px;
  }

  .intro-band p {
    font-size: 16px;
  }
}
