:root {
  --ink: #1a1c1e;
  --muted: #59616f;
  --line: #dedede;
  --paper: #f4f4f2;
  --white: #ffffff;
  --field: #f7f7f5;
  --steel: #4a5568;
  --accent: #c5a059;
  --accent-dark: #9b7934;
  --green: #4a5568;
  --shadow: 0 20px 60px rgba(26, 28, 30, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(26, 28, 30, 0.12) 1px, transparent 0) 0 0 / 22px 22px,
    var(--paper);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #ffffff;
  border-bottom: 1px solid rgba(26, 28, 30, 0.16);
  box-shadow: none;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(26, 28, 30, 0.08);
}

.header-top,
.header-main {
  width: 100%;
  padding-right: clamp(28px, 5vw, 72px);
  padding-left: clamp(28px, 5vw, 72px);
}

.header-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 24px;
  color: #5f6878;
  background: #f6f8f9;
  border-bottom: 1px solid rgba(20, 33, 61, 0.07);
  font-size: 12px;
  font-weight: 700;
}

.header-top a {
  color: var(--green);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 132px;
  height: 62px;
  overflow: hidden;
  background: #ffffff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a,
.nav-link {
  color: #4a5568;
}

.nav > a,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 0;
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.services-menu .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav > a:hover,
.nav-link:hover,
.services-menu:focus-within .nav-link,
.services-menu:hover .nav-link {
  color: var(--ink);
  background: transparent;
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav > a,
.nav-link {
  position: relative;
}

.nav > a::before,
.nav-link::before {
  content: "";
  position: absolute;
  inset: auto 16px 2px 16px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav > a:hover::before,
.nav-link:hover::before,
.services-menu:focus-within .nav-link::before,
.services-menu:hover .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: 318px;
  padding: 8px;
  border: 1px solid rgba(26, 28, 30, 0.16);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(26, 28, 30, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.services-dropdown::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto 0;
  height: 10px;
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.services-dropdown a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 0;
}

.services-dropdown a:hover {
  background: #f5f2ea;
}

.services-dropdown strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-dropdown span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  font-size: 10px;
  color: var(--ink);
  border-color: var(--ink);
  background: #ffffff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta:hover {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: max-content;
}

.header-phone {
  color: var(--steel);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.button.primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover {
  background: #d4b56f;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-top: 78px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(26, 28, 30, 0.92), rgba(26, 28, 30, 0.68) 42%, rgba(26, 28, 30, 0.18)),
    linear-gradient(0deg, rgba(26, 28, 30, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 42px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics span {
  padding: 18px 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.section {
  padding: 92px 0;
  background:
    linear-gradient(rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 30, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.section[id] {
  scroll-margin-top: 96px;
}

.intro {
  background: var(--white);
}

.intro-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-detail > p,
.process-copy p,
.contact p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.intro-detail {
  display: grid;
  gap: 28px;
}

.intro-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 28, 30, 0.14);
}

.intro-proof span {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(26, 28, 30, 0.16);
  background:
    linear-gradient(rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 22px 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.intro-proof strong {
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.services {
  background:
    linear-gradient(rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    #f7f7f5;
  background-size: 42px 42px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 80px;
  align-items: end;
  margin-bottom: 74px;
}

.section-intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.service-spec {
  display: grid;
  gap: 10px;
  padding-left: 28px;
  border-left: 1px solid rgba(74, 85, 104, 0.28);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 420px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(26, 28, 30, 0.18);
  border-radius: 0;
  box-shadow: none;
}

.service-visual {
  position: relative;
  height: 154px;
  margin-bottom: 34px;
  overflow: hidden;
  background: #1a1c1e;
  background-size: cover;
  background-position: center;
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.visual-survey {
  background-image:
    linear-gradient(90deg, rgba(26, 28, 30, 0.15), rgba(26, 28, 30, 0.2)),
    url("assets/hero-survey.png");
  background-size: cover;
  background-position: 75% 46%;
}

.visual-grid {
  background-image: url("assets/service-application.png");
  background-position: 48% center;
}

.visual-map {
  background-image: url("assets/service-imar.png");
  background-position: 48% center;
}

.visual-drone {
  background-image: url("assets/service-plankote.png");
  background-position: 52% center;
}

.visual-plan {
  background-image: url("assets/service-kat-irtifaki.png");
  background-position: 50% center;
}

.visual-grid::before,
.visual-grid::after,
.visual-map::before,
.visual-map::after,
.visual-drone::before,
.visual-drone::after,
.visual-plan::before,
.visual-plan::after {
  display: none;
}

.card-icon {
  display: inline-flex;
  margin: 0 14px 18px 0;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 700;
  vertical-align: top;
}

.service-card h3,
.timeline h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.service-card p,
.timeline p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card > a::after {
  content: "→";
  color: var(--accent-dark);
  font-size: 14px;
}

.custom-service {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.custom-service > span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.custom-service h3 {
  max-width: 260px;
  margin-top: 26px;
}

.custom-service p {
  max-width: 260px;
}

.custom-service > a {
  justify-content: center;
  min-width: 240px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
}

.custom-service > a::after {
  color: var(--white);
}

.process {
  background: var(--white);
}

.process-photo {
  position: relative;
  margin: 42px 0 0;
  border: 1px solid rgba(26, 28, 30, 0.18);
  background: var(--white);
}

.process-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 58% center;
}

.process-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 28, 30, 0.62));
}

.process-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--steel);
  font-weight: 800;
}

.projects {
  background: #1a1c1e;
  color: var(--white);
}

.project-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.projects h2 {
  color: var(--white);
}

.project-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background:
    linear-gradient(34deg, transparent 0 46%, rgba(197, 160, 89, 0.42) 46% 47%, transparent 47%),
    linear-gradient(128deg, transparent 0 55%, rgba(255, 255, 255, 0.18) 55% 56%, transparent 56%),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #252a31;
  background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px, auto;
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--accent);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 10px rgba(197, 160, 89, 0.16);
}

.pin-a {
  left: 18%;
  top: 30%;
}

.pin-b {
  right: 24%;
  top: 42%;
}

.pin-c {
  left: 46%;
  bottom: 22%;
}

.route {
  position: absolute;
  inset: 26% 18% 22% 18%;
  border: 2px dashed rgba(255, 255, 255, 0.56);
  transform: skew(-12deg) rotate(-5deg);
}

.project-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-list span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact {
  background:
    linear-gradient(rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 28, 30, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.contact-grid {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-lines {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-line {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 20px;
  align-items: start;
}

.contact-line > span {
  color: var(--accent-dark);
  font-size: 24px;
  line-height: 1;
}

.contact-line small {
  display: block;
  margin-bottom: 5px;
  color: rgba(74, 85, 104, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-line p,
.contact-line a {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.contact-lines .map-link {
  width: max-content;
  margin-top: 2px;
  margin-left: 46px;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-map {
  position: relative;
  height: 238px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 30, 0.18);
  background: #f7f7f5;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) contrast(0.96);
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 30px;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(26, 28, 30, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

label {
  display: grid;
  gap: 10px;
  color: rgba(74, 85, 104, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(74, 85, 104, 0.28);
  border-radius: 0;
  padding: 0 0 12px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--accent-dark);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.contact-form .button {
  width: min(260px, 100%);
  min-height: 48px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.footer {
  padding: 28px 0;
  color: var(--white);
  background: #1a1c1e;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #ffffff;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(26, 28, 30, 0.22);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  letter-spacing: 0;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 86px;
  }

  .section[id] {
    scroll-margin-top: 86px;
  }

  .header-top {
    display: none;
  }

  .header-main {
    grid-template-columns: auto auto;
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0 6px;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav > a,
  .nav-link {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .nav-item {
    width: 100%;
  }

  .services-dropdown {
    display: none !important;
  }

  .services-dropdown::before {
    display: none !important;
  }

  .hero {
    min-height: 860px;
    padding-top: 72px;
    align-items: flex-start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(26, 28, 30, 0.58), rgba(26, 28, 30, 0.96) 72%),
      linear-gradient(90deg, rgba(26, 28, 30, 0.92), rgba(26, 28, 30, 0.48));
  }

  .hero-metrics,
  .intro-proof,
  .service-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 44px;
  }

  .service-spec {
    padding-left: 18px;
  }

  .service-card,
  .custom-service {
    min-height: auto;
  }

  .service-grid {
    gap: 24px;
  }

  .service-visual {
    height: 210px;
    margin-bottom: 26px;
  }

  .intro-grid,
  .process-grid,
  .contact-grid,
  .project-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-map {
    margin-top: 34px;
  }

  .process-photo {
    margin-top: 30px;
  }

  .section {
    padding: 70px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-width: 54px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0;
  }

  .header-main {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-logo {
    width: 96px;
    height: 54px;
  }

  .hero {
    min-height: 940px;
    overflow: hidden;
  }

  .hero::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 22px;
    left: 14px;
    height: 1px;
    background: rgba(197, 160, 89, 0.54);
  }

  .hero-image {
    object-position: 67% center;
    transform: scale(1.08);
  }

  .hero-content {
    width: min(100% - 28px, 1160px);
    padding-top: 82px;
    padding-bottom: 74px;
  }

  .eyebrow {
    position: relative;
    max-width: 330px;
    margin-bottom: 18px;
    padding-left: 42px;
    font-size: 10px;
    line-height: 1.55;
  }

  .eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 28px;
    height: 1px;
    background: var(--accent);
  }

  h1 {
    max-width: 420px;
    font-size: 54px;
    line-height: 0.86;
  }

  .hero-copy {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 34px;
  }

  .hero-actions .button {
    min-height: 56px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 420px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 14px;
  }

  .hero-metrics span {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: baseline;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(2px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
  }

  .hero-metrics strong {
    color: var(--white);
    font-size: 22px;
    line-height: 1;
  }

  .intro-proof {
    gap: 10px;
  }

  .intro-proof span {
    min-height: auto;
    padding: 16px;
  }

  .service-card,
  .contact-form,
  .timeline li {
    padding: 22px;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.9);
  }

  .service-visual {
    height: 188px;
  }

  .service-card h3,
  .timeline h3 {
    font-size: 28px;
  }

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

  .contact-lines {
    gap: 20px;
  }

  .contact-map {
    min-height: 150px;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
