:root {
  color-scheme: dark;
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --panel: #000000;
  --panel-strong: #000000;
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.12);
  --gold: #c6a15b;
  --gold-strong: #dcbd7d;
  --gold-soft: rgba(198, 161, 91, 0.14);
  --gold-line: rgba(198, 161, 91, 0.45);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000000;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

/* Overall card-like sections */
.page-shell > * {
  -webkit-font-smoothing: antialiased;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--gold);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: topbar-enter 800ms cubic-bezier(.2,.8,.2,1);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), opacity 320ms ease, box-shadow 400ms ease, border-color 400ms ease;
  flex-wrap: wrap;
}

@keyframes topbar-enter {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar {
    animation: none;
  }
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.topbar.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  margin-bottom: -90px;
}
.topbar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  margin-bottom: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transform-origin: center;
  animation: brand-logo-spin 18s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
  transition: transform 220ms ease, filter 220ms ease, box-shadow 400ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand:hover .brand-logo {
  animation-duration: 10s;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.18));
  box-shadow: 0 12px 32px rgba(198, 161, 91, 0.2);
}

@keyframes brand-logo-spin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.03);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
  }
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--muted);
}
.brand-text strong {
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.22em;
}

.brand-text span { color: rgba(245,245,245,0.65); font-size: 0.78rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(245, 245, 245, 0.78);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  transition: color 280ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--text);
}

.nav a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #000000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  cursor: pointer;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms cubic-bezier(.2,.8,.2,1), background 400ms ease, border-color 400ms ease, border-radius 400ms ease;
}

.hamburger:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hamburger:active {
  transform: translateY(0) scale(0.94);
  transition: transform 150ms cubic-bezier(.4,0,.2,1);
}

.hamburger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hamburger-box {
  display: inline-block;
  width: 26px;
  height: 18px;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  position: absolute;
  left: 0;
  width: 26px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--text);
  display: block;
  transition: transform 380ms cubic-bezier(.2,.8,.2,1), opacity 260ms ease, background 260ms ease, width 260ms ease;
}

.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ''; top: -8px; width: 20px; left: 3px; }
.hamburger-inner::after { content: ''; top: 8px; width: 14px; left: 6px; }

/* Animated open state */
.hamburger.is-open {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 12px rgba(255,255,255,0.08);
  animation: hamburger-pulse 1.6s ease-in-out infinite;
}

@keyframes hamburger-pulse {
  0%, 100% { box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 12px rgba(255,255,255,0.08); }
  50% { box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255,255,255,0); }
}

.hamburger.is-open .hamburger-inner,
.hamburger.is-open .hamburger-inner::before,
.hamburger.is-open .hamburger-inner::after {
  background: #000;
  width: 26px;
  left: 0;
}

.hamburger.is-open .hamburger-inner { transform: rotate(45deg); }
.hamburger.is-open .hamburger-inner::before { top: 0; transform: rotate(90deg); width: 26px; left: 0; }
.hamburger.is-open .hamburger-inner::after { opacity: 0; transform: translateX(20px) scaleX(0); }

/* prevent body scroll when drawer open */
.no-scroll { overflow: hidden; height: 100%; }

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: 340px;
  max-width: 88%;
  background: #000000;
  box-shadow: -60px 0 120px rgba(0,0,0,0.7);
  transform: translateX(110%);
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
  z-index: 60;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  contain: layout style paint;
  will-change: transform;
}
.mobile-drawer[aria-hidden="false"] { transform: translateX(0); }
.drawer-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  overflow-y: auto;
}
.drawer-close {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-size: 18px;
  align-self: flex-end;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}
.drawer-close:hover {
  transform: rotate(90deg);
  border-color: rgba(255,255,255,0.4);
  color: var(--text);
}
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 6px;
}
.drawer-links li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 400ms ease, transform 400ms cubic-bezier(.2,.8,.2,1);
}
.mobile-drawer[aria-hidden="false"] .drawer-links li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(1) { transition-delay: 80ms; }
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(2) { transition-delay: 120ms; }
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(3) { transition-delay: 160ms; }
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(4) { transition-delay: 200ms; }
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(5) { transition-delay: 240ms; }
.mobile-drawer[aria-hidden="false"] .drawer-links li:nth-child(6) { transition-delay: 280ms; }

.drawer-links a {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 18px;
  display: block;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.02);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.drawer-links a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateX(4px);
}

/* overlay for when drawer open */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  z-index: 55;
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  backdrop-filter: blur(4px) saturate(120%);
}
.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.nav-cta,
.button-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), background 280ms ease, color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-cta { padding: 0 26px; min-height: 52px; }
.nav-cta { box-shadow: 0 8px 30px rgba(0,0,0,0.45); }

.nav-cta:hover,
.button-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

main {
  display: grid;
  gap: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 96px);
  position: relative;
  z-index: 1;
  background: #000000;
  border: none;
  border-radius: 0;
  gap: clamp(20px, 3vw, 40px);
  min-height: 100vh;
  box-sizing: border-box;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

h1 {
  max-width: 20ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-text {
  margin: 0;
}

.hero-actions {
  margin: 0;
}

.trust-badge {
  margin: 0;
}

.featured-thumb {
  display: block;
  width: 100%;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

h1,
h2,
h3,
.panel-card strong,
.mini-card h2,
.service-card h3,
.timeline-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

.hero-headline {
  display: grid;
  gap: 0.1em;
  max-width: 22ch;
}

.hero-headline span {
  display: block;
}

.hero-headline-accent {
  margin-top: 0.18em;
  max-width: 18ch;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.36em;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.hero-text,
.service-card p,
.timeline-item p,
.section-heading p,
.mini-card p,
.panel-card p,
.stats span {
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
}

.section-heading p {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0;
}

.button {
  min-height: 56px;
  padding: 0 32px;
  font-size: 1rem;
}

.hero-panel {
  padding: 0;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: transparent;
}

.panel-card {
  padding: 0;
  border-radius: var(--radius-lg);
  border: none;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: transparent;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-card-large {
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 18px;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-meta strong {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 0.98;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 245, 245, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

.trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-soft);
}

.panel-card p,
.mini-card span {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
}

.panel-card strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.96;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  padding: 16px 0 0;
  border-radius: var(--radius-md);
  border: none;
  background: transparent; }

.mini-card h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.mini-card p {
  margin: 0;
  font-size: 0.96rem;
}

.mini-card span {
  color: var(--gold);
}

/* Journey / Gallery section */
.journey {
  padding: clamp(40px, 8vw, 96px) 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.journey-card {
  border-radius: var(--radius-lg);
  border: none;
  background: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease;
}

.journey-card:hover {
  transform: translateY(-4px);
}

.journey-thumb {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.journey-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.journey-card:hover .journey-thumb img {
  transform: scale(1.04);
}

.journey-meta {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journey-meta h3 {
  font-size: 1.4rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.journey-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

/* Services list style */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease;
}

.service-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.01);
}

.service-item:hover .service-thumb img {
  transform: scale(1.04);
}

.service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.service-info h3 {
  font-size: 1.5rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 52ch;
}

.service-thumb {
  width: 160px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.services-cta {
  display: flex;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .service-item {
    flex-direction: column;
    gap: 14px;
  }
  
  .service-thumb {
    width: 100%;
    height: 180px;
  }
  
  .service-info h3 {
    font-size: 1.25rem;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.stats div {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: none;
}

.stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
}

.stats .plus {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-image {
  padding: 16px 22px 8px;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.clients-image {
  padding: 16px 22px 8px;
}

.clients-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.cta-image {
  padding: 16px 22px 8px;
}

.cta-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.journey-image {
  padding: 16px 22px 8px;
}

.journey-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.portfolio-thumb {
  padding: 8px 22px 8px;
}
.portfolio-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.stats-image-label {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
}

.stats-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  filter: contrast(1.08) brightness(1.04);
}

.stats div {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: #000000;
  border: none;
}

.stats div::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 1px;
  background: transparent; }

.section {
  position: relative;
  padding: clamp(40px, 8vw, 96px) clamp(24px, 5vw, 80px);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 62ch;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 40ch;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Make primary CTA pill more prominent on smaller screens */
@media (max-width: 720px) {
  .button-primary {
    border-radius: 40px;
    padding: 16px 20px;
    font-size: 1.02rem;
  }
  .brand-logo { width: 56px; height: 56px; }
  .brand-text strong { font-size: 0.9rem; }
}

/* Slightly more breathing room between stacked sections */
main > * { margin-bottom: 22px; }

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 62ch;
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 40ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.value-card::after,
.pricing-card::after,
.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--line);
  pointer-events: none;
}

.service-card p {
  margin: 16px 0 0;
}

/* Compact homepage Services section */
#services .section-heading {
  position: relative;
  z-index: 1;
}

#services .service-grid {
  position: relative;
  z-index: 1;
}
#services .section-heading h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
#services .service-card { padding: 20px; min-height: 0; }
#services .service-card h3 { font-size: 1.5rem; }
#services .service-card p { margin-top: 10px; font-size: 0.95rem; }

.services-cta {
  display: flex;
  margin-top: 8px;
}

.value-grid,
.pricing-grid,
.clients-grid,
.quote-grid.large {
  display: grid;
  gap: 16px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.pricing-card,
.quote-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
}

.value-card {
  padding: 24px;
  min-height: 220px;
}

.value-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.value-icon svg,
.service-icon svg {
  width: 24px;
  height: 24px;
}

.clients-section {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 28px;
  padding: 8px 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.clients-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.client-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-proof-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 240ms ease, background 240ms ease;
}

.client-proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.client-proof-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
}

.client-proof-card:hover::before {
  transform: scaleX(1);
}

.client-proof-card h3 {
  margin: 6px 0 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.client-proof-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.client-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(245, 245, 245, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-proof-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .client-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .client-proof-grid {
    grid-template-columns: 1fr;
  }
}

.work-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  padding: 26px;
}

.pricing-featured {
  background: #000000;
  transform: translateY(-8px);
}

.pricing-featured::after {
  border-color: var(--gold-line);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold-strong);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-header p,
.pricing-features {
  color: var(--muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 22px;
}

.currency,
.period,
.pricing-contact {
  color: var(--muted);
}

.amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-xl);
  border: none;
  background: transparent; }

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; }

.cta-banner-inner {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 56px);
  max-width: 58ch;
}

.cta-sub {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
}

.newsletter-wrap {
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent; }

.newsletter-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.56);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(245, 245, 245, 0.38);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent; }

.newsletter-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  margin: 0;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slider:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.testimonials-dot:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonials-track .quote-card {
  min-width: auto;
  flex-shrink: none;
}

.testimonials-controls {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.testimonials-dot:hover {
  transform: scale(1.2);
}

.testimonials-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 1080px) {
  .testimonials-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .testimonials-slider {
    overflow: hidden;
  }

  .testimonials-track {
    display: flex;
    gap: 0;
    transition: transform 500ms ease;
  }

  .testimonials-track .quote-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 22px 20px;
  }

  .testimonials-track .quote-card blockquote {
    font-size: 1.2rem;
  }

  .testimonials-controls {
    display: flex;
  }
}

@media (max-width: 480px) {
  .testimonials-track .quote-card {
    padding: 18px 16px;
  }

  .testimonials-track .quote-card blockquote {
    font-size: 1.05rem;
  }
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: none;
  background: transparent; }

.timeline-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline-item p {
  margin: 10px 0 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.cta h2 {
  max-width: 15ch;
}

/* Booking form */
.booking-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease, background 200ms ease;
}

.booking-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 46px 0 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #000000;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.booking-form select:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent; }

.booking-form select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent; }

.booking-form select option {
  background: #111;
  color: #f5f5f5;
}

.booking-form select:invalid {
  color: rgba(245, 245, 245, 0.62);
}

.booking-form select option[value=""] {
  color: rgba(245, 245, 245, 0.45);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.35);
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent; }
.booking-form textarea {
  resize: vertical;
  min-height: 120px;
}
.booking-form .button {
  justify-self: start;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px) 28px;
  border-radius: var(--radius-xl);
  border: none;
  background: #000000;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 40px 28px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: none;
}
.footer-col h4 {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin: 0;
}
.footer-col > ul > li + li {
  margin-top: 12px;
}
.footer-col a {
  position: relative;
  display: inline-block;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 200ms ease;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-col a:hover::after {
  transform: scaleX(1);
}
.footer-brand .footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer-tagline {
  margin: 0 0 22px;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}
.footer-social-icons {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  font-size: 0;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms ease;
}
.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: var(--muted);
  display: block;
  transition: fill 200ms ease;
}
.social-btn:hover svg { fill: var(--gold); }
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: grid;
  gap: 3px;
}
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
}
.footer-contact a {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 200ms ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-links a:hover::after {
  transform: scaleX(1);
}
.copyright { color: rgba(245, 245, 245, 0.6); font-size: 0.85rem; }
.designed { color: rgba(245, 245, 245, 0.45); font-size: 0.85rem; }

@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { order: -1; }
  .footer-logo { width: 56px; height: 56px; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.about-lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.12rem;
  color: var(--muted);
}

.about-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-values li {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: none;
  background: rgba(255, 255, 255, 0.025);
  display: grid;
  gap: 6px;
}

.about-values strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.about-values span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Service detail (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-index {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: var(--muted);
}

.service-detail h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.service-desc {
  margin: 0 0 18px;
  max-width: 56ch;
  font-size: 1.05rem;
  color: var(--muted);
}

.deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.deliverables li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.98rem;
}

.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Legal pages (privacy, terms) */
.legal-meta {
  margin: 0 0 28px;
  color: rgba(245, 245, 245, 0.45);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.legal-block {
  margin-top: 30px;
}
.legal-block h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}
.legal-block p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.legal-block p + p {
  margin-top: 14px;
}
.legal-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.legal-block li {
  margin: 8px 0;
}

/* Work / gallery */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease;
}

.work-card-link {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease;
  text-decoration: none;
  color: inherit;
}

.work-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.work-thumb {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-thumb.thumb-a {
  background: transparent;
}

.work-thumb-a {
  background: transparent; }

.work-thumb-b {
  background: transparent; }

.work-thumb-c {
  background: transparent; }

.work-thumb-d {
  background: transparent; }

.work-meta {
  padding: 20px 22px 24px;
}

.work-meta h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.work-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-card {
  margin: 0;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-card::after {
  border: none;
}

.quote-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.quote-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.quote-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.quote-role {
  color: var(--muted);
  font-size: 0.88rem;
}

/* FAQ */
#faqs.section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

#faqs .section-heading {
  margin-bottom: 0;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  position: sticky;
  top: 110px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 200ms ease;
}

.faq-item summary:hover {
  color: rgba(255, 255, 255, 0.75);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--muted);
  transition: transform 260ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.faq-item summary:hover::after {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.faq-item p {
  margin: 0;
  padding: 0 44px 24px 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 64ch;
  animation: faq-fade 320ms ease;
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  #faqs.section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #faqs .section-heading {
    position: static;
  }
  .faq-item summary {
    font-size: 1.2rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split,
  .cta,
  .about-grid,
  .pricing-grid,
  .quote-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .value-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .split,
  .cta {
    display: grid;
  }

  .topbar {
    border-radius: 28px;
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  h1 {
    max-width: 13ch;
  }

  .cta h2,
  .panel-card strong {
    max-width: none;
  }

  .pricing-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .topbar {
    position: relative;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .brand {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .work-cta {
    justify-content: stretch;
  }

  .work-cta .button {
    width: 100%;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .section,
  .cta,
  .stats {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .panel-grid,
  .service-grid,
  .stats {
    gap: 12px;
  }
}

/* Small phones */
@media (max-width: 640px) {
  .service-grid,
  .value-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 22px 18px;
  }

  .clients-section {
    padding: 8px 0;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  h3 {
    font-size: 1.5rem;
  }

  .faq-item summary {
    font-size: 1.15rem;
    gap: 14px;
  }

  .faq-item p {
    padding-right: 12px;
  }

  .pricing-featured {
    transform: none;
  }

  .cta-banner-inner {
    padding: 28px 20px;
  }
}

/* Very small phones */
@media (max-width: 400px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hamburger {
    width: 52px;
    height: 52px;
    top: 18px;
    right: 18px;
  }

  .featured-meta strong {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}


/* Reveal + fade-in for the numbered showcase images only.
   Scoped to html.js so images stay visible if JS fails to run. */
html.js .stats-image img,
html.js .about-image img,
html.js .journey-image img,
html.js .clients-image img,
html.js .cta-image img,
html.js .work-thumb img,
html.js .img-reveal img {
  opacity: 0;
  transform: translateY(28px) scale(1.01);
  transition: opacity 900ms cubic-bezier(.2, .8, .2, 1),
    transform 900ms cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}

html.js .stats-image.visible img,
html.js .about-image.visible img,
html.js .journey-image.visible img,
html.js .clients-image.visible img,
html.js .cta-image.visible img,
html.js .work-grid.visible .work-thumb img,
html.js .img-reveal.visible img {
  opacity:1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html.js .stats-image img,
  html.js .about-image img,
  html.js .journey-image img,
  html.js .clients-image img,
  html.js .cta-image img,
  html.js .work-thumb img,
  html.js .img-reveal img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


