/* =========================================================
   DOGGY STYLE — Main Stylesheet
   Mobile-first, black & pink palette
   ========================================================= */

/* ---------------------------------------------------------
   TOKENS
   --------------------------------------------------------- */
:root {
  /* Brand */
  --pink:        #e8416a;
  --pink-light:  #f9d0da;
  --pink-dark:   #c0274f;
  --pink-pale:   #fdf0f3;

  /* Neutral (warm-tinted) */
  --ink:         #140d10;
  --ink-70:      #4a3540;
  --ink-40:      #9a7f88;
  --ink-10:      #f5f0f2;
  --surface:     #fdf8f9;
  --white:       #fffcfd;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing (fluid) */
  --space-xs:   clamp(0.5rem,  1vw, 0.75rem);
  --space-sm:   clamp(0.75rem, 2vw, 1rem);
  --space-md:   clamp(1rem,    3vw, 1.5rem);
  --space-lg:   clamp(1.5rem,  4vw, 2.5rem);
  --space-xl:   clamp(2.5rem,  6vw, 4rem);
  --space-2xl:  clamp(4rem,    8vw, 7rem);

  /* Type scale (fluid) */
  --text-sm:    clamp(0.8rem,   1.5vw, 0.875rem);
  --text-base:  clamp(0.95rem,  2vw,   1rem);
  --text-lg:    clamp(1.05rem,  2.5vw, 1.125rem);
  --text-xl:    clamp(1.2rem,   3vw,   1.375rem);
  --text-2xl:   clamp(1.5rem,   4vw,   2rem);
  --text-3xl:   clamp(2rem,     5vw,   3rem);
  --text-4xl:   clamp(2.5rem,   6vw,   4rem);

  /* Misc */
  --radius:     0.75rem;
  --radius-lg:  1.5rem;
  --radius-full: 999px;
  --shadow-sm:  0 1px 3px rgba(20,13,16,.08), 0 1px 2px rgba(20,13,16,.06);
  --shadow-md:  0 4px 16px rgba(20,13,16,.1), 0 2px 6px rgba(20,13,16,.06);
  --shadow-lg:  0 12px 40px rgba(20,13,16,.12), 0 4px 12px rgba(20,13,16,.08);
  --transition: 200ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ---------------------------------------------------------
   UTILITIES
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.section {
  padding-block: var(--space-2xl);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

.section-sub {
  color: var(--ink-70);
  font-size: var(--text-lg);
  max-width: 36rem;
  margin-inline: auto;
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.75em;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  box-shadow: 0 4px 20px rgba(232,65,106,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn--sm {
  padding: 0.55em 1.2em;
  font-size: var(--text-sm);
}

.btn--full { width: 100%; }

/* ---------------------------------------------------------
   NAV
   --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.is-scrolled {
  background: var(--ink);
  box-shadow: 0 2px 20px rgba(20,13,16,.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-sm);
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.35em;
  letter-spacing: -.01em;
}

.nav__logo-mark {
  color: var(--pink);
  font-size: .8em;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.nav__menu a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}

.nav__menu a:hover { color: var(--white); }
.nav__menu a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 3px;
}

.nav__cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.5em 1.25em;
  border-radius: var(--radius-full);
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--pink-dark) !important; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* Mobile menu open */
.nav__menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  z-index: -1;
}

.nav__menu.is-open a {
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu { display: flex !important; position: static; background: none; flex-direction: row; }
  .nav__menu a { font-size: var(--text-sm); }
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: .4;
}

.hero__blob--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.hero__blob--2 {
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(circle, #8b1840 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  padding-top: calc(var(--space-2xl) + 4rem);
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100svh;
  }
}

.hero__content { color: var(--white); }

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  line-height: 1.1;
  margin-block: var(--space-sm) var(--space-md);
}

.hero__headline em {
  font-style: italic;
  color: var(--pink);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  max-width: 38ch;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero__ring {
  width: clamp(200px, 40vw, 320px);
  height: clamp(200px, 40vw, 320px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #8b1840 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(232,65,106,.4);
}

.hero__ring-inner {
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: rgba(20,13,16,.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__emoji {
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
}

.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  padding: 0.6em 1em;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero__float--1 {
  top: 12%;
  left: -2%;
  animation-delay: 0s;
}

.hero__float--2 {
  bottom: 12%;
  right: -2%;
  animation-delay: -2s;
}

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

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin-inline: auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.3) translateY(30px); transform-origin: top; }
}

/* ---------------------------------------------------------
   TRUST BAR
   --------------------------------------------------------- */
.trustbar {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: var(--space-lg);
}

.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}

.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.trustbar__item strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--pink);
  line-height: 1.2;
}

.trustbar__item span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  margin-top: 0.2em;
}

.trustbar__sep {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
  display: none;
}

@media (min-width: 640px) {
  .trustbar__sep { display: block; }
}

/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */
.services {
  background: var(--surface);
}

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

@media (min-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.service-card--featured {
  background: var(--ink);
  border-color: var(--pink);
  color: var(--white);
}

.service-card--featured h3 { color: var(--white); }
.service-card--featured p  { color: rgba(255,255,255,.7); }

.service-card__tag {
  position: absolute;
  top: -0.75rem;
  left: var(--space-lg);
  background: var(--pink);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.2em 0.9em;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
}

.service-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--ink-70);
  line-height: 1.6;
  flex: 1;
}

.service-card__price {
  font-size: var(--text-base);
  color: var(--ink-40);
  margin-top: auto;
  padding-top: var(--space-xs);
}

.service-card--featured .service-card__price { color: rgba(255,255,255,.6); }
.service-card--featured .service-card__price strong { color: var(--pink); }

.service-card__price strong {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
}

/* ---------------------------------------------------------
   ABOUT
   --------------------------------------------------------- */
.about {
  background: var(--white);
}

.about__inner {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__shape {
  width: clamp(240px, 45vw, 380px);
  height: clamp(240px, 45vw, 380px);
  border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
  background: linear-gradient(145deg, var(--pink-pale) 0%, var(--pink-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morphBlob 8s ease-in-out infinite;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%; }
  33%       { border-radius: 55% 45% 40% 50% / 50% 40% 55% 45%; }
  66%       { border-radius: 40% 55% 50% 45% / 55% 45% 50% 40%; }
}

.about__shape-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
}

.about__badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background: var(--pink);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 90px;
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1;
}

.about__badge-label {
  font-size: var(--text-sm);
  opacity: .85;
}

.about__content { display: flex; flex-direction: column; gap: var(--space-md); }

.about__content p {
  color: var(--ink-70);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  color: var(--ink);
}

.about__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------- */
.testimonials {
  background: var(--ink);
}

.testimonials .eyebrow { color: var(--pink); }

.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--pink); }

.testimonials__grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background var(--transition), border-color var(--transition);
}

.tcard:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,65,106,.4);
}

.tcard--accent {
  background: var(--pink);
  border-color: var(--pink);
}

.tcard__stars {
  color: #fbbf24;
  font-size: var(--text-base);
  letter-spacing: .05em;
}

.tcard p {
  font-size: var(--text-base);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.tcard--accent p { color: rgba(255,255,255,.9); }

.tcard__footer {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  padding-top: var(--space-xs);
  border-top: 1px solid rgba(255,255,255,.1);
  font-style: normal;
}

.tcard__footer strong {
  color: var(--white);
  font-weight: 600;
}

.tcard__footer span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
}

/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */
.contact {
  background: var(--surface);
}

.contact__inner {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .contact__inner { grid-template-columns: 1fr 1fr; }
}

.contact__info { display: flex; flex-direction: column; gap: var(--space-md); }

.contact__info p {
  font-size: var(--text-lg);
  color: var(--ink-70);
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--ink-70);
  transition: color var(--transition);
}

a.contact__detail:hover { color: var(--pink); }

.contact__detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius);
  padding: 0.75em 1em;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-40);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,65,106,.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a7f88' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: var(--text-sm);
  color: var(--ink-40);
  text-align: center;
  margin-top: calc(-1 * var(--space-xs));
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  background: #dcfce7;
  color: #166534;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-base);
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.footer {
  background: var(--ink);
  padding-block: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.footer__logo span { color: var(--pink); }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

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

.footer__nav a:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 3px;
}

.footer__copy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.3);
}
