:root {
  --ink: #111719;
  --graphite: #22292c;
  --muted: #627075;
  --line: #d8e0df;
  --paper: #f3f6f2;
  --white: #ffffff;
  --green: #078b43;
  --deep-green: #064b30;
  --red: #d51f2a;
  --amber: #f1c44e;
  --steel: #50626d;
  --shadow: 0 24px 70px rgba(17, 23, 25, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 50px);
  color: var(--white);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 34px rgba(17, 23, 25, .12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  font-size: 12px;
  opacity: .74;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 900;
}

.nav-links a {
  text-decoration: none;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.lang-switch,
.icon-action,
.round-action {
  display: grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 74px) 42px;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: var(--graphite);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 18, 20, .9), rgba(14, 18, 20, .54) 54%, rgba(14, 18, 20, .22)),
    linear-gradient(0deg, rgba(14, 18, 20, .82), rgba(14, 18, 20, .08) 56%);
}

.hero-content {
  width: min(850px, 100%);
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.6vw, 100px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
}

.btn.primary {
  color: var(--white);
  background: var(--green);
}

.btn.secondary {
  color: var(--white);
  border-color: currentColor;
  background: rgba(255, 255, 255, .08);
}

.btn.dark {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 42px;
  display: grid;
  width: min(370px, calc(100% - 36px));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  padding: 18px;
  background: rgba(17, 23, 25, .44);
}

.hero-panel span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 18px;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-contact a {
  min-width: 0;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-contact span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-contact strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.8vw, 22px);
}

section:not(.hero):not(.quick-contact) {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 74px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .8fr);
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading h2,
.proof-copy h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.proof-copy p:not(.eyebrow),
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.services-section {
  background: var(--paper);
}

.service-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 23, 25, .08);
}

.service-list {
  display: grid;
  align-content: start;
  gap: 1px;
  background: var(--line);
}

.service-list button {
  min-height: 72px;
  border: 0;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.service-list button.active {
  color: var(--white);
  background: var(--deep-green);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(22px, 4vw, 44px);
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.service-detail h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.service-detail li {
  margin-bottom: 12px;
  color: var(--graphite);
  font-size: 18px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  color: var(--white);
  background: var(--graphite);
}

.proof-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-cards article,
.review-cards blockquote {
  min-height: 150px;
  margin: 0;
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, .1);
}

.review-cards article {
  display: grid;
  align-content: center;
}

.review-cards article strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.review-cards article span,
.review-cards blockquote {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.visit-section {
  background: var(--white);
}

.visit-tool {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  max-width: 980px;
}

.visit-tool label,
.planner-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.visit-tool select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
}

.planner-result {
  min-height: 96px;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  padding: 18px;
  background: var(--paper);
}

.planner-result strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-grid button {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--graphite);
  cursor: pointer;
}

.gallery-grid button:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: 14px;
  background: var(--white);
}

.contact-card,
.map-wrap {
  min-height: 470px;
  border-radius: 8px;
}

.contact-card {
  display: grid;
  align-content: center;
  padding: clamp(24px, 5vw, 54px);
  background: var(--paper);
}

.map-wrap {
  overflow: hidden;
  background: var(--graphite);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: var(--white);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, .7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .82);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 28px;
  cursor: pointer;
}

.mobile-cta {
  position: fixed;
  z-index: 35;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  transform: translateY(120%);
  transition: transform .2s ease;
}

.mobile-cta a {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(17, 23, 25, .28);
}

.mobile-cta a:last-child {
  background: var(--red);
}

.mobile-cta.visible {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-panel {
    position: static;
    margin-top: 30px;
  }

  .quick-contact,
  .section-heading,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-detail img {
    min-height: 280px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small,
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 96vh;
    padding: 100px 18px 28px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 68px);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .quick-contact,
  .section-heading,
  .proof-section,
  .review-cards,
  .visit-tool,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-shell {
    grid-template-columns: 1fr;
  }

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

  .service-list button {
    min-height: 64px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid button:first-child {
    grid-row: span 1;
  }

  .contact-card,
  .map-wrap {
    min-height: 380px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
