:root {
  --green-950: #0c281f;
  --green-900: #113d2b;
  --green-800: #18523b;
  --gold-600: #b98a35;
  --gold-500: #d4a64a;
  --ink: #202421;
  --muted: #5e665f;
  --line: #e1ded4;
  --paper: #fbf7ed;
  --surface: #ffffff;
  --soft: #f3ede0;
  --cream: #fffaf0;
  --error: #a83434;
  --shadow: 0 18px 50px rgba(12, 40, 31, .13);
  --deep-shadow: 0 28px 70px rgba(3, 15, 11, .34);
}

::selection {
  color: #0c281f;
  background: #d4a64a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  min-height: 100%;
  background: var(--green-950);
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background: linear-gradient(180deg, #fffbf3 0, var(--paper) 560px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

input,
select,
textarea,
label {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-800);
  text-decoration: none;
  text-underline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--green-950);
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.95rem);
  max-width: 850px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  background: var(--gold-500);
  color: var(--green-950);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 40, 31, .98);
  color: #fff;
  border-bottom: 1px solid rgba(212, 166, 74, .35);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand-text span {
  display: block;
  font-weight: 700;
}

.brand-text small {
  display: block;
  color: #d9e2dc;
  font-size: .78rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a,
.nav-dropdown-trigger,
.header-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  font-size: .95rem;
}

.site-nav a:hover,
.nav-dropdown-trigger:hover,
.header-phone:hover {
  color: var(--gold-500);
}

.nav-contact-link {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}

.nav-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.is-hovered .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  width: min(560px, calc(100vw - 32px));
  max-height: min(74vh, 620px);
  overflow: auto;
  padding: 12px;
  background: #09231b;
  border: 1px solid rgba(212, 166, 74, .42);
  box-shadow: var(--deep-shadow);
  transform: translate(-50%, 6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-hovered .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #eef5ef;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(212, 166, 74, .14);
  color: #fff;
}

.header-phone {
  border: 1px solid var(--gold-500);
  padding: 10px 14px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 20px;
  margin: 5px auto;
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.breadcrumbs {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: .92rem;
}

.breadcrumbs .container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero h1,
.hero h2 {
  color: #fff;
}

.hero-grid,
.contact-hero-grid,
.about-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 64px;
}

.hero-home {
  min-height: min(690px, calc(100vh - 78px));
  display: grid;
  align-items: center;
  padding: 96px 0 92px;
  background: var(--soft);
}

.hero-bg-image,
.hero-home-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  object-fit: cover;
}

.hero-home-overlay {
  background:
    linear-gradient(90deg, rgba(251, 247, 237, .94) 0%, rgba(251, 247, 237, .86) 42%, rgba(251, 247, 237, .38) 72%, rgba(12, 40, 31, .34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(12, 40, 31, .18));
}

.hero-home-content {
  position: relative;
  max-width: 1160px;
  text-align: left;
}

.hero-home-panel {
  max-width: 650px;
  padding: 34px;
  background: rgba(255, 250, 240, .86);
  border: 1px solid rgba(185, 138, 53, .28);
  box-shadow: 0 22px 60px rgba(12, 40, 31, .14);
  backdrop-filter: blur(3px);
}

.hero-home .eyebrow {
  color: var(--gold-600);
}

.hero-home h1 {
  color: var(--green-950);
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
  max-width: 640px;
}

.hero-home .lead {
  color: var(--ink);
  max-width: 620px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-home .hero-actions {
  justify-content: flex-start;
}

.hero-home .auction-message {
  color: var(--ink);
  max-width: 560px;
}

.hero-service,
.hero-estate {
  background:
    linear-gradient(115deg, #fffaf0 0%, #fbf7ed 54%, #f1e7d5 100%);
  color: var(--ink);
}

.hero-service {
  padding: 74px 0 70px;
}

.hero-service .hero-grid,
.hero-estate .hero-grid {
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1fr);
}

.hero-estate {
  padding: 78px 0 74px;
  background:
    linear-gradient(115deg, #fffaf0 0%, #f7eedb 50%, rgba(17, 61, 43, .16) 100%);
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  position: relative;
  isolation: isolate;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(185, 138, 53, .38);
  z-index: -1;
}

.hero-media img,
.about-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(185, 138, 53, .32);
  box-shadow: var(--shadow);
}

.hero-service .hero-media img,
.hero-estate .hero-media img {
  min-height: 420px;
}

.hero-service h1,
.hero-estate h1,
.hero-service h2,
.hero-estate h2 {
  color: var(--green-950);
}

.hero-service .lead,
.hero-estate .lead {
  color: var(--ink);
}

.hero-service .auction-message,
.hero-estate .auction-message {
  color: var(--ink);
}

.hero-about {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, .97), rgba(242, 240, 232, .92)),
    var(--paper);
  color: var(--ink);
}

.hero-about h1 {
  color: var(--green-950);
}

.hero-about .lead {
  color: var(--ink);
}

.hero-about .auction-message {
  color: var(--ink);
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr);
  gap: 58px;
}

.about-hero-card {
  background: var(--green-950);
  color: #fff;
  box-shadow: var(--shadow);
}

.about-hero-card img {
  border: 0;
  box-shadow: none;
}

.about-hero-card div {
  padding: 22px;
}

.about-hero-card strong,
.about-hero-card span {
  display: block;
}

.about-hero-card span {
  color: #dfe7e1;
  margin-top: 6px;
}

.hero-contact {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
}

.contact-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, .55fr);
  gap: 42px;
}

.contact-hero-panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(212, 166, 74, .44);
  box-shadow: var(--deep-shadow);
}

.contact-hero-panel a {
  color: #fff;
}

.contact-hero-panel .btn-primary {
  color: var(--green-950);
}

.contact-hero-phone {
  color: var(--gold-500) !important;
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
}

.hero-simple {
  padding: 64px 0;
  background: var(--green-950);
}

.thank-you,
.not-found {
  padding: 70px 0;
  background: linear-gradient(115deg, #fffaf0 0%, #fbf7ed 58%, #f1e7d5 100%);
  color: var(--ink);
}

.thank-you h1,
.not-found h1,
.thank-you h2,
.not-found h2 {
  color: var(--green-950);
}

.thank-you .lead,
.not-found .lead,
.thank-you .auction-message,
.not-found .auction-message {
  color: var(--ink);
}

.simple-hero-inner {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-weight: 750;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .08em;
}

.lead {
  font-size: 1.16rem;
  color: #e7ede8;
  max-width: 720px;
}

.hero-actions,
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--green-950);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: #10261e;
}

.btn-secondary {
  background: transparent;
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.hero-home .btn-secondary,
.hero-contact .btn-secondary,
.cta-strip .btn-secondary {
  color: #fff;
}

.hero-service .btn-secondary,
.hero-estate .btn-secondary,
.hero-about .btn-secondary {
  color: var(--green-950);
  background: #fffaf0;
}

.auction-message {
  margin-top: 22px;
  color: #d9e2dc;
  border-left: 3px solid var(--gold-500);
  padding-left: 14px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .98), rgba(243, 237, 224, .92));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.template-home .section-heading {
  max-width: 860px;
}

.feature-grid,
.service-grid,
.contact-cards,
.estate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-grid article,
.contact-cards article,
.estate-grid article,
.info-panel,
.contact-form,
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(12, 40, 31, .06);
}

.feature-grid article,
.contact-cards article,
.estate-grid article,
.info-panel {
  padding: 24px;
}

.feature-grid article,
.contact-cards article {
  overflow: hidden;
  padding: 0;
}

.feature-grid article > img,
.contact-cards article > img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.feature-grid article > :not(img),
.contact-cards article > :not(img) {
  margin-left: 24px;
  margin-right: 24px;
}

.feature-grid article > :last-child,
.contact-cards article > :last-child {
  margin-bottom: 24px;
}

.feature-grid article > span {
  display: inline-block;
  margin-top: 22px;
}

.contact-cards h2 {
  margin-top: 18px;
}

.template-home .feature-grid {
  grid-template-columns: 1.22fr .89fr .89fr;
  align-items: stretch;
}

.template-home .feature-grid article:first-child {
  box-shadow: var(--shadow);
}

.template-home .feature-grid article:first-child img {
  aspect-ratio: 1.45 / 1;
}

.feature-grid span {
  color: var(--gold-600);
  font-weight: 800;
}

.service-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.more-services {
  margin-top: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.more-services h3 {
  margin-bottom: 14px;
}

.more-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.more-service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid rgba(17, 61, 43, .16);
  border-radius: 999px;
  color: var(--green-900);
  font-weight: 750;
}

.more-service-links a:hover,
.more-service-links a:focus {
  border-color: var(--gold-600);
  color: var(--green-950);
}

.service-grid-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid-catalog .service-card {
  box-shadow: 0 8px 24px rgba(12, 40, 31, .05);
}

.service-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(12, 40, 31, .14);
  border-color: rgba(185, 138, 53, .55);
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 800 / 526;
  background: var(--soft);
}

.service-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform .28s ease;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card-body {
  position: relative;
  padding: 22px;
}

.service-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 52px;
  height: 3px;
  background: var(--gold-500);
}

.service-card-body p {
  margin-bottom: 8px;
  color: var(--gold-600);
  font-weight: 800;
  font-size: .86rem;
  text-transform: uppercase;
}

.service-card-body span {
  color: var(--green-800);
  font-weight: 750;
}

.service-card-large .service-card-body {
  padding: 26px;
}

.service-card-large h3 {
  font-size: 1.45rem;
}

.service-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 30px;
  align-items: stretch;
}

.service-brief-main {
  padding: 34px;
  background: var(--surface);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.service-brief-side {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background: var(--green-950);
  color: #fff;
  box-shadow: var(--deep-shadow);
}

.service-brief-side h3 {
  color: #fff;
}

.service-brief-side .tag-list li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}

.object-photo-section {
  padding-top: 20px;
}

.object-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.object-photo-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(12, 40, 31, .08);
}

.object-photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.object-photo-card h3 {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 1rem;
}

img[src$="fallback-kep-betoltese-sikertelen.svg"] {
  object-fit: cover;
  background: #fff7e0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: start;
}

.content-block {
  max-width: 900px;
}

.check-list,
.tag-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  background: var(--gold-500);
}

.columns {
  columns: 2;
  column-gap: 42px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: .92rem;
}

.faq {
  max-width: 900px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 16px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-950);
}

.cta-strip {
  background: var(--green-900);
  color: #fff;
  padding: 48px 0;
}

.cta-strip h2 {
  color: #fff;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.form-section {
  position: relative;
  padding: 84px 0;
  background:
    linear-gradient(180deg, rgba(212, 166, 74, .09), rgba(251, 247, 237, 0) 140px),
    var(--paper);
  border-top: 1px solid rgba(216, 214, 206, .7);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: start;
}

.form-grid > div:first-child {
  position: sticky;
  top: 104px;
  background: rgba(255, 250, 240, .84);
  border-left: 3px solid var(--gold-500);
  padding: 20px 22px;
  border-radius: 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(12, 40, 31, .11);
  border-color: rgba(185, 138, 53, .3);
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-weight: 750;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bbb8ac;
  border-radius: 6px;
  min-height: 46px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

input[type="file"] {
  padding: 12px;
  background: #fcfbf8;
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(12, 40, 31, .26);
  border-radius: 5px;
  background: var(--green-900);
  color: #fff;
  padding: 8px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background: var(--green-800);
}

.file-upload-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.file-input-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field .file-picker-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: auto;
  margin: 0;
  border: 1px solid rgba(12, 40, 31, .26);
  border-radius: 6px;
  background: var(--green-900);
  color: #fff;
  padding: 9px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.field .file-picker-button:hover {
  background: var(--green-800);
}

.file-input-native:focus + .file-picker-button {
  outline: 2px solid rgba(212, 166, 74, .45);
  outline-offset: 2px;
}

.file-upload-summary {
  color: var(--muted);
  font-size: .94rem;
}

[hidden] {
  display: none !important;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(212, 166, 74, .45);
  border-color: var(--gold-600);
}

.checkbox-field label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.field-error,
.form-alert,
.field-hint {
  color: var(--error);
  font-weight: 700;
  margin: 6px 0 0;
}

.field-hint {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}

.form-alert {
  grid-column: 1 / -1;
  padding: 12px;
  border: 1px solid rgba(168, 52, 52, .4);
  background: #fff2f2;
  border-radius: 6px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-big {
  font-size: 1.35rem;
  font-weight: 850;
}

.legal h2 {
  margin-top: 34px;
}

.site-footer {
  background: var(--green-950);
  color: #dfe7e1;
  padding-top: 54px;
}

.site-footer h2,
.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-note {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 36px;
  padding: 18px 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(12, 40, 31, .2);
}

.mobile-cta a {
  min-height: 58px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 850;
}

.mobile-cta-call {
  background: var(--gold-500);
  color: var(--green-950);
}

.mobile-cta-form {
  background: var(--green-900);
  color: #fff;
}

@media (max-width: 940px) {
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green-950);
    border-top: 1px solid rgba(255, 255, 255, .12);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav .nav-contact-link {
    display: block;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    min-height: 58px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
  }

  .nav-chevron {
    justify-self: center;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(5, 18, 14, .5);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown:focus-within .nav-chevron {
    transform: rotate(45deg) translateY(-2px);
  }

  .nav-dropdown.is-open .nav-chevron {
    transform: rotate(225deg) translate(-2px, -1px);
  }

  .nav-dropdown-menu a {
    padding-left: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .header-phone {
    display: none;
  }

  .hero-grid,
  .hero-service .hero-grid,
  .hero-estate .hero-grid,
  .contact-hero-grid,
  .about-hero-grid,
  .service-brief,
  .split,
  .form-grid,
  .cta-strip-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
    padding: 86px 0;
  }

  .hero-service,
  .hero-estate,
  .hero-about,
  .hero-contact {
    padding: 62px 0;
  }

  .hero-service .hero-media img,
  .hero-estate .hero-media img {
    min-height: 320px;
  }

  .form-grid > div:first-child {
    position: static;
  }

  .feature-grid,
  .service-grid,
  .service-grid.compact,
  .service-grid-featured,
  .service-grid-catalog,
  .object-photo-grid,
  .contact-cards,
  .estate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .template-home .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip-inner {
    align-items: flex-start;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 62px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .section,
  .form-section {
    padding: 48px 0;
  }

  .hero-home {
    min-height: auto;
    padding: 54px 0 56px;
  }

  h1,
  .hero-home h1,
  .hero-service h1,
  .hero-estate h1,
  .hero-contact h1,
  .hero-about h1,
  .hero-simple h1 {
    font-size: 32px;
  }

  .hero-home-panel {
    padding: 24px;
  }

  .hero-bg-image {
    object-position: 58% center;
  }

  .hero-home-overlay {
    background: linear-gradient(180deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .86) 62%, rgba(12, 40, 31, .2));
  }

  .hero-image-frame::before {
    inset: 10px -10px -10px 10px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero .hero-actions {
    display: none;
  }

  .cta-strip {
    display: none;
  }

  .hero-service .hero-media img,
  .hero-estate .hero-media img {
    min-height: 220px;
  }

  .feature-grid,
  .service-grid,
  .service-grid.compact,
  .service-grid-featured,
  .service-grid-catalog,
  .object-photo-grid,
  .contact-cards,
  .estate-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .template-home .feature-grid {
    grid-template-columns: 1fr;
  }

  .columns {
    columns: 1;
  }

  .btn {
    width: 100%;
  }
}
