@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/inter-700.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/raleway-300.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/raleway-400.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/raleway-500.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/raleway-600.ttf") format("truetype");
}

:root {
  --black: #0c1012;
  --panel: #111719;
  --panel-soft: #141b1d;
  --brand: #56B4BE;
  --text: rgba(255, 255, 255, 0.92);
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(86, 180, 190, 0.36);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--black);
  font-family: Inter, "Open Sans", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  right: 0;
  left: 0;
  color: #fff;
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  min-height: 58px;
  padding: 12px clamp(20px, 7vw, 92px);
  background: linear-gradient(180deg, rgba(12, 16, 18, 0.86), rgba(12, 16, 18, 0.28));
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  pointer-events: auto;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.94);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.topbar a:hover {
  border-color: var(--line-strong);
  background: rgba(86, 180, 190, 0.12);
  transform: translateY(-1px);
}

.topbar span {
  white-space: nowrap;
}

.topbar svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex: 0 0 auto;
}

.topbar path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow,
.text-column {
  width: min(840px, calc(100% - 48px));
}

.section-dark,
.section-muted {
  background: var(--black);
}

.hero {
  min-height: 760px;
  padding: 114px 0 86px;
  text-align: center;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-inner {
  max-width: 920px;
}

.logo {
  width: min(520px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto 54px;
}

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

h1,
h2,
h3,
h4 {
  font-family: Raleway, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1,
h2 {
  font-weight: 300;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: clamp(34px, 4vw, 50px);
  text-wrap: balance;
}

h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 54px);
}

h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42;
}

h4 {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

p {
  color: var(--soft);
  font-size: 16px;
}

.hero-copy {
  max-width: 840px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.keep-together {
  white-space: nowrap;
}

.hero-closing {
  max-width: 840px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.intro {
  padding: 88px 0 64px;
  text-align: center;
}

.intro-lead {
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.intro h2 {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(30px, 3.4vw, 42px);
  text-wrap: balance;
}

.section-cta {
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
  font-family: Raleway, Inter, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 400;
  line-height: 1.35;
}

.intro .accent-text,
.accent-text,
.contact-lines span {
  color: var(--brand);
}

.services {
  padding: 34px 0 92px;
}

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

article,
.thermal-text {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
}

article::before,
.thermal-text::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand);
}

article h3,
.thermal-heading {
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42;
}

article h4,
.thermal h4 {
  margin-bottom: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  color: var(--brand);
}

.service-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-icon circle,
.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.list-title {
  margin: 26px 0 10px;
  color: #fff;
  font-weight: 700;
}

ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 23px;
  color: var(--soft);
  font-size: 16px;
}

li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brand);
  transform: rotate(45deg);
}

.thermal {
  padding: 76px 0 112px;
}

.thermal-text {
  max-width: 940px;
}

.thermal p,
.thermal li {
  color: var(--soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

figure:hover img {
  filter: contrast(1.05);
  transform: scale(1.025);
}

figcaption {
  min-height: 58px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.contact {
  padding: 88px 0 98px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-heading {
  max-width: 980px;
  margin: 0 auto 42px;
}

.contact-heading h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  line-height: 1.18;
}

.contact-heading h2 span {
  white-space: nowrap;
}

.contact-heading p {
  margin-bottom: 0;
  color: var(--brand);
  font-family: Raleway, Inter, Arial, sans-serif;
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 400;
  line-height: 1.35;
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 26px;
}

.contact-lines div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
}

.contact-lines span,
.contact-lines a {
  display: block;
}

.contact-lines span {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lines a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: #071012;
  background: var(--brand);
}

.button-secondary {
  color: #fff;
  border-color: var(--line-strong);
  background: rgba(86, 180, 190, 0.1);
}

.opening-hours {
  max-width: 460px;
  margin: 0 auto;
  padding-top: 16px;
}

.opening-hours h3 {
  margin-bottom: 18px;
  font-size: 20px;
  text-align: center;
}

.opening-hours dl {
  margin: 0;
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.opening-hours div:last-child {
  border-bottom: 0;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}

.opening-hours dt {
  min-width: 120px;
  text-align: left;
}

.opening-hours dd {
  min-width: 130px;
  text-align: right;
}

.footer {
  padding: 28px 0 34px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer p {
  margin-bottom: 6px;
  color: inherit;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 900px) {
  .content-grid,
  .gallery,
  .contact-lines {
    grid-template-columns: 1fr;
  }

  .gallery {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    justify-content: center;
    padding: 12px 18px;
    gap: 10px;
  }

  .topbar a {
    flex: 0 1 auto;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  article,
  .thermal-text {
    padding: 28px 24px;
  }

  .contact-actions {
    flex-direction: column;
    max-width: 320px;
  }

  .contact-heading h2 span {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .opening-hours div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .opening-hours dt,
  .opening-hours dd {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1120px);
  }

  .topbar {
    font-size: 12px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .logo {
    margin-bottom: 38px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy,
  .intro-lead,
  h3 {
    font-size: 18px;
  }

  .section-cta {
    margin-top: 34px;
  }

  .intro,
  .thermal,
  .contact {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .services {
    padding-top: 28px;
    padding-bottom: 70px;
  }

  .topbar a {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 360px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar a {
    width: 100%;
  }

  .hero {
    padding-top: 170px;
  }

  .opening-hours div {
    grid-template-columns: 1fr;
    gap: 2px;
    text-align: center;
  }

  .opening-hours dt,
  .opening-hours dd {
    text-align: center;
  }
}
