:root {
  --gold: #C6A646;
  --gold-soft: #e7d9ad;
  --ink: #101010;
  --muted: #6d6d6d;
  --paper: #f7f4ed;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 84px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(198, 166, 70, 0.28);
}
.brand img { height: 54px; width: auto; display: block; }
.nav { display: flex; justify-content: center; gap: 34px; }
.nav a, .header-cta {
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta {
  border: 1px solid var(--gold);
  padding: 12px 18px;
  color: var(--gold-soft);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(198,166,70,.35);
  padding: 8px 10px;
  background: rgba(0,0,0,.22);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.62);
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}
.lang-switch button.active { color: var(--gold); }
.lang-switch span {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.22);
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero-video, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.83) 0%, rgba(0,0,0,.52) 42%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.08) 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
  padding: 0 clamp(22px, 6vw, 88px) clamp(72px, 12vh, 130px);
  color: #fff;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h1, h2, h3 {
  font-family: Cinzel, Georgia, serif;
  margin: 0;
  line-height: 1.08;
}
h1 { font-size: clamp(2.7rem, 7vw, 6.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.45rem; }
.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn, .quote-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
}
.btn.primary, .quote-form button { background: var(--gold); color: #14110a; }
.btn.ghost { color: #fff; background: rgba(255,255,255,.08); }
.btn.dark { background: #111; color: #fff; width: 100%; margin-top: 24px; }
.section { padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.service-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.service-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.service-card.large { grid-row: span 2; min-height: 720px; }
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.1));
}
.service-card div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 30px;
}
.service-card span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
}
.service-card p { color: rgba(255,255,255,.76); line-height: 1.65; max-width: 520px; }
.contact {
  background:
    radial-gradient(circle at top right, rgba(198,166,70,.22), transparent 34%),
    #111;
  color: #fff;
}
.contact-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
  max-width: 1200px;
  margin: auto;
}
.contact-copy p { color: rgba(255,255,255,.72); line-height: 1.7; }
.contact-copy ul { padding: 0; margin: 28px 0 0; list-style: none; }
.contact-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(198,166,70,.22);
  color: rgba(255,255,255,.8);
}
.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(198,166,70,.28);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  letter-spacing: .04em;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.24);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
}
textarea { resize: vertical; }
.location-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: stretch; }
.map-card, .weather-card {
  background: #fff;
  border: 1px solid rgba(16,16,16,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.map-card iframe { width: 100%; height: 540px; border: 0; display: block; }
.weather-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.weather-main span {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(4rem, 9vw, 6.5rem);
  color: var(--gold);
  line-height: 1;
}
.weather-main p, .weather-meta p { color: var(--muted); }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: #090909;
  color: rgba(255,255,255,.64);
}
.footer img { height: 48px; width: auto; }
@media (max-width: 860px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 18px;
  }
  .brand img { height: 44px; }
  .header-actions { gap: 8px; }
  .lang-switch { padding: 7px 8px; }
  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .header-cta { padding: 10px 12px; font-size: .72rem; }
  .hero-content { padding-top: 170px; }
  .service-grid, .contact-panel, .location-grid, .form-row { grid-template-columns: 1fr; }
  .service-card.large { min-height: 460px; }
  .service-card { min-height: 360px; }
  .map-card iframe { height: 380px; }
  .footer { flex-direction: column; text-align: center; }
}
/* Laptop-height fix: prevents hero title from being cut on smaller laptop screens */
@media (min-width: 861px) and (max-height: 820px) {

  .site-header {
    height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    min-height: 100vh;
    align-items: center;
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 42px;
    max-width: 920px;
  }

  h1 {
    font-size: clamp(3rem, 6.1vw, 5.4rem);
    line-height: 0.98;
    max-width: 920px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.55;
    max-width: 760px;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

/* Extra compact laptop screens */
@media (min-width: 861px) and (max-height: 700px) {

  .site-header {
    height: 64px;
  }

  .brand img {
    height: 42px;
  }

  .hero-content {
    padding-top: 94px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.6rem);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn,
  .quote-form button {
    min-height: 44px;
  }
}

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-message { color: var(--gold-soft); font-weight: 700; min-height: 24px; }
.form-message.error { color: #ffb4a8; }

input.invalid, textarea.invalid {
  border-color: #ffb4a8 !important;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,100,80,.25);
}
label { position: relative; }
.field-error {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  z-index: 10;
  background: #3a1a18;
  color: #ffb4a8;
  font-size: 0.76rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,100,80,.35);
  white-space: nowrap;
  max-width: 320px;
  white-space: normal;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.field-error::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 14px;
  border: 5px solid transparent;
  border-top-color: #3a1a18;
}
.char-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  text-align: right;
  margin-top: 4px;
}
.char-counter.over {
  color: #ffb4a8;
  font-weight: 600;
}
