@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #F2F2F2;
  --warm-white: #FAFAFA;
  --bark: #111111;
  --bark-mid: #3A3A3A;
  --earth: #6B6B6B;
  --amber: #111111;
  --amber-light: #555555;
  --sage: #4A4A4A;
  --rust: #222222;
  --paw: #E0E0E0;
  --shadow: rgba(0,0,0,0.10);

  /* Extended palette for polish */
  --white: #FFFFFF;
  --gray-50: #F8F8F8;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-300: #C8C8C8;
  --gray-400: #A0A0A0;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --gray-700: #333333;
  --gray-800: #1E1E1E;
  --gray-900: #111111;
  --accent: #111111;
  --accent-hover: #333333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--bark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */

 nav {
    /* position: fixed;*/
     top: 0; left: 0; right: 0; z-index: 100; 
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 30px;
    background: rgba(253,250,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44,26,14,0.08);
    transition: box-shadow 0.3s;
  }
nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: var(--gray-900);
  letter-spacing: 3px; text-transform: uppercase;
}
.nav-logo span { color: var(--gray-500); }
.nav-logo img {  height: 120px;
  width: 120px; 
  border-radius: 50%; 
  object-fit: cover; 
  display: block;
}
.nav-cta {
  background: var(--gray-900);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 3px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--gray-700);
  transform: translateY(-1px);
}


 /* HERO */
  
    .hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 60px 80px 80px; position: relative; z-index: 2;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--amber-light); color: var(--gray-200);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; margin-bottom: 28px; width: fit-content;
  }
 .hero-badge::before { content: '🐾'; font-size: 13px; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 900;
  line-height: 1.06;color: var(--gray-900); margin-bottom: 28px;
  letter-spacing: -0.5px;
}
h1 em {
  font-style: italic;
  color: var(--gray-900);
  position: relative;
  display: inline-block;
  text-decoration: none;
}
h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--gray-300);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow 0.8s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 16px; line-height: 1.75;
  color: var(--gray-500);
  max-width: 460px; margin-bottom: 20px;
  font-weight: 300;
}
.hero-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-400);
  margin-bottom: 40px; font-weight: 500;
  letter-spacing: 0.3px;
}
.hero-location::before { content: '📍'; }
.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 36px; border-radius: 3px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block; position: relative; overflow: hidden;
  border: 2px solid var(--gray-900);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-note { font-size: 12px; color: var(--gray-400); font-weight: 500; letter-spacing: 0.3px; }
.btn-note strong { color: var(--gray-700); }
.hero-right { position: relative; overflow: hidden; background: var(--gray-100); }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, rgba(250,250,250,0.2) 25%, transparent 50%);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--gray-900); color: var(--white);
  padding: 22px 80px;
  display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--gray-800);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }
.trust-item span { font-size: 18px; }

/* ─── SHARED SECTIONS ─── */
section { padding: 100px 80px; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 700;
  line-height: 1.15; color: var(--gray-900); margin-bottom: 28px;
  letter-spacing: -0.3px;
}

/* ─── PROBLEM / SOLUTION ─── */
.ps-section { background: var(--gray-50); position: relative; overflow: hidden; }
.ps-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--gray-200) 0%, transparent 70%);
  opacity: 0.5; border-radius: 50%;
}
.ps-intro { max-width: 600px; margin-bottom: 64px; }
.ps-intro p { font-size: 20px; line-height: 1.6; color: var(--gray-500); font-style: italic; }
.ps-grid {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  border: 1.5px solid var(--gray-900); border-radius: 4px; overflow: hidden;
}
.ps-card { padding: 40px 36px; transition: background 0.3s; }
.ps-card:hover { background: rgba(0,0,0,0.02); }
.ps-card.problem { background: var(--gray-900); color: var(--white); }
.ps-card.problem:hover { background: var(--gray-800); }
.ps-card-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; opacity: 0.5; }
.ps-card p { font-size: 15px; line-height: 1.65; font-weight: 400; }
.ps-card.solution .ps-card-label { color: var(--gray-400); }
.ps-card.divider { background: var(--gray-200); display: flex; align-items: center; justify-content: center; padding: 20px; }
.ps-card.divider span { font-size: 22px; color: var(--gray-600); }

/* ── SERVICES ── */
section:has(.services-grid) {
  background: var(--gray-900);
}

section:has(.services-grid) h2 {
  color: var(--white);
}

section:has(.services-grid) .section-label {
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 34px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 13px; line-height: 1.7;
  color: var(--gray-400);
  font-weight: 300;
}

.service-tag {
  display: inline-block; margin-top: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  border: 1px solid var(--gray-600);
  padding: 4px 12px; border-radius: 100px;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* ─── TESTIMONIALS ─── */.testimonials-section {
  background: var(--gray-900);
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section .section-label {
  color: #f5f5f5;
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
}

.testimonials-section .label {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.testimonials-section h2 { 
  color: var(--bark); 
}
.testimonials-section .section-label { 
  color: var(--gray-900); 
}
.testimonials-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  margin-top: 56px; 
}


.t-card {
  background: #f4f4f5; 
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  color: #1a1a1a; 
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin: 7px;
   
  position: relative; 
  overflow: hidden;
}

.t-card:hover {
  background: #111111; 
  color: #f4f4f5; 
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.t-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(30%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}


.t-card:hover > img {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t-card::before {
  content: '\201C';
  position: absolute; 
  top: calc(75% - 48px); 
  right: 20px;
  font-family: 'Playfair Display', serif; 
  font-size: 90px; 
  color: var(--accent);
  opacity: 0.06; 
  line-height: 1;
  pointer-events: none;
}

.t-card .t-author { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin: 24px 24px 16px; 
}

.t-avatar {
  width: 42px; 
  height: 42px; 
  border-radius: 50%;
  background: #e4e4e7;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 700; 
  font-size: 14px; 
  flex-shrink: 0;
  letter-spacing: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.t-card:hover .t-avatar {
  background: #27272a;
  color: #ffffff;
  border-color: rgba(255,255,255,0.15);
}

.t-name { 
  font-weight: 600; 
  font-size: 14px; 
  color: inherit; 
}

.t-stars { 
  font-size: 11px; 
  color: #71717a; 
  margin-top: 3px; 
  letter-spacing: 1px; 
  transition: color 0.3s ease;
}
.t-card:hover .t-stars {
  color: #a1a1aa; 
}

.t-text { 
  font-size: 13px; 
  line-height: 1.75; 
  color: inherit; 
  opacity: 0.85; 
  font-weight: 400; 
  padding: 0 24px 28px; 
}
/* ─── VIDEOS ─── */
.videos-section { background: var(--gray-50); }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.video-wrap {
  border-radius: 4px; overflow: hidden; aspect-ratio: 9/16;
  background: var(--gray-900); position: relative;
  border: 1px solid var(--gray-200);
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 40%);
  pointer-events: none;
}

/* ─── ABOUT ─── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-accent {
  position: absolute; top: -16px; left: -16px;
  width: 100px; height: 100px;
  border: 2px solid var(--gray-300); border-radius: 2px; z-index: 0;
}
.about-visual { position: relative; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700; line-height: 1.35; color: var(--gray-900);
  position: relative; z-index: 1; padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  box-shadow: 8px 8px 0 var(--gray-200);
}
.about-text p { font-size: 15px; line-height: 1.8; color: var(--gray-500); margin-bottom: 20px; font-weight: 300; }

/* ─── FAQ ─── */
.faq-section { background: var(--gray-50); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 56px; }
.faq-item {
  background: var(--white); border-radius: 3px; padding: 30px 32px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; cursor: pointer;
}
.faq-item:hover {
  border-color: var(--gray-900);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 12px;
}
.faq-q::before {
  content: 'Q';
  background: var(--gray-900); color: var(--white);
  font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 2px;
  flex-shrink: 0; margin-top: 3px; font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}
.faq-a { font-size: 14px; line-height: 1.7; color: var(--gray-500); font-weight: 300; padding-left: 34px; }

/* ─── CONTACT / FORM SECTION ─── */
.form-section { background: var(--gray-900); color: var(--white); position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  border-radius: 50%;
}
.form-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
.form-inner h2 { color: var(--white); }
.form-inner .section-label { color: var(--gray-500); }
.form-inner > p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 48px; line-height: 1.7; font-weight: 300; }

.contact-channels {
  display: flex;
  align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 3px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  min-width: 160px; justify-content: center;
  font-family: 'DM Sans', sans-serif;
}
.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.contact-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-btn.call { background: var(--white); color: var(--gray-900); }
.contact-btn.call:hover { background: var(--gray-100); }
.contact-btn.whatsapp { background: #25D366; color: #fff; }
.contact-btn.facebook { background: #1877F2; color: #fff; }
.contact-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.form-note { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; letter-spacing: 0.3px; }


/* ── LEAD FORM ── */
.form-section {
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  border-radius: 50%;
}
.form-inner {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 1; text-align: center;
}
.form-inner h2 { color: var(--white); }

.form-inner .section-label { color: var(--gray-400); }

.form-inner > p {
  font-size: 15px; color: var(--gray-400);
  margin-bottom: 40px; line-height: 1.7; font-weight: 300;
}

.lead-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-500);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 6px; padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-600); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gray-400);
  background: var(--gray-700);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--gray-800); color: var(--white); }
.form-group textarea { resize: none; min-height: 100px; }

.form-submit {
  grid-column: 1 / -1;
  background: var(--white); color: var(--gray-900);
  border: none; cursor: pointer;
  padding: 16px 40px; border-radius: 6px;
  font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; width: 100%; letter-spacing: 0.3px;
}
.form-submit:hover {
  background: var(--gray-200);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.1);
}

.form-note {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: var(--gray-600);
}

@media (max-width: 640px) {
  .lead-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-submit { grid-column: 1; }
}

/* ─── FOOTER ─── */
footer {
  background: var(--gray-900);
  padding: 40px 80px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border-top: 2px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  grid-column: 1; grid-row: 1;
}
.footer-logo span { color: var(--gray-500); }
footer > p:first-of-type {
  font-size: 12px; color: rgba(255,255,255,0.3);
  grid-column: 2; grid-row: 1;
  text-align: center; letter-spacing: 0.3px;
}
footer > p:last-of-type {
  font-size: 11px; color: rgba(255,255,255,0.18);
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 24px; padding-top: 20px;
  letter-spacing: 0.5px;
}
.footer-social {
  display: flex; align-items: center; gap: 10px;
  grid-column: 3; grid-row: 1;
}
.footer-social a {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 3px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.footer-social a:hover { transform: translateY(-2px); opacity: 0.85; }
.footer-social a svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-fb { background: #1877F2; color: #fff; }
.social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  section { padding: 80px 40px; }
  nav { padding: 0 24px; }
  footer { padding: 32px 40px 24px; }
  .trust-bar { padding: 20px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 40px 60px; }
  .hero-right { height: 420px; }
  .hero-video-overlay { background: linear-gradient(to bottom, var(--warm-white) 0%, transparent 30%); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .ps-grid { grid-template-columns: 1fr; }
  .ps-card.divider { display: none; }
}
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    padding: 36px 24px 20px;
    text-align: center; gap: 16px;
  }
  footer > p:first-of-type { grid-column: 1; grid-row: 2; }
  .footer-social { grid-column: 1; grid-row: 3; justify-content: center; }
}
@media (max-width: 640px) {
  section { padding: 60px 24px; }
  nav { padding: 0 20px; }
  .trust-bar { padding: 16px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  h1 { font-size: 36px; }
  .hero-left { padding: 80px 24px 60px; }
  .footer-social { flex-direction: column; align-items: center; }
  .contact-channels { flex-direction: column; align-items: stretch; }
  .contact-btn { min-width: unset; }
}