/* ============================================
   THE DELIBERATE COMPANY - SHARED STYLES
   ============================================ */

:root {
  --navy: #3e4676;
  --navy-deep: #2a3052;
  --gold: #D3AF37;
  --gold-muted: #B8973A;
  --gray: #CBCBCB;
  --gray-light: #E8E8E8;
  --white: #FFFAFA;
  --white-pure: #FFFFFF;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5a;
  
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.small-caps {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  background: rgba(255, 250, 250, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--gray-light);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-mark svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.nav__links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white-pure);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: var(--space-xs) 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  list-style: none;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover {
  background: var(--gray-light);
  color: var(--navy);
}

.nav__cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--navy);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 70, 118, 0.25);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray);
}

.btn--secondary:hover {
  border-color: var(--navy);
  background: rgba(62, 70, 118, 0.03);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--white-pure);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   SECTIONS
   ============================================ */

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

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

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy .small-caps {
  color: var(--gold);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .lead {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray {
  background: var(--gray-light);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section__header h2 {
  margin-top: var(--space-sm);
  color: var(--navy);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(211, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-header__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-header .small-caps {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(62, 70, 118, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.hero__title {
  color: var(--navy);
  margin-bottom: var(--space-md);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-muted);
}

.hero__subtitle {
  max-width: 600px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.hero--with-image {
  position: relative;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   WHO WE SERVE
   ============================================ */

.serve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.serve-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-8px);
}

.serve-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.serve-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.serve-card:hover .serve-card__image img {
  transform: scale(1.05);
}

.serve-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.serve-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-md);
}

.serve-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(211, 175, 55, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.serve-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.serve-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.serve-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-sm);
}

.serve-card__examples {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ============================================
   IMAGE STRIP
   ============================================ */

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: var(--space-xl) 0;
}

.image-strip__item {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-strip__item:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.image-strip__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(26, 26, 46, 0.8), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.image-strip__item:hover .image-strip__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PHILOSOPHY
   ============================================ */

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.philosophy__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy__diagram {
  width: 100%;
  max-width: 400px;
}

.philosophy__content h2 {
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.philosophy__content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.philosophy__content p:last-of-type {
  margin-bottom: var(--space-md);
}

/* ============================================
   VALUES
   ============================================ */

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  padding: var(--space-md);
  border-radius: 12px;
  background: var(--white-pure);
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   COMING SOON CARDS
   ============================================ */

.coming-soon__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.coming-card {
  padding: var(--space-lg);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.coming-card--orcheros {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}

.coming-card--book {
  background: var(--white-pure);
  border: 2px solid var(--gray-light);
}

.coming-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.coming-card--orcheros .coming-card__badge {
  background: rgba(211, 175, 55, 0.2);
  color: var(--gold);
}

.coming-card--book .coming-card__badge {
  background: var(--gray-light);
  color: var(--text-secondary);
}

.coming-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.coming-card--orcheros h3 {
  color: var(--white);
}

.coming-card--book h3 {
  color: var(--navy);
}

.coming-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.coming-card--orcheros .coming-card__tagline {
  color: var(--gold);
}

.coming-card--book .coming-card__tagline {
  color: var(--gold-muted);
}

.coming-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.coming-card--orcheros p {
  color: rgba(255, 255, 255, 0.8);
}

.coming-card--book p {
  color: var(--text-secondary);
}

.coming-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.coming-card--orcheros .coming-card__cta {
  color: var(--gold);
}

.coming-card--book .coming-card__cta {
  color: var(--navy);
}

.coming-card__cta:hover {
  gap: 0.75rem;
}

.coming-card__cta svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SERVICES
   ============================================ */

.services__intro {
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.services__intro h2 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

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

.service-card {
  padding: var(--space-md) var(--space-lg);
  background: var(--white-pure);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.service-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-card__arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card__arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

/* ============================================
   ABOUT / FOUNDER
   ============================================ */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: center;
}

.about__image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-placeholder {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--navy);
  opacity: 0.15;
}

.about__content h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about__content .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

.about__content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.about__credentials {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.credential {
  text-align: left;
}

.credential__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.credential__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  text-align: center;
}

.contact h2 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.contact .lead {
  max-width: 500px;
  margin: 0 auto var(--space-md);
}

.contact__email {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.contact__email:hover {
  border-color: var(--navy);
}

/* ============================================
   CTA SECTION
   ============================================ */

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-section .lead {
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

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

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */

.service-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.service-detail__main h2 {
  color: var(--navy);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.service-detail__main h2:first-child {
  margin-top: 0;
}

.service-detail__main p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.service-detail__main ul {
  list-style: none;
  margin: var(--space-md) 0;
}

.service-detail__main li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-md);
  border-left: 3px solid var(--gold);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.service-detail__main li strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.service-detail__sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white-pure);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.sidebar-card h4 {
  color: var(--navy);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.sidebar-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
}

.sidebar-card--highlight {
  background: var(--navy);
  color: var(--white);
  border: none;
}

.sidebar-card--highlight h4 {
  color: var(--gold);
}

.sidebar-card--highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* Related services list */
.related-services {
  list-style: none;
}

.related-services li {
  margin-bottom: var(--space-xs);
}

.related-services a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.related-services a:hover {
  background: var(--gray-light);
  color: var(--navy);
}

.related-services svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: var(--space-lg) 0 var(--space-md);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}

.footer__logo-mark {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-mark svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}

.footer__copy {
  font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  
  .nav__mobile-toggle {
    display: block;
  }
  
  .philosophy__grid,
  .coming-soon__grid,
  .services__grid,
  .about__grid {
    grid-template-columns: 1fr;
  }
  
  .about__grid {
    gap: var(--space-md);
  }
  
  .about__image {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .values__grid {
    grid-template-columns: 1fr;
  }
  
  .serve__grid {
    grid-template-columns: 1fr;
  }
  
  .serve-card {
    aspect-ratio: 16/9;
  }
  
  .about__credentials {
    justify-content: flex-start;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .image-strip {
    grid-template-columns: 1fr;
  }
  
  .hero__bg {
    display: none;
  }
  
  .service-detail__sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }
  
  .hero__ctas,
  .cta-section__buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .page-header {
    padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
  }
}
