:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --paper: #f4f7f8;
  --surface: #ffffff;
  --line: #d9e1e6;
  --steel: #075f6e;
  --red: #d44048;
  --amber: #f6c65d;
  --deep: #101820;
  --shadow: 0 24px 70px rgba(16, 24, 32, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Verdana, Geneva, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(244, 247, 248, .93);
  border-bottom: 1px solid rgba(217, 225, 230, .9);
  backdrop-filter: blur(14px);
}

.brand,
.top-phone,
.button,
.service-strip a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--deep);
  border: 3px solid var(--red);
  border-radius: 8px;
  font: 800 1.35rem Georgia, "Times New Roman", serif;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
}

.brand small,
.kicker,
.service-strip span,
dt,
.facts-grid span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 24px;
  color: #344054;
  font-size: .95rem;
  font-weight: 850;
}

nav a {
  text-decoration: none;
}

.top-phone {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: 72px 64px 24px;
  background:
    linear-gradient(115deg, rgba(138, 217, 225, .22), transparent 35%),
    radial-gradient(circle at 84% 12%, rgba(246, 198, 93, .32), transparent 28%);
}

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

.region {
  width: fit-content;
  margin: 0 0 16px;
  padding: 0 0 0 46px;
  position: relative;
  color: var(--steel);
  font-size: .92rem;
  font-weight: 900;
}

.region::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 6.35rem;
  line-height: .92;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.75rem;
  line-height: .98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lead {
  max-width: 690px;
  color: #344054;
  font-size: 1.22rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.ghost {
  color: var(--deep);
  background: #fff;
  border-color: var(--line);
}

.visit-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.6vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.panel-topline span {
  color: var(--steel);
  font-weight: 900;
}

.panel-topline strong {
  font-size: 1.35rem;
  white-space: nowrap;
}

.map-frame {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #eef5f6;
  border: 1px solid #d4e4e8;
  border-radius: 8px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 0;
}

dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}

dt {
  margin-bottom: 6px;
}

dd {
  margin: 0;
  color: #344054;
  line-height: 1.45;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: translateY(26px);
  box-shadow: 0 20px 50px rgba(16, 24, 32, .09);
}

.service-strip a {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 24px;
  background: #fff;
}

.service-strip strong {
  font-size: 1.06rem;
  line-height: 1.3;
}

.photo-band,
.proof,
.booking,
.contact {
  padding: 104px 64px;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

figure {
  margin: 0;
}

.photo-band img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
}

.photo-copy {
  max-width: 680px;
}

.photo-copy p,
.booking p,
.contact-copy p,
.steps p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.kicker {
  margin-bottom: 16px;
  color: var(--red);
}

.proof {
  background: var(--deep);
  color: #fff;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: end;
}

.proof .kicker {
  color: #8fd6dd;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.facts-grid article {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, .07);
}

.facts-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .65);
}

.facts-grid strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.28;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: #fff;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.steps h3,
.steps p {
  grid-column: 2;
}

.step-dot {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--amber);
  border: 4px solid #fff4d2;
  border-radius: 50%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 850;
}

.contact-list li {
  position: relative;
  padding-left: 22px;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  background: var(--steel);
  border-radius: 50%;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(18px, 2.6vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: .94rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: .92rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, .78);
  background: var(--deep);
}

footer a,
footer strong {
  color: #fff;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .photo-band,
  .section-title,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 54px 24px 22px;
  }

  .visit-panel {
    max-width: 680px;
  }

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

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .top-phone {
    width: 46px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    position: relative;
  }

  .top-phone::after {
    content: "☎";
    position: absolute;
    color: #fff;
    font-size: 1.12rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-actions,
  dl,
  .service-strip,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .service-strip {
    margin-inline: 14px;
    transform: translateY(16px);
  }

  .photo-band,
  .proof,
  .booking,
  .contact {
    padding: 72px 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 220px;
  }

  .panel-topline {
    display: grid;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}
