:root {
  --bg: #151515;
  --bg-deep: #101010;
  --surface: #1f1f1f;
  --surface-alt: #242424;
  --border: #303030;
  --text: #f1eee9;
  --muted: #b8afa5;
  --accent: #ffb400;
  --accent-soft: rgba(255, 180, 0, 0.16);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --container: min(1160px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 180, 0, 0.08), transparent 28%),
    var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(17, 17, 17, 0.92);
  border-bottom: 1px solid rgba(255, 180, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  color: var(--bg);
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.brand-mark svg,
.header-cta svg,
.button svg,
.card-icon svg,
.trust-icon svg,
.contact-icon svg {
  width: 22px;
  height: 22px;
}

.brand-text,
.header-cta,
.eyebrow,
.section-label,
.service-card h3,
.trust-item h3,
.contact-section h2,
.booking-card h3,
h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
}

.brand-text {
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 180, 0, 0.22);
}

.hero,
.trust-section {
  background:
    linear-gradient(rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.88)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 180, 0, 0.05) 0 12px,
      transparent 12px 24px
    ),
    var(--bg-deep);
}

.hero {
  padding: 130px 0 120px;
  border-bottom: 1px solid rgba(255, 180, 0, 0.18);
}

.hero-inner {
  max-width: 1020px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(4rem, 11vw, 7rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.hero-copy {
  width: min(100%, 700px);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  padding: 18px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--bg);
}

.button-secondary {
  border-color: rgba(255, 180, 0, 0.72);
  color: var(--accent);
  background: transparent;
}

.services-section,
.contact-section {
  padding: 88px 0;
}

.services-section {
  background: #1c1c1c;
}

.services-section h2,
.contact-section h2 {
  margin-bottom: 44px;
}

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

.service-card {
  padding: 26px 24px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card-icon,
.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--accent);
  background: var(--accent-soft);
}

.service-card h3,
.trust-item h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p,
.trust-item p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.trust-section {
  padding: 90px 0 96px;
  border-top: 1px solid rgba(255, 180, 0, 0.12);
  border-bottom: 1px solid rgba(255, 180, 0, 0.5);
}

.centered {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin-top: 56px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 999px;
  box-shadow: 0 0 0 12px rgba(255, 180, 0, 0.07);
}

.contact-section {
  background:
    linear-gradient(135deg, #f1a500 0%, #ffb81d 38%, #ffb400 100%);
  color: #151515;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: start;
}

.directions-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin-top: 54px;
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
}

.contact-copy p {
  max-width: 620px;
  color: rgba(21, 21, 21, 0.88);
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.12rem;
}

.contact-list a {
  font-weight: 800;
  font-size: 1.8rem;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 20px;
  color: #151515;
}

.booking-card {
  padding: 24px;
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 2rem;
  text-transform: uppercase;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  color: #d7d7d7;
  background: #232323;
  outline: none;
}

.booking-form input::placeholder {
  color: #9b9b9b;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--accent);
}

.directions-copy,
.map-card {
  border-radius: 14px;
  background: rgba(14, 14, 14, 0.1);
  border: 1px solid rgba(21, 21, 21, 0.12);
}

.directions-copy {
  padding: 30px 28px;
}

.directions-label {
  margin-bottom: 14px;
  color: rgba(21, 21, 21, 0.78);
}

.directions-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.directions-copy > p {
  margin-bottom: 24px;
}

.directions-details {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.directions-details div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.directions-details div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.directions-details dt {
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.66);
}

.directions-details dd {
  margin: 0;
  color: rgba(21, 21, 21, 0.92);
  font-size: 1.05rem;
  line-height: 1.6;
}

.directions-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.directions-link {
  border-color: rgba(21, 21, 21, 0.32);
  color: #151515;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

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

.button-block {
  width: 100%;
}

.site-footer {
  padding: 18px 0 24px;
  background: #171717;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  justify-content: center;
}

.site-footer p {
  margin: 0;
  color: #797570;
  font-size: 0.76rem;
  line-height: 1.5;
}

.site-footer a {
  color: #a09a93;
}

.site-footer a:hover {
  color: var(--text);
}

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

@media (max-width: 1024px) {
  .services-grid,
  .trust-grid,
  .contact-inner,
  .directions-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    align-items: stretch;
  }

  .services-grid article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .hero {
    padding: 88px 0 80px;
  }

  .hero-actions,
  .services-grid,
  .trust-grid,
  .contact-inner,
  .directions-block {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .services-grid article:last-child {
    grid-column: auto;
  }

  .services-section,
  .trust-section,
  .contact-section {
    padding: 70px 0;
  }

  .directions-copy,
  .map-card {
    min-height: auto;
  }

  .contact-list a {
    font-size: 1.45rem;
  }
}
