/* ============================================
   WILD VENTUS LLC — V3
   Light warm palette / editorial / accessible
   ============================================ */

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

:root {
  /* Light warm base */
  --white: #ffffff;
  --cream: #faf8f5;
  --sand: #f0ece5;
  --sand-dark: #e2ddd4;
  /* Navy from logo */
  --navy: #0a1628;
  --navy-light: #132036;
  /* Text */
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --text-muted: #7a7a7a;
  /* Accent — warm amber/gold */
  --accent: #c08b2e;
  --accent-hover: #a87625;
  --accent-light: #f0dbb0;
  /* Utilities */
  --border: rgba(26, 26, 26, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Space Grotesk', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--accent);
  color: var(--white);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 16px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Shared ---------- */
.label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none !important; }
}

/* ============================================
   WATERMARK
   ============================================ */
.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  width: 60vw;
  max-width: 800px;
}

.watermark img {
  width: 100%;
  height: auto;
}

/* ============================================
   NAV — light bg with dark text
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 140px;
}

.nav__logo {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.nav__logo-img {
  height: 120px;
  width: auto;
  clip-path: inset(0 0 22% 0);
  margin-bottom: -26px;
}

.nav__logo-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 4px;
}


.nav__links {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  gap: 40px;
  padding-bottom: 24px;
}

.nav__links a {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--text);
}

.nav__cta {
  padding: 14px 36px;
  background: var(--navy);
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease) !important;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--accent);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* Focus visible for keyboard nav */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   HERO — warm cream bg
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 40px 80px;
  background: var(--cream);
  position: relative;
}

.hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero__tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 40px;
}

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

.hero__bottom {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  max-width: 1000px;
  margin-bottom: 60px;
}

.hero__text {
  flex: 1;
  max-width: 620px;
}

.hero__desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.hero__points li {
  position: relative;
  padding-left: 36px;
  font-size: 21px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 500;
}

.hero__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-weight: 700;
  font-size: 21px;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  align-self: flex-end;
  white-space: nowrap;
}

.hero__cta-btn:hover,
.hero__cta-btn:focus-visible {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 139, 46, 0.3);
}

.hero__trust {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero__trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text);
  font-weight: 400;
}

.hero__trust-item span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  margin-top: 40px;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 0.3s, border-color 0.3s;
}

.hero__scroll:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--sand);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__dot {
  width: 5px !important;
  height: 5px;
  border-radius: 50%;
  background: var(--accent) !important;
  flex-shrink: 0;
  font-size: 0 !important;
  display: inline-block;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WORK — white bg
   ============================================ */
.work {
  padding: 100px 0;
  background: var(--white);
}

.work__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.work__header {
  margin-bottom: 60px;
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.project-wrap:nth-child(2) { margin-top: 48px; }

@media (max-width: 1024px) {
  .project-wrap:nth-child(2) { margin-top: 0; }
}

.project {
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  background: var(--white);
}

.project:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Feature tags below portfolio card */
.project__features {
  margin-top: 20px;
}

.project__features h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--sand);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
  cursor: pointer;
}

.feature-tags li:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Tooltip bubble */
.feature-tags li[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius);
  width: 260px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 50;
}

/* Arrow */
.feature-tags li[data-tip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  border: 6px solid transparent;
  border-top-color: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 50;
}

.feature-tags li[data-tip]:hover::after,
.feature-tags li[data-tip]:hover::before,
.feature-tags li[data-tip].tip-active::after,
.feature-tags li[data-tip].tip-active::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.feature-tags li[data-tip].tip-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Keep tooltips on screen for tags near edges */
.feature-tags li[data-tip]:first-child::after,
.feature-tags li[data-tip]:nth-child(2)::after {
  left: 0;
  transform: translateX(0) translateY(6px);
}
.feature-tags li[data-tip]:first-child:hover::after,
.feature-tags li[data-tip]:nth-child(2):hover::after,
.feature-tags li[data-tip]:first-child.tip-active::after,
.feature-tags li[data-tip]:nth-child(2).tip-active::after {
  transform: translateX(0) translateY(0);
}
.feature-tags li[data-tip]:first-child::before,
.feature-tags li[data-tip]:nth-child(2)::before {
  left: 24px;
}

.project__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 12px 24px;
  border-radius: var(--radius);
  margin-top: 16px;
  transition: all 0.3s var(--ease);
}

.project__link:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 139, 46, 0.3);
}

.project__info {
  padding: 24px 28px;
}

.project__cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.project__info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 6px 0;
  color: var(--text);
}

.project__info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SERVICES — sand bg, asymmetric
   ============================================ */
.services {
  padding: 100px 40px;
  background: var(--sand);
}

.services__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.services__left {
  position: sticky;
  top: 160px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.svc {
  padding: 36px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.svc:hover { background: rgba(192, 139, 46, 0.04); }
.svc:nth-child(2n) { border-right: none; }
.svc:nth-last-child(-n+2) { border-bottom: none; }

.svc__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.svc h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.svc p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   ABOUT — navy bg (dark section)
   ============================================ */
.about {
  padding: 100px 40px;
  background: var(--navy);
  color: var(--white);
}

.about__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about .label { color: var(--accent-light); }
.about h2 { color: var(--white); }
.about h2 em { color: var(--accent-light); }

.about__quote blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.about__content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about__point-mark {
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

.about__point strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.about__point span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   PROCESS — cream bg
   ============================================ */
.process {
  padding: 100px 40px;
  background: var(--cream);
}

.process__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process__header { margin-bottom: 48px; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.step {
  padding: 32px;
  border-left: 1px solid var(--border);
}

.step:first-child { border-left: none; }

.step__number {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   PRICING — white bg
   ============================================ */
.pricing {
  padding: 100px 40px;
  background: var(--white);
}

.pricing__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing__header { margin-bottom: 48px; }

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.price-card {
  padding: 44px 32px;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
  transition: all 0.3s var(--ease);
}

.price-card:last-child { border-right: 1px solid var(--border); }
.price-card:hover { background: rgba(192, 139, 46, 0.03); }

/* Highlighted card */
.price-card--highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.price-card--highlight:hover { background: var(--navy-light); }
.price-card--highlight h2,
.price-card--highlight h3 { color: var(--white); }
.price-card--highlight .price-card__top p { color: rgba(255,255,255,0.5); }
.price-card--highlight .price-card__includes li { color: rgba(255,255,255,0.55); }
.price-card--highlight .price-card__btn { color: var(--white); }

.price-card__flag {
  position: absolute;
  top: 0; left: 32px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.price-card__top h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
}

.price-card__top p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-card__amount {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--accent);
  margin: 28px 0;
}

.price-card__amount span { font-size: 26px; }

.price-card__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.price-card__includes li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}

.price-card__includes li:hover {
  color: var(--text);
}

.price-card__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.price-card__includes li[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: var(--radius);
  width: 260px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
}

.price-card__includes li[data-tip].tip-active::after {
  opacity: 1;
  pointer-events: auto;
}

.price-card--highlight .price-card__includes li:hover,
.price-card--highlight .price-card__includes li[data-tip].tip-active {
  color: var(--accent);
}

.price-card__addon {
  border-top: 1px dashed rgba(0,0,0,0.12);
  margin-top: 6px;
  padding-top: 14px;
  font-weight: 500;
  color: var(--accent) !important;
}

.price-card__addon::before { content: '' !important; }

.price-card__disclaimer {
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}

.price-card__btn {
  display: inline-flex;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.3s;
}

.price-card__btn:hover { color: var(--accent); }

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
}

/* ---------- Currency Toggle ---------- */
.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.currency-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  background: var(--cream);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.currency-btn:hover {
  border-color: var(--accent);
  color: var(--navy);
}

.currency-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.price-card__amount {
  transition: opacity 0.2s ease;
}

/* ============================================
   CTA BAND — accent bg
   ============================================ */
.cta-band {
  padding: 80px 40px;
  background: var(--navy);
  text-align: center;
}

.cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cta-band__btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.cta-band__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 139, 46, 0.4);
}

/* ============================================
   CONTACT — white bg
   ============================================ */
.contact {
  padding: 100px 40px;
  background: var(--white);
}

.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__left > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.contact__info a,
.contact__info span {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.contact__info a:hover { color: var(--accent); }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.service-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  text-transform: none;
  letter-spacing: 0;
}

.check-label:hover {
  border-color: var(--accent);
}

.check-label input[type="checkbox"] {
  accent-color: var(--navy);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.check-label:has(input:checked) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 139, 46, 0.12);
}

.form-field textarea { resize: vertical; }

.form-field select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans) !important;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}

.form-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form success confirmation */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: formFadeIn 0.4s ease;
}

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 8px;
}

.form-success__sub {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.form-success__btn {
  display: inline-flex;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

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

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

/* ============================================
   FOOTER — navy bg
   ============================================ */
.footer {
  padding: 56px 40px 28px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-dark);
}

.footer__logo {
  height: 96px;
  width: auto;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 14px;
  max-width: 260px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 56px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--accent-light); }

.footer__bottom {
  padding-top: 20px;
  text-align: center;
}

.footer__bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { padding: 160px 24px 60px; }
  .work { padding: 80px 0; }
  .work__inner { padding: 0 24px; }
  .services { padding: 80px 24px; }
  .about { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  .pricing { padding: 80px 24px; }
  .cta-band { padding: 60px 24px; }
  .contact { padding: 80px 24px; }
  .footer { padding: 40px 24px 20px; }
  .nav__inner { padding: 0 24px; }

  /* Scale down nav links for tablet */
  .nav__links { gap: 28px; padding-bottom: 18px; }
  .nav__links a { font-size: 18px; }
  .nav__cta { padding: 10px 24px; }

  .services__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__left { position: static; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-left: none; border-bottom: 1px solid var(--border); }
  .step:nth-child(odd) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    align-self: auto;
    justify-content: center;
    gap: 0;
    z-index: 200;
    padding: 0 40px;
    padding-bottom: 0;
  }

  .nav__links.active { display: flex; }

  .nav:has(.nav__links.active) {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    bottom: 0;
  }

  .nav__links a {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    opacity: 1;
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    color: var(--accent);
    opacity: 1;
  }

  .nav__cta {
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    padding: 16px 0 !important;
    background: none !important;
    color: var(--accent) !important;
    border-radius: 0 !important;
    border-bottom: none !important;
  }

  .nav__toggle {
    display: flex;
    z-index: 201;
    position: relative;
  }

  .nav__toggle.active span {
    background: var(--text);
  }

  .nav__toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
  }
  .nav__toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  .watermark { display: none; }

  .hero { min-height: auto; padding: 150px 24px 60px; }
  .hero__title { font-size: clamp(32px, 9vw, 56px); }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__text { max-width: 100%; }
  .hero__trust { flex-direction: column; gap: 20px; }

  .work__grid { grid-template-columns: 1fr; gap: 28px; }
  .project__gallery { gap: 8px; }
  .project__features { margin-top: 16px; }
  .feature-tags li { font-size: 11px; padding: 5px 12px; }

  /* Tooltips: position relative to viewport on mobile */
  .feature-tags li[data-tip]::after {
    width: calc(100vw - 80px);
    max-width: 260px;
    left: 0;
    transform: translateX(0) translateY(6px);
    font-size: 12px;
  }
  .feature-tags li[data-tip]:hover::after,
  .feature-tags li[data-tip].tip-active::after {
    transform: translateX(0) translateY(0);
  }
  .feature-tags li[data-tip]::before {
    left: 16px;
    transform: translateX(0) translateY(6px);
  }
  .feature-tags li[data-tip]:hover::before,
  .feature-tags li[data-tip].tip-active::before {
    transform: translateX(0) translateY(0);
  }
  .services__grid { grid-template-columns: 1fr; }
  .svc { border-right: none; padding: 28px 20px; }
  .pricing__cards { grid-template-columns: 1fr; gap: 16px; }
  .price-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; }
  .price-card--highlight { border-color: var(--navy); }
  .process__steps { grid-template-columns: 1fr; }
  .step { border-right: none !important; padding: 24px 20px; }

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

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__links { flex-wrap: wrap; gap: 28px; }
  .footer__logo { height: 72px; }

  .nav__logo-img { height: 100px; margin-bottom: -22px; }
  .nav__logo-text { font-size: 11px; letter-spacing: 2px; }
  .nav__inner { height: 130px; align-items: center; }

  .hero { padding: 160px 20px 48px; }
  .hero__desc { font-size: 16px; }
  .hero__cta-btn { padding: 14px 28px; font-size: 14px; }

  .about__inner { gap: 32px; }
  .about__quote blockquote { font-size: clamp(18px, 5vw, 24px); padding-left: 20px; }
  .about { padding: 60px 20px; }

  .cta-band h2 { font-size: clamp(22px, 5vw, 30px); }
  .cta-band__btn { padding: 14px 28px; font-size: 14px; }

  .contact { padding: 60px 20px; }
  .contact__inner { gap: 32px; }

  .pricing { padding: 60px 20px; }
  .process { padding: 60px 20px; }
  .services { padding: 60px 20px; }
  .work { padding: 60px 0; }
  .work__inner { padding: 0 20px; }

  .footer { padding: 36px 20px 16px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .nav__links a { font-size: 28px; padding: 14px 0; }
  .nav__cta { font-size: 28px !important; }
  .nav__links { padding: 0 24px; }
  .project__info { padding: 18px 20px; }
  .project__info h3 { font-size: 19px; }
  .price-card { padding: 28px 20px; }
  .price-card__amount { font-size: 36px; }
  .price-card__top h3 { font-size: 22px; }
  .svc { padding: 24px 16px; }
}
