*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #020712;
  --bg-elevated: #050b1a;
  --bg-alt: #050814;
  --accent: #43ff9d;
  --accent-soft: rgba(67, 255, 157, 0.18);
  --accent-2: #5ce1ff;
  --text: #f7f7fb;
  --muted: #9ba4c4;
  --border-subtle: #171c2b;
  --danger: #ff5774;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.6);
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #0d1224 0, #020712 48%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(92, 225, 255, 0.06), transparent 55%),
              radial-gradient(circle at bottom right, rgba(67, 255, 157, 0.06), transparent 55%);
}

.section-header {
  margin-bottom: 2.5rem;
  text-align: left;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
}

/* Navbar */

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(2, 7, 18, 0.95), rgba(2, 7, 18, 0.75), transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 28, 43, 0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 10%, var(--accent-2), var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #020712;
  box-shadow: 0 0 25px rgba(92, 225, 255, 0.6);
}

.logo-text {
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

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

/* Hero */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(92, 225, 255, 0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(67, 255, 157, 0.2), transparent 55%),
    linear-gradient(to bottom, rgba(2, 7, 18, 0.7), #020712 60%, #020712 100%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.hero-section h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-section h1 span {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at top left, rgba(92, 225, 255, 0.12), transparent 70%);
  border: 1px solid rgba(92, 225, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hero-meta-value {
  font-size: 0.9rem;
}

/* Buttons */

.btn-primary,
.btn-ghost,
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent-2), var(--accent));
  color: #020712;
  box-shadow: 0 18px 40px rgba(1, 255, 167, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(1, 255, 167, 0.7);
}

.btn-primary-sm {
  padding: 0.4rem 1rem;
  background: rgba(67, 255, 157, 0.1);
  border-color: rgba(67, 255, 157, 0.4);
  color: var(--accent);
}

.btn-primary-sm:hover {
  background: rgba(67, 255, 157, 0.18);
}

.btn-ghost {
  border-color: rgba(155, 164, 196, 0.6);
  color: var(--text);
  background: rgba(2, 7, 18, 0.6);
}

.btn-ghost:hover {
  background: rgba(5, 11, 26, 0.95);
}

/* Cards & grids */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(92, 225, 255, 0.06), rgba(10, 12, 30, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 28, 43, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card-media {
  overflow: hidden;
}

.card-media video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.15);
  transform: scale(1.02);
}

.video-thumb {
  position: relative;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 7, 18, 0.6), transparent 40%);
  pointer-events: none;
}

.card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.card-body.only {
  padding: 1.7rem 1.6rem 1.8rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill-list li {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(67, 255, 157, 0.3);
  background: rgba(67, 255, 157, 0.08);
  color: var(--accent);
}

.pet-card .pill-list li {
  border-color: rgba(92, 225, 255, 0.35);
  background: rgba(92, 225, 255, 0.07);
  color: var(--accent-2);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  padding-top: 80%;
  background-image: radial-gradient(circle at top left, rgba(92, 225, 255, 0.3), transparent 55%),
                    linear-gradient(135deg, #0a0f20, #040814);
  overflow: hidden;
  border: 1px solid rgba(23, 28, 43, 0.98);
}

.gallery-item.tall {
  grid-row: span 2;
  padding-top: 140%;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  background: linear-gradient(to top, rgba(2, 7, 18, 0.88), transparent 40%);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-grid h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.checklist li::before {
  content: "●";
  margin-right: 0.45rem;
  color: var(--accent);
  font-size: 0.7rem;
}

.about-card {
  background: radial-gradient(circle at top left, rgba(92, 225, 255, 0.18), rgba(5, 8, 20, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(92, 225, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin-bottom: 1rem;
}

.meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.meta-list span {
  color: var(--text);
  font-weight: 500;
  margin-right: 0.3rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.contact-grid h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.contact-grid p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.contact-form {
  background: radial-gradient(circle at top left, rgba(92, 225, 255, 0.16), rgba(5, 8, 20, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92, 225, 255, 0.4);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(23, 28, 43, 0.95);
  background: rgba(2, 7, 18, 0.9);
  padding: 0.65rem 0.8rem;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(92, 225, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(92, 225, 255, 0.3);
}

.field textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(23, 28, 43, 0.85);
  padding: 1.5rem 0 2rem;
  background: radial-gradient(circle at top, rgba(92, 225, 255, 0.08), transparent 60%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-2);
}

/* Utilities */

.rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Responsive */

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

  .hero-section {
    padding-top: 6rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-meta {
    border-radius: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: auto;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
