/* ======================
   RESET & BASE
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ======================
   HEADER
====================== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 3.2rem;
}

.logo {
  display: block;
  line-height: 0;
}

.logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2.1rem;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #C9A227;
}

.nav-link.active {
  color: #C9A227;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #C9A227;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #C9A227;
  transition: 0.3s;
}

/* ======================
   HERO
====================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 3.2rem;
  background: #0a0a0a;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 440px;       /* Slightly tighter text column */
  padding-top: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 5.2vw, 4.35rem);  /* Smaller than before */
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #f8f5f0;
  margin-bottom: 1.6rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.6rem;
  max-width: 340px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #C9A227;
  border-bottom: 1px solid #C9A227;
  padding-bottom: 0.35rem;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  color: #e0c05a;
  border-color: #e0c05a;
  gap: 1rem;
}

.hero-cta .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

/* Hero Image – full bleed */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

/* Very light top fade for nav only – image handles left side */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 6, 0.40) 0%,
    rgba(6, 6, 6, 0.12) 8%,
    transparent 16%
  );
  pointer-events: none;
}

/* ======================
   TESTIMONIALS
====================== */
.testimonials {
  background: #0f0f0f;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 4.5rem 3.2rem 5rem;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.testimonial {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 2rem 1.7rem;
  margin: 0;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.3rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #C9A227;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 1100px) {
  .header {
    padding: 1.2rem 2rem;
  }

  .logo-img {
    height: 72px;
  }

  .nav {
    gap: 1.5rem;
  }

  .hero {
    padding: 0 2rem;
  }

}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 1.3rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
    padding-bottom: 2.8rem;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 58vw;
    min-height: 340px;
  }

  .hero-image::after {
    background: linear-gradient(
      to top,
      #0a0a0a 0%,
      transparent 42%
    );
  }

  .testimonials {
    padding: 3.5rem 1.5rem 4rem;
  }

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

@media (max-width: 500px) {
  .header {
    padding: 1.1rem 1.3rem;
  }

  .logo-img {
    height: 58px;
  }

  .hero {
    padding: 0 1.3rem;
    padding-top: 6.2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ======================

/* ======================
   ABOUT PAGE (Contained)
====================== */

.about-page {
  background: #0a0a0a;
}

.about-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 1.3rem;
}

.about-label.centered {
  text-align: center;
  margin-bottom: 2.8rem;
}

.gold-line {
  width: 44px;
  height: 1px;
  background: #C9A227;
  margin-bottom: 1.7rem;
}

/* Top section: text + image side by side */
.about-top {
  padding: 5.5rem 3.5rem 4rem;
}

.about-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-top-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: #f5f0e8;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.3rem;
}

.about-top-text p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

/* Soft contained image */
.about-top-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.about-top-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Quote band */
.about-quote-band {
  padding: 4.5rem 3.5rem;
  background: #0f0f0f;
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
  text-align: center;
}

.about-quote-inner {
  max-width: 700px;
  margin: 0 auto;
}

.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.9rem;
}

.big-quote-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: #C9A227;
}

/* Story sections */
.about-story-section {
  padding: 5.5rem 3.5rem;
}

.about-story-section--alt {
  background: #0c0c0c;
}

.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-inner--reverse {
  direction: rtl;
}

.about-story-inner--reverse > * {
  direction: ltr;
}

.story-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.4);
}

.story-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.story-content p {
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.35rem;
}

.story-closing {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.35rem !important;
  font-weight: 500 !important;
  color: #f0e6d0 !important;
  margin-top: 1.8rem !important;
}

/* Values */
.about-values {
  padding: 5rem 3.5rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(201,162,39,0.1);
}

.values-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-item {
  text-align: center;
}

.value-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.value-item h3 {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 0.65rem;
}

.value-item p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

/* Closing */
.about-closing-section {
  padding: 4.5rem 2rem 5.5rem;
  text-align: center;
  background: #0a0a0a;
}

.thank-you {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: #f0e8d8;
  margin-bottom: 1.2rem;
}

.signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #C9A227;
}

/* Responsive */
@media (max-width: 900px) {
  .about-top {
    padding: 3.5rem 1.5rem 2.5rem;
  }

  .about-top-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-top-image img {
    height: 320px;
  }

  .about-quote-band {
    padding: 3.2rem 1.5rem;
  }

  .big-quote,
  .big-quote-emphasis {
    font-size: 1.55rem;
  }

  .about-story-section {
    padding: 3.5rem 1.5rem;
  }

  .about-story-inner,
  .about-story-inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.2rem;
  }

  .story-image img {
    height: 280px;
  }

  .about-values {
    padding: 3.5rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ======================
   ABOUT PAGE (Original + Soft Edges)
====================== */

.header-solid {
  position: relative;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

/* About Hero */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 70vh;
  background: #0a0a0a;
}

.about-hero-image {
  position: relative;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  /* Soft edge fade into the page */
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 1.2rem;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  color: #f8f5f0;
  margin-bottom: 1.6rem;
}

.about-intro {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

/* Content section */
.about-content {
  background: #0f0f0f;
  padding: 5.5rem 3.5rem 4rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #C9A227;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.about-block p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.2rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

/* Soft-edged images */
.about-image-block {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.about-image-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  /* Soft vignette so edges blend better */
  mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
}

.about-image-block--left img {
  object-position: center 30%;
}

/* Closing statement */
.about-closing {
  max-width: 720px;
  margin: 5rem auto 0;
  text-align: center;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.about-closing p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.4rem;
}

.about-closing-strong {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  color: #f0e6d0 !important;
  letter-spacing: 0.02em;
}

/* CTA section */
.about-cta {
  background: #0a0a0a;
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.about-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #f8f5f0;
  margin-bottom: 0.9rem;
}

.about-cta p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.2rem;
}

/* Responsive – About */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-image {
    height: 50vw;
    min-height: 280px;
  }

  .about-hero-image img {
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  }

  .about-hero-content {
    padding: 3rem 1.6rem;
  }

  .about-content {
    padding: 3.5rem 1.5rem 3rem;
  }

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

  .about-image-block img {
    height: 280px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .about-image-block--left {
    order: 1;
  }

  .about-closing {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }

  .about-cta {
    padding: 4rem 1.5rem;
  }
}

/* ======================
   SERVICES PAGE
====================== */

.page-intro {
  text-align: center;
  padding: 5.5rem 2rem 3.5rem;
  background: #0a0a0a;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.3rem);
  font-weight: 500;
  line-height: 1.2;
  color: #f5f0e8;
  margin-bottom: 1.2rem;
}

.page-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pillars */
.services-pillars {
  padding: 2rem 3.5rem 5rem;
  background: #0a0a0a;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.pillar {
  background: #111;
  padding: 2.8rem 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(201,162,39,0.12);
}

.pillar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: #C9A227;
  margin-bottom: 1.2rem;
}

.pillar-lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.pillar p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.1rem;
}

.pillar ul {
  list-style: none;
  margin: 0 0 1.3rem 0;
  padding: 0;
}

.pillar ul li {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  line-height: 1.55;
}

.pillar ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #C9A227;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A227;
  margin-top: 0.8rem;
  transition: gap 0.25s ease;
}

.text-link:hover {
  gap: 0.8rem;
}

/* Training Options */
.training-options {
  padding: 5rem 3.5rem;
  background: #0f0f0f;
}

.options-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: #f5f0e8;
  text-align: center;
  margin-bottom: 3rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.option-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2.2rem 1.8rem;
}

.option-card--accent {
  border-color: rgba(201,162,39,0.25);
}

.option-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: #f0e6d0;
  margin-bottom: 0.4rem;
}

.option-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 1.4rem;
}

.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem 0;
}

.option-card ul li {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.option-card ul li strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.option-ideal {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.1rem;
}

.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2.2rem;
}

/* Image break - contained */
.services-image-break {
  padding: 0 3.5rem 5rem;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
}

.services-image-break.contained img {
  width: 100%;
  max-width: 900px;
  height: 420px;
  object-fit: cover;
  object-position: center 85%;
  border-radius: 6px;
  display: block;
  /* Soft fade into the dark background */
  mask-image: radial-gradient(ellipse 85% 75% at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at center, black 50%, transparent 100%);
}

/* Responsive */
@media (max-width: 900px) {
  .page-intro {
    padding: 4rem 1.5rem 2.5rem;
  }

  .services-pillars {
    padding: 1rem 1.5rem 3.5rem;
  }

  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .training-options {
    padding: 3.5rem 1.5rem;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-image-break {
    padding: 0 1.5rem 3.5rem;
  }

  .services-image-break.contained img {
    height: 280px;
  }
}

/* ======================
   CONTACT PAGE
====================== */

.contact-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.48;
  filter: brightness(0.85) contrast(1.05);
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.62) 45%,
    rgba(10,10,10,0.82) 100%
  );
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 520px;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 0.6rem;
}

.contact-intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A227;
}

.contact-item a,
.contact-item span {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #C9A227;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.35);
  color: #C9A227;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: #C9A227;
  color: #0a0a0a;
  border-color: #C9A227;
}

@media (max-width: 600px) {
  .contact-content {
    padding: 3rem 1.4rem;
  }

  .contact-details {
    gap: 1.5rem;
  }

  .contact-item a,
  .contact-item span {
    font-size: 1.05rem;
  }
}

/* ======================
   BREEDING PAGE
====================== */

.soft-edge img {
  border-radius: 6px;
  mask-image: radial-gradient(ellipse 90% 85% at center, black 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at center, black 55%, transparent 100%);
}

.dog-profile {
  padding: 4rem 3.5rem;
  background: #0a0a0a;
}

.dog-profile--alt {
  background: #0f0f0f;
}

.dog-profile-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.dog-profile-inner--reverse {
  direction: rtl;
}

.dog-profile-inner--reverse > * {
  direction: ltr;
}

.dog-photos {
  display: grid;
  gap: 1.4rem;
}

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

.dog-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 0.6rem;
}

.dog-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.dog-name a {
  color: inherit;
  transition: color 0.25s ease;
}

.dog-name a:hover {
  color: #C9A227;
}

.dog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.dog-info p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.15rem;
}

.dog-training {
  font-size: 0.95rem !important;
  color: rgba(201,162,39,0.9) !important;
  font-weight: 400 !important;
  margin-top: 0.5rem;
}

/* Aim */
.breeding-aim {
  padding: 5rem 3.5rem;
  background: #0a0a0a;
}

.breeding-aim-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.aim-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.4rem;
  text-align: left;
}

/* Pedigree */
.pedigree-section {
  padding: 3rem 3.5rem 5rem;
  background: #0f0f0f;
}

.pedigree-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pedigree-image {
  margin-top: 1.5rem;
}

.pedigree-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #fff;
}

/* Selection */
.selection-section {
  padding: 5rem 3.5rem;
  background: #0a0a0a;
}

.selection-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.selection-text p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  text-align: left;
}

/* Legacy / von Stephanitz */
.legacy-section {
  padding: 5rem 3.5rem 6rem;
  background: #0f0f0f;
  border-top: 1px solid rgba(201,162,39,0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.legacy-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.legacy-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(100%);
}

.legacy-intro .legacy-quote-short {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #C9A227;
  line-height: 1.4;
  margin-bottom: 0.45rem;
}

.legacy-intro p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.15rem;
}

.quote-attr {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}

.legacy-featured {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.legacy-quote-long {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.legacy-featured .quote-attr {
  margin-bottom: 0;
}

.legacy-closing {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.legacy-closing p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 900px) {
  .dog-profile {
    padding: 3rem 1.5rem;
  }

  .dog-profile-inner,
  .dog-profile-inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .dog-photo img {
    height: 240px;
  }

  .breeding-aim,
  .selection-section,
  .legacy-section {
    padding: 3.5rem 1.5rem;
  }

  .pedigree-section {
    padding: 2.5rem 1.5rem 3.5rem;
  }

  .legacy-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legacy-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .legacy-featured {
    text-align: left;
  }

  .legacy-closing {
    text-align: left;
  }
}

/* ======================
   GALLERY PAGE
====================== */

.gallery-section {
  padding: 2rem 3.5rem 5rem;
  background: #0a0a0a;
}

.gallery-section--alt {
  background: #0f0f0f;
  padding-top: 4.5rem;
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 2.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  padding-left: 0.15rem;
}

@media (max-width: 700px) {
  .gallery-section {
    padding: 1.5rem 1.4rem 3.5rem;
  }

  .gallery-section--alt {
    padding-top: 3rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .gallery-heading {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
}

/* ======================
   DETAIL PAGES (Obedience / Protection)
====================== */

.detail-video {
  padding: 0 3.5rem 3rem;
  background: #0a0a0a;
}

.detail-video-inner {
  max-width: 800px;
  margin: 0 auto;
}

.detail-video .video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.detail-video .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

.phases-section {
  padding: 3rem 3.5rem 5rem;
  background: #0a0a0a;
}

.phases-inner {
  max-width: 720px;
  margin: 0 auto;
}

.phases-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.phase {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.phase-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #C9A227;
  line-height: 1.2;
  padding-top: 0.15rem;
}

.phase-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 0.55rem;
}

.phase-content p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.detail-back {
  padding: 0 3.5rem 5rem;
  background: #0a0a0a;
  text-align: center;
}

@media (max-width: 700px) {
  .detail-video {
    padding: 0 1.4rem 2rem;
  }

  .phases-section {
    padding: 2rem 1.4rem 3.5rem;
  }

  .phase {
    grid-template-columns: 42px 1fr;
    gap: 1rem;
  }

  .phase-num {
    font-size: 1.35rem;
  }

  .detail-back {
    padding: 0 1.4rem 4rem;
  }
}

/* ======================
   PROTECTION DETAIL PAGE
====================== */

.prot-section {
  padding: 3rem 3.5rem 4rem;
  background: #0a0a0a;
}

.prot-section--alt {
  background: #0f0f0f;
  padding-bottom: 3rem;
}

.prot-inner {
  max-width: 900px;
  margin: 0 auto;
}

.prot-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #f5f0e8;
  margin-bottom: 1.2rem;
}

.prot-lead {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  max-width: 680px;
}

.prot-objectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.prot-obj h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #C9A227;
  margin-bottom: 0.45rem;
}

.prot-obj p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

.prot-video {
  max-width: 720px;
  margin-top: 1rem;
}

.prot-video .video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

.prot-video .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Elements */
.prot-elements {
  background: #0a0a0a;
}

.prot-element {
  padding: 4rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.prot-element--alt {
  background: #0f0f0f;
}

.prot-element-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
}

.prot-element-inner--reverse {
  direction: rtl;
}

.prot-element-inner--reverse > * {
  direction: ltr;
}

.prot-element-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #C9A227;
  margin-bottom: 1.1rem;
}

.prot-element-text p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.1rem;
}

.prot-element-video .video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.prot-element-video .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.prot-element-video .video-caption {
  margin-top: 0.7rem;
  text-align: left;
}

@media (max-width: 900px) {
  .prot-section {
    padding: 2.5rem 1.4rem 3rem;
  }

  .prot-element {
    padding: 3rem 1.4rem;
  }

  .prot-element-inner,
  .prot-element-inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.8rem;
  }

  .prot-heading {
    font-size: 1.7rem;
  }
}

/* Protection intro testimonial */
.prot-intro-quote {
  text-align: center;
  padding-bottom: 2.5rem;
}

.prot-testimonial {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 1.2rem auto 1rem;
}

.prot-testimonial-attr {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #C9A227;
  margin-bottom: 0;
}


/* Obedience – a few words */
.obedience-words {
  padding: 2rem 3.5rem 4rem;
  background: #0f0f0f;
  border-top: 1px solid rgba(201,162,39,0.08);
}

.obedience-words-inner {
  max-width: 720px;
  margin: 0 auto;
}

.words-body p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.15rem;
}

.words-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #C9A227;
  margin: 2.2rem 0 0.85rem;
}

.words-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem 0;
}

.words-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.35rem;
}

.words-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #C9A227;
}

@media (max-width: 700px) {
  .obedience-words {
    padding: 2rem 1.4rem 3rem;
  }
}

.words-image {
  margin-top: 2.8rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.words-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  mask-image: radial-gradient(ellipse 90% 80% at center, black 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at center, black 55%, transparent 100%);
}
