:root {
  /* Sunset Co. Modern Design System - Professional Light Theme */
  --sunset-orange: #FB9D4B;
  --sunset-rose: #D15E5E;
  --sunset-purple: #4D4E7B;
  --sunset-dark: #2D2E4A;

  --bg: #fdfdfd;
  /* Soft off-white */
  --card: rgba(255, 255, 255, 0.9);
  /* Glass translucent on light */
  --card-alt: rgba(240, 240, 245, 0.5);
  --text: #1a1a1a;
  /* Deep charcoal */
  --text-secondary: #374151;
  /* Slate gray */
  --muted: #6b7280;
  /* Soft gray */
  --line: rgba(0, 0, 0, 0.06);
  --accent: var(--sunset-orange);
  --accent-gradient: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-rose) 100%);
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-heavy: rgba(0, 0, 0, 0.12);
  --glow: rgba(251, 157, 75, 0.1);

  /* Premium spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Luxury radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(251, 157, 75, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(209, 94, 94, 0.03) 0%, transparent 40%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth
}

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

a:hover {
  opacity: .8
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 18px
}

.nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px var(--shadow);
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 90px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-logo {
  width: 250px;
  height: auto;
  max-height: 140px;
  /* Pop out slightly without affecting nav height */
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
  display: block;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.navlinks {
  display: flex;
  gap: 28px;
  flex-wrap: wrap
}

.navlinks a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.navlinks a:hover {
  color: var(--text)
}

.navlinks a:hover::after {
  width: 100%
}

.navlinks a.active {
  color: var(--text);
  font-weight: 700
}

.navlinks a.active::after {
  width: 100%
}

.hero {
  padding: 8rem 0 6rem;
  text-align: center
}

.kicker {
  color: var(--sunset-rose);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  line-height: 1.05;
  margin: 0 0 24px;
  background: linear-gradient(135deg, var(--text) 30%, var(--sunset-rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.sub {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 19px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 400
}

/* Proof Bar */
.proof-bar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  margin: 4rem 0;
  box-shadow: 0 10px 40px var(--shadow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center
}

.proof-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 6px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--sunset-rose);
}

.btn.primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(209, 94, 94, 0.2);
}

.btn.primary:hover {
  box-shadow: 0 15px 30px rgba(251, 157, 75, 0.3);
  transform: translateY(-5px) scale(1.02);
}

.btn.secondary {
  background: var(--card);
  color: var(--text);
}

.btn.secondary:hover {
  background: var(--bg);
  border-color: var(--sunset-orange);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin: 32px 0
}

.card {
  grid-column: span 6;
  background: var(--card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-heavy);
  border-color: var(--sunset-orange);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text)
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 16px;
}


/* Package Cards */
.package-card {
  position: relative;
  text-align: center
}

.package-card ul {
  text-align: left;
  margin: 16px 0;
  padding-left: 20px
}

.package-card li {
  margin-bottom: 8px
}

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1)
}

.package-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin: 40px 0
}

.process-step {
  text-align: center;
  padding: 40px;
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.4s ease;
}

.process-step:hover {
  background: var(--bg);
  border-color: var(--sunset-rose);
  box-shadow: 0 12px 30px var(--shadow-heavy);
  transform: translateY(-6px);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-step h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text)
}

.process-step p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6
}

.section {
  margin: 8rem 0
}

.section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 0%, var(--sunset-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section .desc {
  color: var(--text-secondary);
  margin: 0 0 40px;
  font-size: 19px;
  line-height: 1.6;
  max-width: 800px
}

/* About section layout */
.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: start;
  margin-top: 32px
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-member {
  text-align: center;
}

.headshot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px var(--shadow);
  transition: all 0.4s ease;
}

.team-member:hover .headshot {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px var(--shadow-heavy);
  border-color: var(--sunset-rose);
}

.member-info {
  margin-top: 20px;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.member-role {
  font-size: 14px;
  color: var(--sunset-rose);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-text .desc {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-secondary);
}

.work {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.workItem {
  grid-column: span 6;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Gradient border effect */
.workItem::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 231, 235, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-heavy);
  border-color: var(--sunset-orange);
}

.workItem:hover::after {
  opacity: 0.6
}

.workItem:hover::before {
  opacity: 1
}

/* Ensure content stays above borders */
.workItem>* {
  position: relative;
  z-index: 1
}

.thumb {
  height: 220px;
  background: var(--card-alt);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--accent);
  overflow: hidden;
  position: relative;
}

.thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.02));
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.workItem:hover .thumb img {
  transform: scale(1.08);
}

.workBody {
  padding: 24px
}

.workTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

.workTitle strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.badge {
  font-size: 12px;
  color: white;
  font-weight: 700;
  background: var(--accent-gradient);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(251, 157, 75, 0.2);
}

.meta {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 120px;
  padding: 80px 0;
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(10px);
}

code {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Active nav highlighting */
.navlinks a.active {
  color: var(--accent);
  font-weight: 600;
}

/* Calendly Widget Styling */
.calendly-inline-widget {
  margin: 32px 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px var(--shadow);
  border: 1.5px solid var(--line);
}

@media (max-width: 768px) {
  .container {
    padding: 24px 20px
  }

  .hero {
    padding: 4rem 0 3rem
  }

  .navlinks {
    display: none
  }

  /* Hide nav on mobile for cleaner look */
  .cta {
    flex-direction: column;
    gap: 16px
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px
  }

  .card {
    grid-column: span 12;
    padding: 20px
  }

  .workItem {
    grid-column: span 12
  }

  .section {
    margin: 4rem 0
  }

  /* Mobile responsive for premium sections */
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .proof-bar {
    padding: 24px 20px
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .step-number {
    font-size: 28px
  }

  /* About section mobile */
  .about-content {
    grid-template-columns: 1fr;
    text-align: center
  }

  .headshot {
    width: 150px;
    height: 150px;
    margin: 0 auto
  }

  /* Mobile Calendly widget */
  .calendly-inline-widget {
    height: 600px !important;
    min-width: 100% !important;
  }

  /* Mobile typography adjustments */
  h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem)
  }

  .kicker {
    font-size: 14px;
    margin-bottom: 12px
  }

  .sub {
    font-size: 16px;
    margin-bottom: 24px
  }
}

@media (max-width: 992px) {
  .container {
    padding: 24px 32px
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    height: 48px;
  }

  .hero {
    padding: 6rem 0 4rem
  }

  .navlinks {
    display: none
  }

  .cta {
    flex-direction: column;
    gap: 16px
  }

  .btn {
    width: 100%;
  }

  .card {
    grid-column: span 12;
    padding: 32px
  }

  .workItem {
    grid-column: span 12
  }

  .section {
    margin: 5rem 0
  }

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

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }

  .proof-bar {
    padding: 32px 24px
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .step-number {
    font-size: 36px
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4rem)
  }

  .sub {
    font-size: 17px;
  }
}