:root {
  --cream: #fbf7ee;
  --warm-white: #fffdf8;
  --ink: #17231f;
  --muted: #66736b;
  --green: #183f36;
  --green-2: #245848;
  --navy: #162638;
  --gold: #b9954b;
  --gold-soft: #efe1bd;
  --line: #e7dfcf;
  --shadow: 0 18px 45px rgba(25, 43, 38, 0.12);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans Hebrew", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(231, 223, 207, 0.86);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-soft);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(239, 225, 189, 0.28);
}

.main-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #31463f;
  font-size: 0.94rem;
  white-space: nowrap;
}

.main-menu a {
  position: relative;
  padding-block: 8px;
}

.main-menu a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 180ms ease;
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 18px;
  font-weight: 750;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--green);
  color: #fffdf8;
  box-shadow: 0 10px 24px rgba(24, 63, 54, 0.22);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(24, 63, 54, 0.25);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.88);
  color: var(--green);
  border-color: rgba(24, 63, 54, 0.18);
}

.button.secondary:hover {
  background: #fffdf8;
  border-color: rgba(185, 149, 75, 0.75);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--green);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
}

.menu-lines::before {
  transform: translateY(-7px);
}

.menu-lines::after {
  transform: translateY(5px);
}

.menu-open .menu-lines {
  transform: rotate(45deg);
}

.menu-open .menu-lines::before {
  transform: translateY(0) rotate(90deg);
}

.menu-open .menu-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/hero-workspace.png");
  background-size: cover;
  background-position: left center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 247, 238, 0.34), rgba(251, 247, 238, 0.88) 40%, rgba(251, 247, 238, 0.99) 72%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(24, 63, 54, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100% - 40px));
  margin-inline: auto;
  margin-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-block: 66px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--green);
  font-size: clamp(1.85rem, 4.15vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  color: #30463e;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  font-weight: 520;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  background: var(--green);
  color: var(--gold-soft);
  border-block: 1px solid rgba(239, 225, 189, 0.22);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-block: 18px;
  text-align: center;
  font-weight: 750;
}

.trust-grid span {
  position: relative;
}

.trust-grid span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: rgba(239, 225, 189, 0.25);
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.section-muted {
  background: #f4eddf;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.process-list li,
.contact-form {
  border: 1px solid rgba(231, 223, 207, 0.9);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 218px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 149, 75, 0.5);
  box-shadow: 0 24px 55px rgba(25, 43, 38, 0.14);
}

.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3f6f1, #e9f0ea);
  color: var(--green);
  border: 1px solid rgba(36, 88, 72, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.82);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-index::before {
  width: 18px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 3px;
  background:
    linear-gradient(var(--gold), var(--gold)) 50% 7px / 10px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 50% 12px / 10px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 50% 17px / 10px 2px no-repeat;
}

.icon-proof::before {
  width: 20px;
  height: 11px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg) translate(-1px, -2px);
}

.icon-files::before {
  width: 17px;
  height: 22px;
  border: 2px solid var(--green);
  border-radius: 3px;
  transform: translate(3px, 1px);
}

.icon-files::after {
  width: 17px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 3px;
  transform: translate(-3px, -3px);
}

.icon-table::before {
  width: 23px;
  height: 20px;
  border: 2px solid var(--green);
  border-radius: 3px;
  background:
    linear-gradient(var(--gold), var(--gold)) 0 6px / 100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 0 12px / 100% 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 7px 0 / 1.5px 100% no-repeat,
    linear-gradient(var(--gold), var(--gold)) 15px 0 / 1.5px 100% no-repeat;
}

.icon-consistency::before {
  width: 21px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-18deg);
}

.icon-consistency::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: -10px 4px 0 var(--green), 10px -4px 0 var(--green);
}

.icon-layout::before {
  width: 21px;
  height: 24px;
  border: 2px solid var(--green);
  border-radius: 3px;
  background:
    linear-gradient(var(--gold), var(--gold)) 4px 6px / 11px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 4px 12px / 5px 7px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 11px 12px / 5px 7px no-repeat;
}

.service-card h3,
.process-list h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.35;
}

.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.seo-copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
  line-height: 1.78;
}

.seo-copy p {
  margin: 0;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(185, 149, 75, 0.24);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--green-2);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(21, 34, 41, 0.05);
}

.service-links a:hover,
.service-links a:focus-visible {
  border-color: rgba(185, 149, 75, 0.54);
  color: var(--gold);
  transform: translateY(-1px);
}

.service-page {
  min-height: 100vh;
  background: var(--paper);
}

.service-page-hero {
  padding-top: 140px;
}

.service-page-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--green-2);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
}

.service-detail {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.82;
}

.service-detail p {
  margin: 0;
}

.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 245px;
  padding: 26px 22px;
}

.process-list li::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 64px;
  left: -20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 149, 75, 0.55));
}

.process-list li:last-child::before {
  display: none;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-soft);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(24, 63, 54, 0.2);
}

.examples-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 820px) 48px;
  gap: 12px;
  align-items: center;
  max-width: 940px;
  margin-inline: auto;
}

.carousel-viewport {
  position: relative;
  min-height: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.example-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.example-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.example-copy {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.example-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.example-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.example-image-button {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  height: 700px;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  cursor: zoom-in;
}

.example-image-button img,
.lightbox-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(24, 63, 54, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(25, 43, 38, 0.14);
  background: #fffdf8;
}

.example-fallback,
.lightbox-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  border: 1px dashed rgba(185, 149, 75, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(185, 149, 75, 0.08), transparent 40%),
    #fbf7ee;
  color: #6c5831;
  font-weight: 850;
  text-align: center;
}

.image-missing .example-image-button img,
.lightbox-panel.image-missing .lightbox-image {
  display: none;
}

.image-missing .example-fallback,
.lightbox-panel.image-missing .lightbox-fallback {
  display: grid;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 63, 54, 0.16);
  border-radius: 50%;
  background: var(--warm-white);
  color: var(--green);
  box-shadow: 0 12px 28px rgba(25, 43, 38, 0.11);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.carousel-arrow span {
  display: block;
  transform: translateY(-1px);
  font-size: 2rem;
  line-height: 1;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgba(185, 149, 75, 0.8);
  color: var(--gold);
  transform: translateY(-1px);
}

.carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(24, 63, 54, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.28);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 23, 20, 0.72);
  cursor: pointer;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(90svh, 900px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(239, 225, 189, 0.34);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 63, 54, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-image-wrap {
  position: relative;
  width: min(100%, 620px);
  min-height: 72svh;
  margin-inline: auto;
  max-height: 66svh;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.lightbox-copy {
  padding-inline: 6px;
}

.lightbox-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.lightbox-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.about-section {
  background: var(--warm-white);
  border-block: 1px solid rgba(231, 223, 207, 0.72);
  padding-block: clamp(46px, 5.5vw, 72px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.about-section .section-heading {
  margin-bottom: 0;
}

.about-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  min-height: 50px;
  padding: 12px 48px 12px 16px;
  border: 1px solid rgba(231, 223, 207, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #fbf7ee);
  color: #31463f;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(25, 43, 38, 0.07);
}

.about-points li::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(185, 149, 75, 0.14);
}

#faq .narrow {
  max-width: 940px;
}

#faq .section-heading {
  max-width: 860px;
}

#faq .section-heading h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.65rem);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 10px 28px rgba(25, 43, 38, 0.08);
  overflow: hidden;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 24px 18px 58px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 22px;
  text-align: center;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(255, 253, 248, 0.95));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-note {
  margin-top: 28px;
  padding: 18px;
  border-right: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.78);
  color: #40524b;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.whatsapp-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(24, 63, 54, 0.18);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--green);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(25, 43, 38, 0.08);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.whatsapp-direct:hover,
.whatsapp-direct:focus-visible {
  border-color: rgba(185, 149, 75, 0.72);
  color: var(--gold);
  transform: translateY(-1px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.form-row,
.urgency,
.file-upload,
.form-message,
.form-submit {
  grid-column: auto;
}

.form-row.full,
.urgency,
.file-upload,
.form-message,
.form-submit {
  grid-column: 1 / -1;
}

label,
legend {
  display: block;
  margin-bottom: 7px;
  color: #263e36;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9d0be;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 118px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 149, 75, 0.14);
}

.field-error {
  border-color: #a43d35;
  background: #fff8f7;
}

.urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.urgency legend {
  width: 100%;
}

.urgency label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 650;
  color: #40524b;
}

.urgency input {
  width: auto;
  accent-color: var(--green);
}

.file-upload {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(185, 149, 75, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(251, 247, 238, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.8);
}

.file-upload label {
  margin-bottom: 0;
}

.form-submit {
  min-height: 52px;
  margin-top: 2px;
  font-size: 1.02rem;
}

.file-upload strong,
.file-upload p {
  display: block;
  margin: 0;
}

.file-upload p {
  color: var(--muted);
  font-size: 0.95rem;
}

.file-upload input[type="file"] {
  min-height: auto;
  padding: 12px;
  border-style: dashed;
  background: var(--warm-white);
  cursor: pointer;
}

.file-upload input[type="file"]::file-selector-button {
  margin-left: 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--warm-white);
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
}

.file-upload input[type="file"]:hover {
  border-color: rgba(36, 88, 72, 0.42);
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-message p {
  margin: 0;
}

.form-message a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-message:not(:empty) {
  padding: 12px 14px;
  border-radius: var(--radius);
}

.form-message.error {
  border: 1px solid rgba(164, 61, 53, 0.22);
  background: #fff8f7;
  color: #a43d35;
}

.form-message.success {
  border: 1px solid rgba(36, 88, 72, 0.22);
  background: #f1f6f1;
  color: var(--green-2);
}

.form-message.warning {
  border: 1px solid rgba(185, 149, 75, 0.28);
  background: #fff9ea;
  color: #765c20;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 34, 41, 0.46);
}

.success-modal-panel {
  position: relative;
  width: min(440px, 100%);
  padding: 26px;
  border: 1px solid rgba(36, 88, 72, 0.18);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-modal-panel h3 {
  margin: 0 0 10px;
  color: var(--green-2);
  font-size: 1.35rem;
}

.success-modal-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding-block: 40px;
  background: var(--navy);
  color: #e9eee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: #fffdf8;
}

.site-footer p {
  margin: 12px 0 0;
  color: #c9d0cd;
}

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

.footer-links a {
  color: #e9eee9;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1240px) {
  .nav-shell {
    width: min(1180px, calc(100% - 28px));
    gap: 16px;
  }

  .nav-cta {
    padding-inline: 14px;
    font-size: 0.93rem;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .process-list li {
    min-height: 220px;
  }

  .process-list li::before {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    justify-items: stretch;
    width: 100%;
    max-height: calc(100svh - 76px);
    padding: 10px 20px 22px;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(23, 35, 31, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 210ms ease, opacity 210ms ease;
  }

  .menu-open .main-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(231, 223, 207, 0.82);
  }

  .main-menu a::after,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 70svh;
    background-position: 30% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 247, 238, 0.54), rgba(251, 247, 238, 0.92) 44%, rgba(251, 247, 238, 0.99) 82%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(24, 63, 54, 0.06));
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li::before {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .container,
  .nav-shell,
  .hero-content {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

  .main-menu {
    top: 68px;
    max-height: calc(100svh - 68px);
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    background-position: 24% center;
  }

  .hero-content {
    margin-inline: auto;
    padding-block: 48px 52px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 247, 238, 0.99), rgba(251, 247, 238, 0.95) 54%, rgba(251, 247, 238, 0.76)),
      linear-gradient(90deg, rgba(251, 247, 238, 0.84), rgba(251, 247, 238, 0.34));
  }

  .hero h1 {
    font-size: clamp(1.78rem, 8.2vw, 2.42rem);
    line-height: 1.13;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .trust-grid,
  .service-grid,
  .service-links,
  .process-list,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-grid {
    gap: 8px;
  }

  .trust-grid span:not(:last-child)::after {
    display: none;
  }

  .section {
    padding-block: 56px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .examples-carousel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .carousel-viewport {
    min-height: 620px;
    grid-row: 1;
  }

  .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    background: rgba(255, 253, 248, 0.92);
  }

  .carousel-arrow:hover,
  .carousel-arrow:focus-visible {
    transform: translateY(-50%);
  }

  .carousel-prev {
    right: 10px;
  }

  .carousel-next {
    left: 10px;
  }

  .carousel-dots {
    grid-row: 2;
    margin-top: 0;
  }

  .example-slide {
    padding: 0 8px;
  }

  .example-image-button {
    width: min(100%, 350px);
    height: 520px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-panel {
    padding: 12px;
  }

  .lightbox-image-wrap {
    width: min(100%, 360px);
    min-height: 68svh;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
    gap: 16px;
  }

  .file-upload {
    align-items: flex-start;
  }

  .footer-grid {
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
