/*
 * K9 Exclusive Walks - Sighthound Specialist Theme (with images + video)
 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  color: #2a2118;
  background: #faf8f5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; }

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

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

/*
 * === ANIMATIONS ===
 */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px); }


    to {
    opacity: 1;
    transform: translateY(0); }
 }
@keyframes drawLine {
    from {
    width: 0; }


    to {
    width: 60px; }
 }
@keyframes gentlePulse {
     {
    transform: scale(1); }


     {
    transform: scale(1.03); }
 }
/*
 * === HEADER ===
 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 16px 0; }

.site-header.solid {
  background: rgba(250, 248, 245, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(42, 33, 24, 0.08);
  padding: 10px 0; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.logo-text {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: #faf8f5;
  letter-spacing: 0.5px;
  display: block;
  transition: color 0.3s; }

.logo-text:hover {
  color: #c4a882; }

.site-header.solid .logo-text {
  color: #2a2118; }

.site-header.solid .logo-text:hover {
  color: #8b6f47; }

.logo-sub {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c4a882;
  display: block;
  margin-top: -2px; }

.site-header.solid .logo-sub {
  color: #8b6f47; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center; }

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.85);
  position: relative;
  transition: color 0.3s; }

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

.site-header.solid .nav-link {
  color: #2a2118; }

.site-header.solid .nav-link:hover {
  color: #8b6f47; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #c4a882;
  transition: width 0.3s ease; }

.site-header.solid .nav-link::after {
  background: #8b6f47; }

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

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: rgba(250, 248, 245, 0.15);
  color: #faf8f5;
  border: 1px solid rgba(250, 248, 245, 0.3);
  border-radius: 2px;
  transition: all 0.3s; }

.nav-cta:hover {
  background: #c4a882;
  color: #2a2118;
  border-color: #c4a882; }

.site-header.solid .nav-cta {
  background: #2a2118;
  color: #faf8f5;
  border-color: #2a2118; }

.site-header.solid .nav-cta:hover {
  background: #8b6f47;
  border-color: #8b6f47;
  color: white; }

.mobile-cta {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: #2a2118;
  color: #faf8f5;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap; }

.mobile-cta:hover {
  background: #8b6f47;
  color: white; }

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

  .mobile-cta {
    display: block; } }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #faf8f5;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px; }

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

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #2a2118;
  transition: color 0.3s; }

.mobile-menu a:hover {
  color: #8b6f47; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #2a2118;
  cursor: pointer; }

/*
 * === HERO (with background photo) ===
 */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url(/user-content/images/750_5753-2-2.jpg') center center / cover no-repeat; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 33, 24, 0.88) 0%, rgba(42, 33, 24, 0.82) 40%, rgba(42, 33, 24, 0.9) 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c4a882;
  border: 1px solid rgba(196, 168, 130, 0.3);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 32px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #c4a882; }

.hero-line {
  width: 60px;
  height: 1px;
  background: #c4a882;
  margin: 24px auto;
  animation: drawLine 1s ease-out 0.5s both; }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(245, 240, 234, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px; }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap; }

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: #c4a882;
  color: #2a2118;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block; }

.btn-primary:hover {
  background: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 168, 130, 0.3); }

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: transparent;
  color: #faf8f5;
  border: 1px solid rgba(245, 240, 234, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block; }

.btn-secondary:hover {
  border-color: #c4a882;
  color: #c4a882; }

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(245, 240, 234, 0.75); }

.trust-stars {
  color: #c9a84c; }

@media all and (max-width: 600px) {
  .hero h1 {
    font-size: 48px; } }

/*
 * === SECTIONS ===
 */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto; }

.section-dark {
  background: #2a2118;
  color: #faf8f5;
  padding: 100px 24px; }

.section-training {
  background: linear-gradient(180deg, #2a2118 0%, #352a1e 100%); }

.section-sand {
  background: #f5f0ea;
  padding: 100px 24px; }

.section-sage {
  background: linear-gradient(135deg, #f0f3ec 0%, #e4ead8 100%);
  padding: 100px 24px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto; }

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

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8b6f47;
  margin-bottom: 16px; }

.section-label-light {
  color: #c4a882; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px; }

.section-title-light {
  color: #faf8f5; }

.section-title em {
  font-style: italic;
  color: #8b6f47; }

.section-title-light em {
  color: #c4a882; }

.section-line {
  width: 40px;
  height: 1px;
  background: #c4a882;
  margin: 0 auto 32px; }

.section-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #6b5d4f;
  max-width: 620px;
  margin: 0 auto; }

.section-desc-light {
  color: rgba(245, 240, 234, 0.6); }

@media all and (max-width: 600px) {
  .section-title {
    font-size: 32px; } }

/*
 * === SERVICES IMAGE ===
 */
.services-image-wrap {
  margin-top: 48px;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 4px;
  max-height: 420px; }

.services-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block; }

/*
 * === SERVICE CARDS ===
 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px; }

.service-card {
  background: white;
  border: 1px solid #e8ddd0;
  padding: 48px 36px;
  transition: all 0.4s; }

.service-card:hover {
  border-color: #c4a882;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42, 33, 24, 0.08); }

.service-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b6f47;
  margin-bottom: 16px; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px; }

.service-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: #8b6f47;
  margin: 16px 0; }

.service-card-price span {
  font-size: 16px;
  font-weight: 400;
  color: #8b7b6b; }

.service-card-features {
  list-style: none;
  margin: 24px 0; }

.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6b5d4f;
  line-height: 1.5;
  margin-bottom: 12px; }

.chk {
  color: #7a8b6f;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: bold; }

.service-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  margin-top: 24px;
  background: #2a2118;
  color: #faf8f5;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s; }

.service-card-cta:hover {
  background: #8b6f47; }

/*
 * === BREEDS ===
 */
.breeds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px; }

.breed-card {
  padding: 32px;
  border: 1px solid rgba(196, 168, 130, 0.2);
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.5); }

.breed-card:hover {
  border-color: #c4a882;
  background: white;
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.06); }

.breed-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #2a2118; }

.breed-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #6b5d4f; }

/*
 * === TESTIMONIALS ===
 */
.testimonial-area {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  min-height: 240px; }

.testimonial-stars {
  color: #c9a84c;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px; }

.testimonial-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: #faf8f5;
  margin-bottom: 24px;
  transition: opacity 0.5s; }

.testimonial-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c4a882;
  margin-bottom: 4px; }

.testimonial-breed {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(245, 240, 234, 0.4);
  letter-spacing: 1px; }

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 32px; }

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 234, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s; }

.testimonial-dot.active {
  background: #c4a882;
  transform: scale(1.3); }

/*
 * === TRAINING ===
 */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto; }

.training-item {
  display: flex;
  gap: 20px; }

.training-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 56px; }

.training-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #faf8f5; }

.training-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 234, 0.55); }

@media all and (max-width: 700px) {
  .training-grid {
    grid-template-columns: 1fr; } }

/*
 * === TRAINING VIDEO EMBED ===
 */
.training-video-section {
  max-width: 800px;
  margin: 64px auto 0; }

.training-video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #faf8f5;
  margin-bottom: 24px; }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 168, 130, 0.2); }

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.training-updates {
  max-width: 700px;
  margin: 64px auto 0; }

.training-updates-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #faf8f5;
  margin-bottom: 16px; }

.training-updates-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 234, 0.55); }

/*
 * === NUTRITION ===
 */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto; }

.nutrition-card {
  background: white;
  padding: 36px 28px;
  border: 1px solid #e8ddd0;
  transition: all 0.3s; }

.nutrition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.06); }

.nutrition-icon {
  font-size: 32px;
  margin-bottom: 16px; }

.nutrition-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px; }

.nutrition-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: #6b5d4f; }

.topper-detail {
  max-width: 700px;
  margin: 64px auto 0; }

.topper-detail h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px; }

.topper-detail p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #6b5d4f; }

/*
 * === PERSONAL DEV ===
 */
.dev-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto; }

.dev-module {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 168, 130, 0.15);
  transition: all 0.3s; }

.dev-module:hover {
  border-color: #c4a882;
  background: white; }

.dev-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: #c4a882;
  width: 32px;
  flex-shrink: 0; }

.dev-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6b5d4f;
  line-height: 1.4; }

/*
 * === ABOUT (with real photo) ===
 */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center; }

.about-visual {
  overflow: hidden;
  border-radius: 4px; }

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1.333; }

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px; }

.about-cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #8b6f47;
  background: #f5f0ea;
  padding: 8px 16px;
  border-radius: 2px; }

@media all and (max-width: 700px) {
  .about-content {
    grid-template-columns: 1fr; } }

/*
 * === FAQ ===
 */
.faq-container {
  max-width: 800px;
  margin: 48px auto 0; }

.faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px; }

.faq-cat-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #e8ddd0;
  color: #8b7b6b;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px; }

.faq-cat-btn.active {
  background: #2a2118;
  color: #faf8f5;
  border-color: #2a2118; }

.faq-item {
  border-bottom: 1px solid #e8ddd0;
  overflow: hidden; }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: #2a2118;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s; }

.faq-question:hover {
  color: #8b6f47; }

.faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px; }

.faq-chevron.open {
  transform: rotate(180deg); }

.faq-answer {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #6b5d4f;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0; }

.faq-answer.open {
  max-height: 300px;
  padding: 0 0 20px; }

/*
 * === CONTACT ===
 */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 48px auto 0;
  align-items: start; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px; }

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f0ea;
  color: #8b6f47; }

.contact-method h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px; }

.contact-method p,
.contact-method a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6b5d4f; }

.contact-method a:hover {
  color: #8b6f47; }

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 14px 18px;
  border: 1px solid #e8ddd0;
  background: white;
  color: #2a2118;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none; }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #c4a882; }

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

.contact-form select {
  cursor: pointer; }

.form-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8b7b6b;
  text-align: center; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25d366;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s; }

.wa-btn:hover {
  background: #1da851;
  color: white; }

@media all and (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px; } }

/*
 * === FOOTER ===
 */
.site-footer {
  background: #1a150f;
  color: rgba(245, 240, 234, 0.4);
  padding: 60px 24px 40px; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; }

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #faf8f5;
  margin-bottom: 12px; }

.footer-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 240, 234, 0.35);
  max-width: 300px; }

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 240, 234, 0.5);
  margin-bottom: 16px; }

.footer-col a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 234, 0.35);
  margin-bottom: 10px;
  transition: color 0.3s; }

.footer-col a:hover {
  color: #c4a882; }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 234, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; }

.footer-licence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245, 240, 234, 0.5); }

@media all and (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px; } }

/*
 * === WHATSAPP FLOAT ===
 */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: gentlePulse 3s infinite; }

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: white; }

/*
 * === PAGE CONTENT ===
 */
.page-container {
  max-width: 800px;
  margin: 0 auto; }

.headline-area {
  margin-bottom: 40px; }

.section-404 {
  min-height: 60vh;
  display: flex;
  align-items: center; }

#content .grt {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #6b5d4f; }

#content .grt h1,
#content .grt h2,
#content .grt h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #2a2118; }

#content .grt h1 {
  font-size: 42px;
  margin-bottom: 16px; }

#content .grt h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 16px; }

#content .grt h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px; }

#content .grt a {
  color: #8b6f47;
  border-bottom: 1px solid rgba(139, 111, 71, 0.3);
  transition: border-color 0.3s; }

#content .grt a:hover {
  border-color: #8b6f47; }

