/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #f5efe6;
  --sand-mid: #ede4d6;
  --sand-deep: #d4c4af;
  --driftwood: #b8a48a;
  --tide: #8aabb8;
  --tide-deep: #5e8fa3;
  --sea: #3d7a94;
  --seafoam: #c8ddd5;
  --ink: #1a1714;
  --ink-mid: #3b3530;
  --ink-soft: #6b6057;
  --cream: #faf6f0;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 8px;
  height: 8px;
  background: var(--white);
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s var(--ease-expo),
    background 0.2s;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--white);
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s var(--ease-expo),
    width 0.3s var(--ease-expo),
    height 0.3s var(--ease-expo),
    border-color 0.2s,
    opacity 0.2s;
  opacity: 0.6;
}
body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  opacity: 0.3;
  border-color: var(--sea);
}
body.cursor-hover .cursor-dot {
  background: var(--sea);
}
body.cursor-dark .cursor-dot {
  background: var(--white);
}
body.cursor-dark .cursor-ring {
  border-color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--sand);
}
::-webkit-scrollbar-thumb {
  background: var(--driftwood);
  border-radius: 4px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.5rem, 8vw, 7.5rem);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
h4 {
  font-size: 1.2rem;
  font-weight: 400;
}
p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  transition:
    padding 0.4s var(--ease-expo),
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-expo);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 0.82rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--sea) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(138, 171, 184, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 15% 80%,
      rgba(200, 221, 213, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 90%,
      rgba(201, 169, 110, 0.12) 0%,
      transparent 50%
    );
  animation: breathe 12s ease-in-out infinite alternate;
}
@keyframes breathe {
  from {
    opacity: 0.6;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-expo) 0.3s forwards;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--driftwood);
}
.hero-headline {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.5s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--sea);
  display: inline-block;
  transition: transform 0.3s var(--ease-expo);
}
.hero-headline em:hover {
  transform: skewX(-5deg) translateX(5px);
}
.hero-sub {
  max-width: 540px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 0.9s forwards;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  border: 1.5px solid var(--ink);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--sea);
  border-color: var(--sea);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(61, 122, 148, 0.2);
}
.btn-ghost {
  color: var(--ink-mid);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--sand-deep);
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(26, 23, 20, 0.05);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-expo) 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--driftwood);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}
.hero-badge {
  position: absolute;
  top: 140px;
  right: clamp(20px, 6vw, 100px);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--driftwood);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
  opacity: 0;
  animation:
    fadeIn 1s ease 1.2s forwards,
    spin 20s linear infinite;
}
.hero-badge svg {
  position: absolute;
  inset: 0;
}
.hero-badge-inner {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  animation: spin 20s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--sand-mid);
  border-bottom: 1px solid var(--sand-mid);
  background: var(--cream);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 1.4rem;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--driftwood);
}

/* ===== ABOUT / INTRO ===== */
#about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
}
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.6s var(--ease-expo),
    box-shadow 0.6s var(--ease-expo);
}
.about-visual:hover .about-card-main {
  transform: translate(-10px, -10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-visual:hover .about-card-float {
  transform: translate(10px, 10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card-main {
  width: 75%;
  height: 100%;
  background: linear-gradient(145deg, var(--tide) 0%, var(--sea) 100%);
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  z-index: 1;
}
.about-card-main p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}
.about-card-float {
  width: 52%;
  height: 44%;
  background: var(--ink);
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}
.about-card-float p {
  color: var(--gold-light);
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.about-card-float span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-stat-pill {
  position: absolute;
  top: 32px;
  right: 0;
  background: var(--gold);
  color: var(--ink);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.35);
  z-index: 3;
  animation: floatPill 4s ease-in-out infinite;
}
@keyframes floatPill {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.about-content h2 {
  margin-bottom: 24px;
}
.about-content p {
  margin-bottom: 20px;
  max-width: 480px;
}
.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat {
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.stat-num span {
  color: var(--gold);
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ===== SERVICES ===== */
#services {
  padding: var(--section-pad) 0;
  background: var(--sand);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--cream);
  padding: 44px 36px;
  cursor: default;
  transition:
    background 0.35s var(--ease-expo),
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-mid);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tide) 0%, var(--sea) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-expo);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(61, 122, 148, 0.15);
  z-index: 10;
  border-color: transparent;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-tags span {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--driftwood);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.service-card h3 {
  color: var(--ink);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 0.3s;
  margin-bottom: 24px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--sand-deep);
  padding: 5px 14px;
  border-radius: 100px;
  color: var(--ink-soft);
  transition:
    color 0.3s,
    border-color 0.3s;
}

/* ===== PROJECTS ===== */
#projects {
  padding: var(--section-pad) 0;
  background: var(--ink);
}
#projects .section-label {
  color: var(--driftwood);
}
#projects .section-label::before {
  background: var(--driftwood);
}
#projects h2 {
  color: var(--cream);
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.project-card {
  background: var(--ink-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo);
  position: relative;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.project-card.wide {
  grid-column: span 8;
}
.project-card.tall {
  grid-column: span 4;
  grid-row: span 2;
}
.project-card.half {
  grid-column: span 6;
}
.project-card.third {
  grid-column: span 4;
}
.project-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s var(--ease-expo),
    filter 0.4s;
}
.project-card.tall .project-thumb {
  aspect-ratio: auto;
  height: 65%;
}
.project-card:hover .project-thumb {
  transform: scale(1.04);
  filter: brightness(0.8);
}
.project-thumb-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-expo);
}
.project-card.tall .project-thumb-placeholder {
  aspect-ratio: auto;
  height: 65%;
}
.project-card:hover .project-thumb-placeholder {
  transform: scale(1.04);
}
.project-info {
  padding: 24px;
  position: relative;
  z-index: 2;
}
.project-cat {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-info h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.project-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.project-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s,
    color 0.3s;
  color: var(--cream);
  font-size: 16px;
  z-index: 3;
}
.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ===== PROCESS / WORKFLOW ===== */
#workflow {
  padding: var(--section-pad) 0;
  background: var(--seafoam);
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 120px;
}
.workflow-step {
  padding: 28px 0;
  border-bottom: 1px solid rgba(61, 122, 148, 0.15);
  cursor: pointer;
  transition: padding 0.3s var(--ease-expo);
}
.workflow-step:first-child {
  border-top: 1px solid rgba(61, 122, 148, 0.15);
}
.workflow-step-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--tide-deep);
  min-width: 28px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink);
  flex: 1;
}
.step-chevron {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--tide-deep);
  font-size: 12px;
}
.workflow-step.open .step-chevron {
  transform: rotate(180deg);
}
.step-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease-expo),
    opacity 0.3s;
  opacity: 0;
  padding-left: 48px;
}
.workflow-step.open .step-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}
.step-body p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.step-body ul {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.step-body ul li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(61, 122, 148, 0.1);
  color: var(--sea);
  padding: 4px 14px;
  border-radius: 100px;
}
.workflow-visual {
  position: sticky;
  top: 100px;
}
.workflow-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 64px rgba(61, 122, 148, 0.12);
}
.wf-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tide-deep);
  margin-bottom: 24px;
}
.wf-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wf-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--sand-mid);
}
.wf-row:last-child {
  border-bottom: none;
}
.wf-week {
  font-size: 0.72rem;
  color: var(--driftwood);
  letter-spacing: 0.08em;
}
.wf-task {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.wf-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.wf-bar-wrap {
  margin-top: 8px;
  background: var(--sand);
  border-radius: 100px;
  overflow: hidden;
  height: 4px;
}
.wf-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--tide) 0%, var(--sea) 100%);
}
.wf-status-row {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.wf-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.wf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.wf-dot.done {
  background: var(--sea);
}
.wf-dot.active {
  background: var(--gold);
}
.wf-dot.pending {
  background: var(--sand-deep);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--sand);
  overflow: hidden;
}
.testimonials-header {
  margin-bottom: 56px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scroll-t 40s linear infinite;
  width: max-content;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-t {
  to {
    transform: translateX(-50%);
  }
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-md);
  padding: 36px;
  width: 360px;
  flex-shrink: 0;
  transition:
    transform 0.3s var(--ease-expo),
    box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testi-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

/* ===== PRICING ===== */
#pricing {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--sand);
  border: 1px solid var(--sand-mid);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo);
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(61, 122, 148, 0.15);
  z-index: 10;
}
.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  font-weight: 500;
}
.pricing-tier {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-tier {
  color: var(--driftwood);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-price {
  color: var(--cream);
}
.pricing-period {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-period {
  color: var(--driftwood);
}
.pricing-divider {
  height: 1px;
  background: var(--sand-mid);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.1);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-features li::before {
  content: "✓";
  color: var(--sea);
  font-weight: 600;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li::before {
  color: var(--gold);
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.pricing-cta-ghost {
  border: 1.5px solid var(--sand-deep);
  color: var(--ink);
}
.pricing-cta-ghost:hover {
  border-color: var(--ink);
}
.pricing-cta-solid {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.pricing-cta-solid:hover {
  background: var(--cream);
}

/* ===== CONTACT / ESTIMATOR STYLES ===== */
#contact {
  padding: var(--section-pad) 0;
  background: var(--ink);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  color: var(--cream);
  margin-bottom: 24px;
}
.contact-left p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  max-width: 380px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s;
}
.contact-item:hover {
  transform: translateX(8px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--ink);
}
.contact-item-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.contact-item-text .value {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: box-shadow 0.4s var(--ease-expo);
}
.contact-form:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.est-pill {
  cursor: pointer;
  position: relative;
}
.est-pill input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.est-pill span {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-expo);
  user-select: none;
}
.est-pill:hover span {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.est-pill input:checked ~ span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.2);
}

.estimate-display {
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}
.est-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.est-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  margin-top: 8px;
  transition: opacity 0.3s;
}
.est-suffix {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}
.form-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.form-group.full {
  margin-bottom: 20px;
}
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--tide);
  background: rgba(255, 255, 255, 0.07);
}
.form-select {
  cursor: pointer;
}
.form-select option {
  background: var(--ink-mid);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(201, 169, 110, 0.2);
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--seafoam);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer-brand {
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-logo span {
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s var(--ease-expo),
    transform 0.8s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--sand);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .workflow-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    height: 320px;
  }
  .workflow-steps {
    position: static;
  }
  .workflow-visual {
    position: static;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card.wide,
  .project-card.tall,
  .project-card.half,
  .project-card.third {
    grid-column: span 1;
    grid-row: span 1;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .about-visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-badge {
    display: none;
  }
  #hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }
  .hero-sub {
    margin-top: 20px;
    font-size: 0.95rem;
  }
  .hero-actions {
    margin-top: 32px;
  }
}
