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

:root {
  --pink: #F8D7DC;
  --pink-light: #FDF0F2;
  --green: #C8E6D8;
  --green-light: #E4F3EC;
  --beige: #FDFAF7;
  --beige-dark: #F5EFE8;
  --dark: #2A2A2A;
  --muted: #7A6E6A;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--beige);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; color: var(--pink); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.hidden { display: none; }

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* ===== AVAILABILITY ===== */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--green);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.avail-dot {
  width: 8px;
  height: 8px;
  background: #4caf7d;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-pink { background: var(--pink); color: var(--dark); }
.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-dark);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.nav-sub { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 10rem 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--beige) 55%, var(--green-light) 100%);
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-text {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat { display: flex; flex-direction: column; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-langs { font-size: 0.7rem; color: var(--pink); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--beige-dark); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-socials { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--dark); }
.social-link svg { width: 18px; height: 18px; }

/* Hero visual */
/* Hero dog image */
.hero-dog-wrap {
  position: absolute;
  bottom: 20px;
  left: -40px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
  animation: float 4s ease-in-out infinite 1.5s;
}

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

.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-start; }

.hero-image-wrap {
  width: 400px;
  height: 520px;
  border-radius: 200px 200px 180px 180px;
  overflow: hidden;
  background: var(--pink-light);
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

.hero-img-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--pink-light);
}

/* Testimonial bubble */
.testimonial-bubble {
  position: absolute;
  bottom: -20px;
  right: -10px;
  max-width: 240px;
  background: var(--white);
  border-radius: 20px 20px 4px 20px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  border: 1px solid var(--beige-dark);
}
.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.testimonial-author {
  display: block;
  margin-top: 0.6rem;
  font-weight: 600;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--dark);
}

/* ===== BRANDS MARQUEE ===== */
.brands {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.marquee-wrapper { overflow: hidden; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.brand-dot {
  color: var(--pink);
  font-size: 1.2rem;
}

.brand-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.2s;
  cursor: default;
}

.brand-logo:hover { opacity: 1; }

/* Brand-specific styling */
.brand-always   { font-style: italic; text-transform: lowercase; font-size: 1.15rem; }
.brand-visa     { color: #1a1f71; letter-spacing: 0.08em; }
.brand-colgate  { color: #e2231a; }
.brand-nicks    { font-style: italic; letter-spacing: 0.02em; }
.brand-organic  { font-weight: 400; letter-spacing: 0.06em; }
.brand-femina   { font-style: italic; font-weight: 400; text-transform: none; }
.brand-bronza   { letter-spacing: 0.1em; }
.brand-scandy   { font-weight: 400; text-transform: lowercase; }
.brand-lyko     { letter-spacing: 0.12em; }
.brand-dashl    { font-weight: 600; }

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 5%;
  text-align: center;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.tcard {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  border: 1px solid var(--beige-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.tcard-quote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.tcard-brand {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  padding: 4px 10px;
  background: var(--pink-light);
  border-radius: 100px;
  align-self: flex-start;
}

/* ===== PROCESS ===== */
.process {
  padding: 6rem 5%;
  background: var(--white);
}

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

.process-left {
  text-align: left;
}

.process-right {
  width: 340px;
  flex-shrink: 0;
}

.process-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  width: 170px;
  text-align: center;
  flex-shrink: 0;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

.process-arrow {
  font-size: 1.5rem;
  color: var(--pink);
  align-self: center;
  padding: 0 0.5rem;
  margin-top: -1rem;
}

.work-extra {
  margin-bottom: 2rem;
}

/* MAGNUM SNAPSHOTS inline section */
.magnum-snapshots {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1.5px solid #F5E6B8;
}

.magnum-snap-header {
  text-align: center;
  margin-bottom: 2rem;
}

.magnum-snap-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FDF3CC, #F5E6A0);
  color: #7A5C00;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.magnum-snap-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--dark);
  line-height: 1.2;
}

.magnum-snap-title em {
  font-style: italic;
  color: #C8961E;
}

.magnum-snap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.snap-card {
  border-radius: 20px;
  overflow: hidden;
  background: #FDF6E3;
  box-shadow: 0 6px 28px rgba(200, 150, 30, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.snap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(200, 150, 30, 0.25);
}

.snap-card video,
.snap-card img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.magnum-arrow { font-size: 1rem; }

/* ===== WORK ===== */
.work {
  padding: 6rem 5%;
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.video-wrap { aspect-ratio: 9/16; position: relative; }

.video-wrap video,
.video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--beige-dark);
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--beige-dark);
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.video-brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}

.video-category {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--pink-light);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--pink-light), var(--beige) 60%, var(--green-light));
  display: flex;
  justify-content: center;
}

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

.contact-inner { max-width: 560px; width: 100%; text-align: center; }

.contact-image {
  width: 320px;
  flex-shrink: 0;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: block;
}
.contact-sub { color: var(--muted); margin-bottom: 2.5rem; }

.contact-form { text-align: left; }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--dark); letter-spacing: 0.03em; }

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A8A4; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 5%;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .nav-name { color: var(--white); }
.footer .nav-sub { color: #888; }

.footer-socials { display: flex; gap: 2rem; }
.footer-socials a { color: #888; font-size: 0.85rem; transition: color 0.2s; }
.footer-socials a:hover { color: var(--pink); }

.footer-copy { color: #555; font-size: 0.78rem; width: 100%; text-align: center; margin-top: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    text-align: center;
  }
  .hero-text, .hero-ctas, .hero-socials, .hero-stats { justify-content: center; }
  .hero-ctas, .hero-socials, .hero-stats { display: flex; justify-content: center; }
  .hero-text { margin: 0 auto 2rem; }
  .hero-visual { margin-top: 2rem; }
  .testimonial-bubble { right: 0; bottom: -40px; }
  .process-arrow { display: none; }
  .process-steps { gap: 1rem; }
  .process-inner { grid-template-columns: 1fr; }
  .process-right { width: 100%; }
  .process-left { text-align: center; }
  .process-steps { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-image { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--beige); padding: 1.5rem 5%; border-bottom: 1px solid var(--beige-dark); gap: 1.2rem; }
  .nav-toggle { display: block; }
  .hero-image-wrap { width: 260px; height: 340px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-socials { justify-content: center; }
}
