:root {
  --bg: #f4f6f5;
  --paper: #ffffff;
  --ink: #243536;
  --muted: #667579;
  --teal: #139c96;
  --teal-dark: #0d6f6d;
  --teal-soft: #dff5f3;
  --charcoal: #1e3032;
  --magenta: #c2187a;
  --line: rgba(36, 53, 54, 0.13);
  --shadow: 0 18px 45px rgba(20, 42, 43, 0.1);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top right,
      rgba(19, 156, 150, 0.11),
      transparent 34rem
    ),
    radial-gradient(
      circle at 8% 18%,
      rgba(194, 24, 122, 0.06),
      transparent 20rem
    ),
    var(--bg);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--charcoal);
}

h1,
h2,
.brand-name {
  font-family: "Playfair Display", Georgia, serif;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--charcoal);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 99;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(244, 246, 245, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-link img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.logo-link span {
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(31, 49, 51, 0.15);
}

.mobile-toggle {
  display: none;
}

.hero {
  padding: 70px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 42px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.sparkle {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: var(--teal);
  clip-path: polygon(
    50% 0,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0 50%,
    38% 38%
  );
}

.sparkle.magenta {
  background: var(--magenta);
  width: 13px;
  height: 13px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  max-width: 780px;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--teal-dark);
  font-style: italic;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 680px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal-dark);
  color: white;
  box-shadow: 0 14px 30px rgba(13, 111, 109, 0.22);
}

.btn-secondary {
  background: rgba(13, 111, 109, 0.4);
  border-color: var(--line);
  color: var(--charcoal);
}

.hero-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 52%;
  height: 52%;
  border-radius: 999px;
  background: rgba(19, 156, 150, 0.18);
  filter: blur(20px);
}

.hero-card img {
  border-radius: 26px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 70px 0 34px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.18rem;
  margin-top: 20px;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}

.section-header p {
  max-width: 560px;
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(20, 42, 43, 0.06);
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  text-decoration: underline;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(13, 111, 109, 0.2);
  color: var(--teal-dark);
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 0;
}

.banner-strip {
  padding: 28px 0 62px;
}

.banner-strip img {
  width: 100%;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "✦";
  color: var(--teal);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.section-actions {
  margin-top: 32px;
}

.project-card {
  min-height: 250px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(223, 245, 243, 0.52)
  );
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(20, 42, 43, 0.06);
}

.project-card .tag {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

/* DJ Grand Daddy gradient title */
.grand-daddy-title {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #00d9ff, #7657ff, #ff2e93);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.form {
  display: grid;
  gap: 14px;
}

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

label {
  font-weight: 800;
  color: var(--charcoal);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--teal-dark);
}

/* 2026 refresh: portfolio additions */

.project-card > a {
  color: var(--teal-dark);
  font-weight: 800;
}

.project-card > a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 0.84rem;
  margin: 4px 0 0;
}

.contact-direct {
  margin-top: 28px;
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--charcoal);
}

.about-cards .card {
  min-height: 180px;
}

.panel a:not(.btn),
.card a:not(.btn) {
  color: var(--teal-dark);
  font-weight: 700;
}

.panel a:not(.btn):hover,
.card a:not(.btn):hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    border-radius: 12px;
    padding: 9px 12px;
    font-weight: 900;
    color: var(--charcoal);
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 42px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

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

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .project-card h3 {
    font-size: 1.2rem;
  }

  .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
