:root {
  --bg: #050505;
  --bg-alt: #0e0e10;
  --bg-soft: #151515;
  --accent: #f5f5f5;
  --accent-soft: rgba(249, 249, 249, 0.14);
  --accent-strong: rgba(249, 249, 249, 0.22);
  --accent-grad: linear-gradient(135deg, #ffffff, #d4d4d4);
  --text: #f9fafb;
  --text-soft: #a3a3a3;
  --border-subtle: rgba(170, 170, 170, 0.25);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.9);
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000000;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  padding-top: var(--nav-height);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  padding: 5rem 0;
  background: radial-gradient(circle at top right, #151515 0, #000000 60%);
}

.section + .section,
.section + .section-alt,
.section-alt + .section {
  border-top: 1px solid rgba(0, 0, 0, 0.9);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0.75rem;
}

.section-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.975rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(170, 170, 170, 0.55);
  background: radial-gradient(circle at top left, rgba(245, 245, 245, 0.08), transparent 65%);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-grad);
}

/* Header & Nav */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.98),
    rgba(0, 0, 0, 0.9),
    transparent
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.9);
}

.header-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  color: #e5e5e5;
  opacity: 0.85;
  transition: opacity 0.18s ease, color 0.18s ease, transform 0.16s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(170, 170, 170, 0.6);
  background: radial-gradient(circle at top left, rgba(245, 245, 245, 0.05), transparent 65%);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background-image: var(--accent-grad);
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(248, 250, 252, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(248, 250, 252, 0.05);
}

.btn:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(248, 250, 252, 0.04);
}

.btn-ghost {
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.04), transparent 65%);
  color: #e5e5e5;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(170, 170, 170, 0.65);
}

.btn-ghost:hover {
  filter: none;
  border-color: rgba(248, 250, 252, 0.9);
}

.btn-small {
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(170, 170, 170, 0.7);
  box-shadow: none;
  color: #e5e5e5;
}

.btn-small:hover {
  background: rgba(0, 0, 0, 0.85);
}

.full-width {
  width: 100%;
}

/* Hero */

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.35rem, 3.6vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
}

.hero-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.hero-meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3a3a3;
  margin-bottom: 0.15rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, #1a1a1a 0, #050505 60%);
  border: 1px solid rgba(170, 170, 170, 0.4);
  box-shadow: var(--shadow-soft);
}

.hero-card.main {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 1.4rem 1.4rem 1.1rem;
  overflow: hidden;
}

.hero-dog {
  border-radius: calc(var(--radius-xl) - 8px);
  height: 260px;
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 250, 252, 0.1) 0, transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(0, 0, 0, 0.5) 0, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(24, 24, 27, 0.7) 0, transparent 50%),
    url("Bruno.jpg")
      center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-dog::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.1), transparent 65%);
}

.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.85);
  background: radial-gradient(circle at top left, rgba(250, 250, 250, 0.9), #f5f5f5);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(255, 255, 255, 0.85);
}

.hero-card.secondary {
  position: absolute;
  right: -0.75rem;
  bottom: 3.5rem;
  padding: 0.75rem 1rem;
  max-width: 170px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.94));
}

.hero-stat-number {
  font-size: 1.6rem;
  margin: 0 0 0.1rem;
  font-weight: 600;
}

.hero-stat-number span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: radial-gradient(circle at top left, #181818 0, #050505 55%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 170, 170, 0.4);
  padding: 1.4rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.service-price {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #e5e5e5;
  border: 1px solid rgba(248, 250, 252, 0.04);
}

.service-tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.service-list {
  margin: 0.25rem 0 0.4rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.service-list li + li {
  margin-top: 0.2rem;
}

.service-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.addons {
  margin-top: 2.75rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 170, 170, 0.45);
  background: radial-gradient(circle at top left, #181818 0, #050505 60%);
  box-shadow: var(--shadow-soft);
}

.addons h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.addon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: space-between;
}

.addon-name {
  color: #e5e7eb;
}

.addon-price {
  color: #e5e5e5;
}

.addon-dot {
  flex: 1;
  height: 1px;
  margin: 0 0.4rem;
  background: repeating-linear-gradient(
    to right,
    rgba(170, 170, 170, 0.7),
    rgba(170, 170, 170, 0.7) 4px,
    transparent 4px,
    transparent 7px
  );
}

.addons-note {
  margin: 1.05rem 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.about-content p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.about-list {
  margin: 1.3rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.about-list li + li {
  margin-top: 0.2rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.highlight-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 170, 170, 0.45);
  background: radial-gradient(circle at top left, #151515 0, #050505 62%);
  padding: 1.1rem 1.25rem 1.05rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.highlight-card h3 {
  margin: 0 0 0.6rem;
  font-size: 0.98rem;
}

.highlight-card.secondary {
  background: radial-gradient(circle at top, rgba(220, 220, 220, 0.22), #050505 58%);
}

.quote {
  margin: 0 0 0.5rem;
  color: #e5e7eb;
}

.quote-attribution {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-content p {
  margin: 0 0 1.2rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2rem;
  font-size: 0.9rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a3a3a3;
  margin-bottom: 0.2rem;
}

.contact-details a {
  color: #e5e5e5;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 1.4rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(170, 170, 170, 0.5);
  background: radial-gradient(circle at top left, #050505 0, #050505 62%);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

.form-field label {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(170, 170, 170, 0.55);
  background: rgba(0, 0, 0, 0.85);
  color: #e5e5e5;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #737373;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(245, 245, 245, 0.7);
  background: rgba(0, 0, 0, 0.95);
}

.form-helper {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* Footer */

.site-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at top center, #050505 0, #000000 70%);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
  color: #e5e5e5;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .hero {
    padding-top: 5.2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: calc(var(--nav-height) - 0.3rem);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem 1rem;
    background: radial-gradient(circle at top, #050505 0, #050505 52%);
    border-radius: 0 0 18px 18px;
    border: 1px solid rgba(0, 0, 0, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.95);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links .btn-small {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 5rem 0 3.5rem;
  }

  .hero-card.secondary {
    right: 0;
    bottom: 2.4rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .addons-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid,
  .contact-grid {
    gap: 2rem;
  }

  .contact-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .header-inner {
    gap: 0.75rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-card.main {
    max-width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .section-alt {
    padding: 4rem 0;
  }
}
