:root {
  --ink: #14161a;
  --muted: #687381;
  --paper: #ffffff;
  --soft: #f3f5f8;
  --line: #d9e0e8;
  --dark: #10151c;
  --gold: #c49a4a;
  --gold-dark: #936b27;
  --blue: #2d435a;
  --shadow: 0 28px 78px rgba(11, 18, 28, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  padding: 14px clamp(16px, 4vw, 58px);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(13, 22, 32, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(180px, 18vw, 240px);
  min-width: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.brand img {
  width: 100%;
}

.nav,
.header-actions,
.hero-actions,
.official-links {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-weight: 900;
}

.nav a,
.phone-pill,
.button,
.quick-strip a,
.text-link,
.contact-cards a,
.official-links a,
.site-footer a,
.mobile-cta a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover,
.official-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle,
.phone-pill {
  min-height: 40px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-weight: 950;
}

.lang-toggle {
  min-width: 48px;
  cursor: pointer;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 420px);
  align-items: end;
  gap: clamp(24px, 4vw, 62px);
  padding: 136px clamp(18px, 5vw, 72px) clamp(34px, 6vw, 78px);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.94), rgba(7, 10, 15, 0.68) 52%, rgba(7, 10, 15, 0.2)),
    linear-gradient(0deg, rgba(7, 10, 15, 0.88), rgba(7, 10, 15, 0.08) 58%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero-copy {
  max-width: 940px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.proof-band .eyebrow {
  color: #f0c86e;
}

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

h1,
h2,
h3,
p,
li,
a,
button,
input,
select,
textarea,
span,
strong {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1040px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.1vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.18;
}

.hero-lead {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #111;
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.hero-panel span,
.quick-strip span,
.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-strip a {
  min-width: 0;
  padding: 22px clamp(16px, 2.7vw, 40px);
  background: #fff;
  color: var(--ink);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 950;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro,
.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: #fff;
}

.intro-copy p,
.booking-copy p,
.address-note {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--gold-dark);
  font-weight: 950;
}

.services {
  background: var(--soft);
}

.section-head {
  max-width: 980px;
  margin-bottom: 30px;
}

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

.service-grid article,
.contact-cards a,
.official-links a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-grid article {
  min-height: 218px;
  padding: 22px;
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold-dark);
  font-weight: 950;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 0.78fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--dark);
  color: #fff;
}

.proof-image {
  min-height: clamp(340px, 44vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-list strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.proof-list span {
  color: rgba(255, 255, 255, 0.76);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.booking-form label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-form .full,
.booking-form button,
.form-note {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  grid-template-columns: minmax(250px, 0.58fr) minmax(260px, 0.5fr) minmax(250px, 0.46fr);
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.contact-cards,
.official-links {
  display: grid;
  gap: 10px;
}

.contact-cards a,
.official-links a {
  display: block;
  min-width: 0;
  padding: 16px;
  background: var(--soft);
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(16px, 1.6vw, 20px);
}

.official-links a {
  font-weight: 950;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 950;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .proof-band,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
  }

  .quick-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  body {
    padding-bottom: 66px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 168px;
  }

  .phone-pill {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding: 112px 16px 28px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-actions,
  .quick-strip,
  .service-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .proof-band {
    padding: 58px 16px;
  }

  .proof-image {
    min-height: 300px;
  }

  .proof-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(16, 21, 28, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-width: 0;
    padding: 12px 6px;
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
    text-align: center;
    font-weight: 950;
  }
}
