@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #151515;
  --muted: #646464;
  --orange: #f26a22;
  --orange-deep: #d95110;
  --yellow: #ffc928;
  --cream: #fff9f1;
  --paper: #ffffff;
  --line: rgba(56, 37, 22, 0.11);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(81, 40, 13, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 197, 47, 0.18), transparent 23rem),
    radial-gradient(circle at 98% 25%, rgba(242, 106, 34, 0.15), transparent 26rem),
    linear-gradient(115deg, #fffdf9 0%, #fff8ee 46%, #fffaf4 100%);
}
body::before,
body::after {
  position: fixed;
  z-index: -2;
  width: 38rem;
  height: 38rem;
  content: '';
  border-radius: 43% 57% 68% 32% / 47% 37% 63% 53%;
  filter: blur(12px);
  opacity: 0.46;
  pointer-events: none;
}
body::before {
  top: 11rem;
  left: -25rem;
  background: radial-gradient(circle at 60% 35%, rgba(255, 202, 37, 0.6), rgba(255, 169, 75, 0.08) 63%, transparent 70%);
  animation: drift-one 18s ease-in-out infinite alternate;
}
body::after {
  top: 42rem;
  right: -24rem;
  background: radial-gradient(circle at 40% 40%, rgba(242, 106, 34, 0.50), rgba(255, 202, 37, 0.08) 62%, transparent 70%);
  animation: drift-two 22s ease-in-out infinite alternate;
}

a { color: inherit; }
button, input { font: inherit; }

@keyframes drift-one {
  to { transform: translate(9rem, -4rem) rotate(16deg) scale(1.06); border-radius: 61% 39% 44% 56% / 31% 60% 40% 69%; }
}
@keyframes drift-two {
  to { transform: translate(-8rem, 3rem) rotate(-15deg) scale(0.94); border-radius: 39% 61% 55% 45% / 58% 35% 65% 42%; }
}
@keyframes float-dot {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(6px); }
}
@keyframes sheen {
  0%, 60%, 100% { transform: translateX(-130%) rotate(18deg); }
  78% { transform: translateX(230%) rotate(18deg); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 66px;
  margin: 14px auto 0;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(98, 57, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.072em;
  white-space: nowrap;
}
.brand-glitch,
.brand-fix {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}
.brand-glitch {
  margin-right: 0.04em;
  color: var(--orange);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 5px 17px rgba(242, 106, 34, 0.23);
}
.brand-glitch::after {
  position: absolute;
  top: 8%;
  right: -4%;
  bottom: 7%;
  left: -5%;
  z-index: -1;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px 14px 10px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,203,139,0.32));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 5px 18px rgba(242,106,34,0.12);
  transform: rotate(-1deg);
}
.brand-fix {
  color: #272727;
  text-shadow: 0 1px 0 #fff, 0 2px 6px rgba(0, 0, 0, 0.12);
}
.brand-fix::after {
  position: absolute;
  top: 9%;
  right: -4%;
  bottom: 7%;
  left: -4%;
  z-index: -1;
  content: '';
  border: 1px solid rgba(54,54,54,0.13);
  border-radius: 10px 14px 10px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(197,197,197,0.38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 5px 16px rgba(0,0,0,0.08);
  transform: rotate(1deg);
}
.brand-g, .brand-f { font-size: 29px; }
.brand-small { font-size: 19px; }

.site-nav { display: flex; gap: 24px; align-items: center; margin-left: auto; }
.site-nav a {
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--orange); }

.nav-contact,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.nav-contact { color: #fff; background: #202020; box-shadow: 0 8px 18px rgba(0,0,0,0.16); }
.nav-contact:hover, .button-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 27px rgba(224, 86, 14, 0.24); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  width: min(1160px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 92px 0 82px;
}
.hero-copy { position: relative; z-index: 1; animation: rise-in 0.7s ease both; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: #754019;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 9px;
  height: 9px;
  content: '';
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 201, 40, 0.18), 0 0 17px rgba(242, 106, 34, 0.45);
}
.hero h1, .section-heading, .cta-content h2, .legal-hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.hero h1 { max-width: 690px; font-size: clamp(50px, 6.5vw, 82px); }
.accent-word { color: var(--orange); }
.hero p { max-width: 615px; margin: 26px 0 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--orange), #f3861d 52%, var(--orange-deep));
  box-shadow: 0 12px 24px rgba(224, 86, 14, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.button-primary::after {
  position: absolute;
  top: -45%;
  width: 32%;
  height: 190%;
  content: '';
  background: rgba(255,255,255,0.24);
  transform: translateX(-130%) rotate(18deg);
  animation: sheen 6s ease-in-out infinite;
}
.button-primary span { position: relative; z-index: 1; }
.button-secondary { color: #303030; border: 1px solid var(--line); background: rgba(255,255,255,0.72); }
.button-secondary:hover { transform: translateY(-2px); border-color: rgba(242,106,34,0.36); background: #fff; box-shadow: 0 14px 28px rgba(84,47,16,0.10); }

.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.meta-pill { padding: 7px 10px; border: 1px solid rgba(104,68,34,0.12); border-radius: 999px; color: #624323; background: rgba(255,255,255,0.55); font-size: 12px; font-weight: 700; }

.hero-visual { position: relative; min-height: 460px; animation: rise-in 0.75s 0.11s ease both; }
.hero-panel {
  position: absolute;
  inset: 18px 2px 22px 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 34px;
  background:
    linear-gradient(142deg, rgba(255,255,255,0.92), rgba(255,244,229,0.82)),
    linear-gradient(135deg, #fff, #ffe9c2);
  box-shadow: var(--shadow), inset 0 1px 0 #fff;
}
.hero-panel::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: 0.8;
  background: linear-gradient(125deg, transparent 0 34%, rgba(255,184,62,0.19) 34.2% 34.8%, transparent 35% 55%, rgba(242,106,34,0.13) 55.2% 55.8%, transparent 56%), radial-gradient(circle at 25% 20%, rgba(255,202,40,0.32), transparent 27%), radial-gradient(circle at 79% 75%, rgba(242,106,34,0.20), transparent 30%);
}
.hero-panel::after {
  position: absolute;
  width: 72%;
  height: 28%;
  right: -17%;
  bottom: -9%;
  content: '';
  border: 1px solid rgba(242,106,34,0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,201,40,0.08), 0 0 0 78px rgba(242,106,34,0.05);
  transform: rotate(-28deg);
}
.visual-brand {
  position: absolute;
  top: 52px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%) scale(1.65);
  transform-origin: center;
}
.feature-card {
  position: absolute;
  z-index: 3;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 16px 32px rgba(99,54,15,0.11), inset 0 1px 0 #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.feature-card strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 16px; letter-spacing: -0.04em; }
.feature-card span { display: block; margin-top: 3px; color: #6d6257; font-size: 12px; font-weight: 600; }
.feature-one { right: -10px; bottom: 74px; animation: float-dot 5s ease-in-out infinite; }
.feature-two { left: -18px; bottom: 8px; animation: float-dot 6.4s 0.6s ease-in-out infinite; }
.orbit-dot { position: absolute; z-index: 4; width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 7px rgba(255,201,40,0.20), 0 8px 16px rgba(242,106,34,0.2); }
.dot-one { top: 70px; right: 12px; animation: float-dot 4.4s ease-in-out infinite; }
.dot-two { bottom: 152px; left: -2px; width: 12px; height: 12px; background: var(--orange); animation: float-dot 5.4s 0.9s ease-in-out infinite; }

.content-section { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 92px 0; }
.section-intro { max-width: 675px; margin-bottom: 38px; }
.section-kicker { margin: 0 0 12px; color: var(--orange-deep); font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.section-heading { font-size: clamp(36px, 4.3vw, 55px); }
.section-intro > p:last-child { max-width: 610px; margin: 17px 0 0; color: var(--muted); font-size: 17px; }

.search-shell { position: relative; width: min(720px, 100%); margin: 0 auto 36px; }
.search-shell svg { position: absolute; top: 50%; left: 20px; width: 20px; color: var(--orange); transform: translateY(-50%); }
.search-input { width: 100%; min-height: 62px; padding: 0 22px 0 54px; outline: none; border: 1px solid rgba(89,56,29,0.14); border-radius: 18px; color: var(--ink); background: rgba(255,255,255,0.78); box-shadow: 0 12px 32px rgba(97,52,17,0.07), inset 0 1px 0 #fff; transition: border 0.2s ease, box-shadow 0.2s ease; }
.search-input:focus { border-color: rgba(242,106,34,0.64); box-shadow: 0 0 0 5px rgba(242,106,34,0.10), 0 12px 32px rgba(97,52,17,0.08); }
.search-input::placeholder { color: #9a9087; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.service-card { overflow: hidden; border: 1px solid rgba(90,55,28,0.12); border-radius: 22px; background: rgba(255,255,255,0.76); box-shadow: 0 14px 35px rgba(86,49,20,0.075), inset 0 1px 0 rgba(255,255,255,0.96); transition: transform 0.28s ease, box-shadow 0.28s ease, border 0.28s ease; }
.service-card:hover { border-color: rgba(242,106,34,0.30); box-shadow: 0 23px 46px rgba(86,49,20,0.14), inset 0 1px 0 #fff; transform: translateY(-6px); }
.card-image { position: relative; height: 204px; overflow: hidden; }
.card-image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 45%, rgba(47,28,12,0.32)); }
.card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .card-image img { transform: scale(1.06); }
.card-content { padding: 21px 22px 23px; }
.card-content h3 { margin: 0 0 13px; font-family: 'Space Grotesk', sans-serif; font-size: 21px; letter-spacing: -0.05em; }
.service-link { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: #665d56; font-size: 13px; font-weight: 600; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
.service-link::before { content: '↗'; color: var(--orange); font-size: 15px; }
.service-link:hover { color: var(--orange-deep); transform: translateX(3px); }

.cta-section { width: min(1160px, calc(100% - 40px)); margin: 12px auto 100px; }
.cta-panel { position: relative; overflow: hidden; padding: clamp(36px, 6vw, 76px); border: 1px solid rgba(255,255,255,0.92); border-radius: 30px; background: linear-gradient(125deg, #fff1d5 0%, #fff8ef 44%, #fff 100%); box-shadow: var(--shadow), inset 0 1px 0 #fff; }
.cta-panel::before { position: absolute; inset: 0; content: ''; background: radial-gradient(circle at 84% 17%, rgba(242,106,34,0.22), transparent 25%), radial-gradient(circle at 10% 102%, rgba(255,201,40,0.34), transparent 31%), linear-gradient(122deg, transparent 25%, rgba(255,255,255,0.62) 25.2% 25.8%, transparent 26%); }
.cta-content { position: relative; z-index: 1; max-width: 650px; }
.cta-content h2 { font-size: clamp(36px, 4.8vw, 58px); }
.cta-content p { margin: 18px 0 28px; color: var(--muted); font-size: 17px; }

.site-footer { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 34px; text-align: center; }
.footer-legal { display: flex; justify-content: center; gap: 22px; margin-bottom: 22px; }
.footer-legal a { color: #75695e; font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }
.affiliate-note { margin: 0 0 8px; color: #8b8178; font-size: 11px; font-weight: 600; }
.footer-email { display: inline-block; color: #2e2a26; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; text-decoration: none; }
.footer-email:hover { color: var(--orange); }

.legal-page { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 96px; }
.legal-hero { padding: 52px 0 38px; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { font-size: clamp(44px, 6vw, 68px); }
.legal-hero p { max-width: 700px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.policy-card { padding: clamp(25px, 5vw, 48px); border: 1px solid rgba(82,52,27,0.12); border-radius: 26px; background: rgba(255,255,255,0.78); box-shadow: 0 20px 54px rgba(86,49,20,0.09), inset 0 1px 0 #fff; }
.policy-card h2 { margin: 35px 0 10px; font-family: 'Space Grotesk', sans-serif; font-size: 24px; letter-spacing: -0.045em; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card p, .policy-card li { color: #57514c; }
.policy-card ul { padding-left: 20px; }
.policy-card a { color: var(--orange-deep); font-weight: 700; }
.policy-note { margin-top: 24px; padding: 16px 18px; border-left: 4px solid var(--yellow); border-radius: 0 14px 14px 0; background: #fff7df; color: #5e492a; font-size: 14px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: #675c51; font-size: 14px; font-weight: 700; text-decoration: none; }
.back-link:hover { color: var(--orange); }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 76px; }
  .hero-visual { min-height: 390px; max-width: 480px; width: 90%; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .site-header { width: min(100% - 20px, 1160px); top: 8px; margin-top: 8px; padding-left: 14px; }
  .brand-g, .brand-f { font-size: 25px; }
  .brand-small { font-size: 16px; }
  .nav-contact { min-height: 40px; padding: 0 12px; font-size: 12px; }
  .hero, .content-section, .cta-section { width: min(100% - 28px, 1160px); }
  .hero { padding: 58px 0 66px; }
  .hero h1 { font-size: 49px; }
  .hero p { font-size: 16px; }
  .hero-visual { width: 100%; min-height: 340px; }
  .feature-one { right: -6px; bottom: 55px; }
  .feature-two { left: -6px; }
  .service-grid { grid-template-columns: 1fr; }
  .content-section { padding: 72px 0; }
  .cta-section { margin-bottom: 72px; }
  .footer-legal { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}


/* --- Hero service slideshow --- */
.slideshow.hero-panel {
  isolation: isolate;
  background: #f7eadc;
}
.slideshow.hero-panel::before {
  z-index: 1;
  opacity: 1;
  background: linear-gradient(180deg, rgba(33, 19, 9, 0.03) 0%, rgba(33, 19, 9, 0.02) 42%, rgba(33, 19, 9, 0.46) 100%);
  pointer-events: none;
}
.slideshow.hero-panel::after {
  z-index: 1;
  opacity: 0.72;
  pointer-events: none;
}
.slideshow-track {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.78s ease, transform 4.8s ease;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.95);
}
.slide figcaption {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 21px;
  left: 21px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  color: #fff;
  background: rgba(27, 17, 9, 0.52);
  box-shadow: 0 8px 20px rgba(33, 17, 8, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.slide figcaption span {
  color: #ffd75f;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.slide-dots {
  position: absolute;
  z-index: 4;
  bottom: 27px;
  left: 50%;
  display: flex;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 7px 16px rgba(78, 42, 13, 0.12), inset 0 1px 0 #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.slide-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(52, 45, 38, 0.28);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}
.slide-dot.is-active {
  width: 22px;
  background: var(--orange);
}
.slide-dot:focus-visible {
  outline: 3px solid rgba(242, 106, 34, 0.36);
  outline-offset: 3px;
}
.slideshow-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .slide figcaption { right: 14px; bottom: 14px; left: 14px; padding: 11px 13px; font-size: 15px; }
  .slide-dots { bottom: 18px; }
}
