:root {
  --ink: #17211b;
  --muted: #5c685e;
  --leaf: #244c37;
  --leaf-2: #3f7a55;
  --accent: #f57400;
  --accent-dark: #9b4300;
  --accent-soft: #fff1e4;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --line: #d9ded0;
  --shadow: 0 22px 60px rgba(23, 33, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(36, 76, 55, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.nav {
  width: calc(100% - 96px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.brand {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 12px -6px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(252, 251, 251, 0.1);
  filter: blur(10px);
  opacity: 1;
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: auto;
  height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a.is-active {
  color: #fff;
  border-color: var(--accent);
}

.nav-links a:hover {
  color: #fff;
  border-color: var(--accent);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 9px;
  opacity: 0.7;
  margin-left: 1px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 14px;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  padding: 6px 0;
  background: linear-gradient(180deg, rgba(24, 46, 33, 0.98), rgba(15, 30, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: none !important;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav-dropdown a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: transparent !important;
}

/* Mobile services sub-list */
.mobile-services-details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mobile-services-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.mobile-services-details summary::-webkit-details-marker {
  display: none;
}

.mobile-services-details summary::after {
  content: "▾";
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  transition: transform 200ms ease;
}

.mobile-services-details[open] summary::after {
  transform: rotate(180deg);
}

.mobile-services-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-services-links a {
  display: flex;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: none !important;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.mobile-services-links a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav .button {
  font-size: 14px;
}

.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
}

.mobile-menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.mobile-menu-toggle-icon {
  display: grid;
  gap: 4px;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 14px;
  right: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(24, 46, 33, 0.98),
    rgba(15, 30, 21, 0.98)
  );
  box-shadow: 0 24px 54px rgba(7, 14, 10, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mobile-menu-panel-inner {
  display: grid;
  gap: 16px;
}

.mobile-menu-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu-panel nav {
  display: grid;
  gap: 8px;
}

.mobile-menu-panel nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu-panel nav a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.mobile-menu-panel nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.mobile-menu-panel .button {
  width: 100%;
}

.mobile-menu-panel .button-primary {
  min-height: 48px;
}

.mobile-menu-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 600;
}

.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-socials .contact-shortcut {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-socials .contact-shortcut:hover {
  color: #fff;
}

.site-header.is-mobile-menu-open .mobile-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-menu-open .mobile-menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #ff8a1f;
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.service-hero {
  padding: 154px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 21, 16, 0.82), rgba(12, 21, 16, 0.42)),
    url("../img/hero-poster.jpg") center/cover;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(211, 122, 47, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb::before {
  content: "←";
  transition: transform 160ms ease;
}

.breadcrumb:hover {
  color: #fff;
}

.breadcrumb:hover::before {
  transform: translateX(-3px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reveal-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.service-hero .section-inner > * {
  opacity: 0;
  animation: hero-fade-up 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.service-hero .section-inner > :nth-child(1) {
  animation-delay: 90ms;
}

.service-hero .section-inner > :nth-child(2) {
  animation-delay: 170ms;
}

.service-hero .section-inner > :nth-child(3) {
  animation-delay: 250ms;
}

.service-hero .section-inner > :nth-child(4) {
  animation-delay: 330ms;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.detail-section {
  padding: 84px 0;
  background: var(--cream);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 42px;
  align-items: start;
}

.summary-card,
.content-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.08);
}

.summary-card {
  position: sticky;
  top: 104px;
  padding: 30px;
}

.detail-section .summary-card {
  display: grid;
  gap: 24px;
}

.detail-section .summary-card::after {
  content: "";
  display: block;
  min-height: 260px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(23, 33, 27, 0.08), rgba(23, 33, 27, 0.08)),
    url("../img/Screenshot_7-5-2026_33539_.webp") center/cover;
  box-shadow: 0 14px 38px rgba(23, 33, 27, 0.14);
}

.summary-card h2,
.content-card h2,
.cta-card h2 {
  margin-bottom: 14px;
  color: var(--leaf);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.summary-card p,
.content-card p,
.cta-card p {
  color: var(--muted);
}

.quick-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li,
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: #314139;
  font-weight: 700;
}

.quick-list li::before,
.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.content-card {
  padding: 34px;
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-card h3 {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 22px;
}

.detail-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.mini-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-card h3 {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 20px;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-card {
  margin-top: 18px;
  padding: 34px;
  background: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--accent-dark);
  font-weight: 800;
}

footer {
  padding: 42px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  background: #132319;
}

.footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.7fr));
  gap: 28px;
  font-size: 14px;
}

.footer-inner strong {
  color: #fff;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand p,
.footer-block p {
  margin-bottom: 0;
}

.footer-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-block {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-links {
  grid-template-columns: repeat(2, max-content);
  column-gap: 22px;
}

.footer-links a:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-links a:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-links a:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}

.footer-links a:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.footer-links a:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.footer-links a,
.footer-contact-list a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
  color: #fff;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
}

.footer-credit {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.contact-shortcuts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.contact-shortcut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--leaf);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.contact-shortcut svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-shortcut:hover {
  transform: translateY(-1px);
  color: var(--accent-dark);
}

.footer-socials {
  justify-content: flex-start;
  gap: 12px;
  width: auto;
}

.footer-socials .contact-shortcut {
  color: rgba(255, 255, 255, 0.82);
}

.footer-socials .contact-shortcut:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    width: 100%;
    min-height: 72px;
    padding: 0 14px 0 8px;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav > .button {
    display: none;
  }

  .brand {
    margin-right: auto;
  }

  .brand::after {
    inset: 12px -2px;
  }

  .brand-logo {
    height: 56px;
  }

  .mobile-menu-toggle,
  .mobile-menu-panel {
    display: flex;
  }

  .mobile-menu-panel {
    display: block;
  }

  .service-hero {
    padding-top: 126px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-pair {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    height: 52px;
  }

  .detail-section {
    padding: 62px 0;
  }

  .summary-card,
  .content-card,
  .cta-card {
    padding: 26px;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero .section-inner > *,
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
