/* ==========================================================
   ROYALE DESIGNS — brand stylesheet
   Palette: red #E63946 · cream #F1FAEE · sky #A8DADC
            blue #457B9D · navy #1D3557
   Type: Source Sans 3 (Source Sans Pro successor)
   ========================================================== */

:root {
  --red: #E63946;
  --cream: #F1FAEE;
  --sky: #A8DADC;
  --blue: #457B9D;
  --navy: #1D3557;
  --white: #FFFFFF;
  --border: 2.5px solid var(--navy);
  --shadow: 5px 5px 0 var(--navy);
  --shadow-sm: 3px 3px 0 var(--navy);
  --radius: 14px;
  --radius-lg: 22px;
  --font: "Source Sans 3", "Source Sans Pro", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

h1, h2, h3 { line-height: 1.08; font-weight: 900; letter-spacing: -0.015em; }

h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); text-transform: uppercase; }

.accent-dot { color: var(--red); }
.accent-dot-cream { color: var(--sky); }

::selection { background: var(--sky); color: var(--navy); }

/* ---------- Eyebrow chips ---------- */
.eyebrow { margin-bottom: 1.1rem; }
.eyebrow-chip {
  display: inline-block;
  background: var(--sky);
  border: var(--border);
  border-radius: 8px;
  padding: 0.25rem 0.85rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}
.chip-red { background: var(--red); color: var(--cream); }
.chip-sky { background: var(--sky); color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);
  border: var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--navy); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }
.btn-arrow { transition: transform 0.15s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary { background: var(--red); color: var(--cream); }
.btn-secondary { background: var(--sky); color: var(--navy); }
.btn-outline { background: transparent; }
.btn-cream { background: var(--cream); color: var(--navy); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo-mark { width: 44px; height: 44px; }
.nav-logo-text {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.nav-logo-sub {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.98rem;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: right 0.2s ease;
}
.nav-links a:not(.btn):hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: var(--border);
  border-radius: 10px;
  padding: 10px 9px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span { display: block; width: 22px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(168, 218, 220, 0.35), transparent 40%),
    radial-gradient(circle at 88% 75%, rgba(168, 218, 220, 0.3), transparent 35%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  max-width: 34rem;
  color: var(--navy);
  opacity: 0.88;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-meta {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.75;
}
.squiggle { width: 90px; flex-shrink: 0; color: var(--blue); }

.hero-x {
  position: absolute;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
  opacity: 0.6;
}
.hero-x-1 { top: 14%; left: 46%; transform: rotate(12deg); }
.hero-x-2 { bottom: 12%; left: 6%; transform: rotate(-8deg); }

/* Browser mockup */
.hero-visual { position: relative; }
.browser-mock {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--navy);
  overflow: hidden;
}
.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.7rem 1rem;
  border-bottom: var(--border);
  background: var(--cream);
}
.dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--navy); }
.dot-red { background: var(--red); }
.dot-sky { background: var(--sky); }
.dot-navy { background: var(--blue); }
.browser-url {
  margin-left: 0.7rem;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.9rem;
  color: var(--blue);
}
.browser-body { padding: 1.2rem 1.3rem 1.4rem; display: grid; gap: 1.1rem; }
.mock-nav { display: flex; align-items: center; gap: 0.6rem; }
.mock-logo { width: 26px; height: 26px; background: var(--red); border-radius: 7px; border: 2px solid var(--navy); }
.mock-link { width: 34px; height: 8px; background: var(--sky); border-radius: 4px; }
.mock-btn { margin-left: auto; width: 58px; height: 20px; background: var(--navy); border-radius: 6px; }
.mock-hero { display: grid; gap: 0.55rem; padding-block: 0.4rem; }
.mock-h1 { height: 16px; width: 78%; background: var(--navy); border-radius: 5px; }
.mock-h1.short { width: 52%; background: var(--red); }
.mock-p { height: 8px; width: 64%; background: var(--sky); border-radius: 4px; margin-top: 0.2rem; }
.mock-cta { height: 22px; width: 92px; background: var(--red); border: 2px solid var(--navy); border-radius: 7px; margin-top: 0.4rem; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.mock-card { height: 52px; background: var(--cream); border: 2px solid var(--navy); border-radius: 9px; }

/* Hero decorations */
.deco { position: absolute; }
.deco-cursor {
  width: 46px;
  bottom: -18px;
  right: 8%;
  transform: rotate(-6deg);
  animation: cursor-nudge 3.2s ease-in-out infinite;
}
@keyframes cursor-nudge {
  0%, 100% { transform: rotate(-6deg) translate(0, 0); }
  50% { transform: rotate(-2deg) translate(-6px, -5px); }
}
.deco-spark { width: 26px; }
.spark-1 { top: -26px; left: -10px; animation: spin-slow 9s linear infinite; }
.spark-2 { top: 32%; right: -30px; width: 20px; animation: spin-slow 7s linear infinite reverse; }
@keyframes spin-slow { to { transform: rotate(360deg); } }
.deco-dots {
  width: 74px; height: 74px;
  left: -46px; bottom: 6%;
  background-image: radial-gradient(var(--navy) 2.2px, transparent 2.4px);
  background-size: 14px 14px;
  opacity: 0.55;
}
.deco-plane { width: 190px; top: -54px; right: -8px; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding-block: 0.75rem;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}
.marquee-track i { color: var(--red); font-style: normal; font-size: 1.1rem; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-cream {
  background: var(--sky);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section-navy { background: var(--navy); color: var(--cream); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-intro {
  margin-top: 1.1rem;
  max-width: 36rem;
  font-weight: 600;
  opacity: 0.85;
}
.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.9rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
.service-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--navy); }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: var(--border);
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.service-icon svg { width: 26px; height: 26px; }
.icon-red { background: var(--red); color: var(--cream); }
.icon-sky { background: var(--sky); color: var(--navy); }
.icon-navy { background: var(--navy); color: var(--cream); }
.icon-blue { background: var(--blue); color: var(--cream); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; opacity: 0.85; }
.service-num {
  position: absolute;
  top: 0.9rem; right: 1.1rem;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--sky);
  line-height: 1;
}

/* ---------- Trades & local services ---------- */
.trades-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.trades-lead { margin-top: 1.1rem; max-width: 34rem; }
.trades-copy .btn { margin-top: 1.8rem; }
.trades-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.2rem);
}
.trades-card h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.trades-list { margin-top: 0; }
.trades-list li { font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.price-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--navy); }
.price-card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
}
.price-amount {
  margin-top: 0.7rem;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
}
.price-from, .price-term {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.7;
}
.price-blurb { margin-top: 0.9rem; font-weight: 600; font-size: 0.98rem; }
.price-list {
  list-style: none;
  margin-top: 1.1rem;
  border-top: 2px dashed var(--sky);
  display: grid;
}
.price-list li {
  padding: 0.55rem 0;
  border-bottom: 2px dashed var(--sky);
  font-size: 0.93rem;
  font-weight: 600;
}
.price-footnote {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.75;
}

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.work-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--navy); }
.work-card:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.work-thumb {
  padding: 1.6rem 1.6rem 0;
  border-bottom: var(--border);
  height: 190px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.thumb-a { background: repeating-linear-gradient(-45deg, var(--red), var(--red) 14px, #d92c3a 14px, #d92c3a 28px); }
.thumb-b { background: repeating-linear-gradient(-45deg, var(--blue), var(--blue) 14px, #3d6f8d 14px, #3d6f8d 28px); }
.thumb-c { background: repeating-linear-gradient(-45deg, var(--navy), var(--navy) 14px, #16294a 14px, #16294a 28px); }
.thumb-window {
  background: var(--white);
  border: var(--border);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  width: 100%;
  transition: transform 0.25s ease;
}
.work-card:hover .thumb-window { transform: translateY(-8px); }
.thumb-bar {
  display: flex; gap: 5px;
  padding: 0.5rem 0.8rem;
  border-bottom: 2px solid var(--navy);
  background: var(--cream);
  border-radius: 10px 10px 0 0;
}
.thumb-bar i { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--navy); background: var(--sky); }
.thumb-content { padding: 0.9rem; display: grid; gap: 0.5rem; }
.tc-line { height: 9px; background: var(--sky); border-radius: 4px; }
.tc-line.w60 { width: 60%; background: var(--navy); height: 12px; }
.tc-line.w40 { width: 40%; background: var(--red); }
.tc-line.w50 { width: 50%; background: var(--navy); height: 12px; }
.tc-line.w70 { width: 70%; }
.tc-block { height: 34px; background: var(--cream); border: 2px solid var(--navy); border-radius: 7px; }
.tc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.tc-cols.three { grid-template-columns: 1fr 1fr 1fr; }
.tc-cols span { height: 26px; background: var(--cream); border: 2px solid var(--navy); border-radius: 6px; }
.work-info { padding: 1.2rem 1.4rem 1.4rem; }
.work-info h3 { font-size: 1.15rem; }
.work-info p { font-size: 0.9rem; opacity: 0.75; margin-top: 0.2rem; }
.work-desc { font-style: italic; margin-top: 0.5rem !important; opacity: 0.85 !important; }
.work-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
}
.work-tag {
  display: inline-block;
  background: var(--sky);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
}
.work-view {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  white-space: nowrap;
}
.wv-arrow { display: inline-block; transition: transform 0.18s ease; }
.work-card:hover .wv-arrow { transform: translateX(4px); }
.work-note { margin-top: 2.4rem; font-weight: 600; text-align: center; }
.work-note a { color: var(--red); font-weight: 800; text-decoration: none; }
.work-note a:hover { text-decoration: underline; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
  counter-reset: step;
}
.process-step {
  position: relative;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 2.4rem 1.5rem 1.8rem;
  border-style: dashed;
  transition: border-style 0.15s ease, background 0.15s ease;
}
.process-step:hover { border-style: solid; background: var(--white); }
.step-num {
  position: absolute;
  top: -22px; left: 1.3rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--red);
  color: var(--cream);
  font-weight: 900;
  font-size: 1.3rem;
  border: var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.55rem; }
.process-step p { font-size: 0.94rem; opacity: 0.85; }

/* ---------- About / Stats ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.section-navy h2 { color: var(--cream); }
.about-lead { margin-top: 1.2rem; opacity: 0.92; max-width: 36rem; }
.about-lead strong { color: var(--sky); }
.about-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.7rem; }
.about-list li { display: flex; gap: 0.7rem; align-items: baseline; font-weight: 600; }
.check {
  color: var(--navy);
  background: var(--sky);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transform: translateY(3px);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: var(--cream);
  color: var(--navy);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-value { font-weight: 900; font-size: 2.3rem; line-height: 1; color: var(--red); }
.stat-label { font-weight: 700; font-size: 0.9rem; }

/* ---------- Founding clients ---------- */
.founding-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.founding-lead { margin-top: 1.1rem; max-width: 34rem; opacity: 0.9; }
.founding-copy .btn { margin-top: 1.8rem; }
.founding-points { display: grid; gap: 1.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  border-top: var(--border);
  border-bottom: var(--border);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(241, 250, 238, 0.18) 2px, transparent 2.4px);
  background-size: 26px 26px;
}
.cta-inner { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band p { margin-top: 0.9rem; font-size: 1.1rem; opacity: 0.95; }
.cta-band .btn { margin-top: 1.8rem; }
.cta-cursor {
  width: 42px;
  margin-inline: auto;
  margin-bottom: 1rem;
  animation: cursor-nudge 3.2s ease-in-out infinite;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-lead { margin-top: 1.1rem; }
.contact-mail { color: var(--red); font-weight: 800; text-decoration: none; }
.contact-mail:hover { text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; }
.contact-points { margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact-point { display: flex; gap: 0.9rem; align-items: center; }
.contact-point > div { display: flex; flex-direction: column; }
.contact-point span:not(.point-icon) { font-size: 0.9rem; opacity: 0.75; }
.point-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--white);
  border: var(--border);
  border-radius: 12px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 7px 7px 0 var(--navy);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label { font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--navy);
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--sky);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--blue); opacity: 0.55; }
.form-success {
  background: var(--sky);
  border: 2px solid var(--navy);
  border-radius: 10px;
  font-weight: 700;
  padding: 0.8rem 1rem;
  text-align: center;
}
.form-error {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 10px;
  font-weight: 600;
  padding: 0.8rem 1rem;
  text-align: center;
}
.form-error a { color: var(--red); font-weight: 800; }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--cream);
  border-top: var(--border);
  padding-top: 3.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.footer .nav-logo { color: var(--cream); }
.footer-tag { margin-top: 0.9rem; font-weight: 600; letter-spacing: 0.08em; font-size: 0.9rem; opacity: 0.8; }
.footer-nav { display: grid; gap: 0.55rem; justify-items: start; }
.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.85;
}
.footer-nav a:hover { opacity: 1; color: var(--sky); }
.footer-meta p { font-size: 0.9rem; opacity: 0.75; margin-top: 0.8rem; }
.footer-contact a { color: var(--sky); font-weight: 700; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-dots { display: inline-flex; gap: 8px; }
.fd { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 2px solid var(--cream); }
.fd-red { background: var(--red); }
.fd-sky { background: var(--sky); }
.fd-navy { background: var(--blue); }
.footer-bottom {
  border-top: 2px dashed rgba(241, 250, 238, 0.3);
  padding-block: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Reveal animations ---------- */
.reveal,
[class*="reveal-"] {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.in-view,
[class*="reveal-"].in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-1.in-view { transition-delay: 0.05s; }
.reveal-2.in-view { transition-delay: 0.12s; }
.reveal-3.in-view { transition-delay: 0.2s; }
.reveal-4.in-view { transition-delay: 0.28s; }
.reveal-5.in-view { transition-delay: 0.38s; }
.reveal-6.in-view { transition-delay: 0.48s; }
.reveal-7.in-view { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, [class*="reveal-"] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 2.4rem; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: 1fr; }
  .founding-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin-top: 1.5rem; }
  .deco-plane { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 4%;
    gap: 1.1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-x-1 { display: none; }
}
