@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&display=swap");


:root {
  --ink: #f8f1dc;
  --muted: #b8af9b;
  --soft: #7f796d;
  --black: #050608;
  --panel: #0b0c0f;
  --panel-strong: #101216;
  --line: rgba(245, 179, 54, 0.24);
  --gold: #f5b336;
  --gold-soft: #ffe2a0;
  --blue: #0069c7;
  --red: #df1f2d;
  --green: #15884e;
  --field: #f8f3e6;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 179, 54, 0.08), rgba(5, 6, 8, 0) 260px),
    var(--black);
  font-family:
    Orbitron, "Bank Gothic", "Eurostile", "Arial Black", "Segoe UI",
    sans-serif;
  text-transform: uppercase;
}

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

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

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

input,
textarea {
  text-transform: none;
}

select,
button {
  text-transform: uppercase;
}

::placeholder {
  color: #746d60;
  text-transform: none;
}

.site-header,
.hero,
.services,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

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

.brand-logo {
  width: clamp(190px, 24vw, 280px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-header nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 7px;
}

.nav-contact {
  gap: 8px;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--ink);
  border-color: var(--line);
  outline: 0;
}

.site-header nav a:last-child {
  color: #060606;
  background: var(--gold);
  border-color: var(--gold);
}

.comm-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--panel);
  border: 1px solid currentColor;
  border-radius: 7px;
}

.comm-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comm-icon-email {
  color: var(--blue);
}

.comm-icon-whatsapp {
  color: var(--green);
}

.comm-icon-phone {
  color: var(--gold);
}

.site-header nav a:last-child .comm-icon {
  color: #050608;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(5, 6, 8, 0.34);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 18px;
  align-items: stretch;
  padding: 34px 0 28px;
}

.hero-visual,
.enquiry-form,
.tabs {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.5) 46%, rgba(5, 6, 8, 0.12)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.8), rgba(5, 6, 8, 0) 54%);
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  left: 32px;
  right: 32px;
  bottom: 32px;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 4.1rem;
  line-height: 0.94;
  font-weight: 900;
}

.hero-overlay p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.enquiry-form {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px;
}

.form-title {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-method {
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-method legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.choice-card {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px 42px 12px 12px;
  overflow: hidden;
  color: var(--ink);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  color: #050608;
  background: var(--gold);
  border-color: var(--gold);
}

.choice-card:has(input:checked) .comm-icon {
  color: #050608;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(5, 6, 8, 0.34);
}

.choice-card input {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--gold);
  transform: translateY(-50%);
}

.choice-card span,
.choice-card strong,
.choice-card small {
  min-width: 0;
}

.choice-card > span:not(.comm-icon) {
  overflow: hidden;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: inherit;
  overflow-wrap: anywhere;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
}

.choice-card small {
  margin-top: 4px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: currentColor;
  font-size: 0.58rem;
  line-height: 1.35;
  opacity: 0.76;
  text-transform: none;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px;
  color: #101010;
  background: var(--field);
  border: 1px solid rgba(245, 179, 54, 0.36);
  border-radius: 7px;
  outline: 0;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 179, 54, 0.18);
}

.button {
  min-height: 50px;
  padding: 14px 16px;
  color: #050608;
  font-weight: 900;
  background: var(--gold);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--gold-soft);
  outline: 0;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.68rem;
  line-height: 1.55;
}

.services {
  padding: 22px 0 44px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.32;
  font-weight: 900;
}

.tabs {
  overflow: hidden;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #08090b;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 62px;
  padding: 13px 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button:hover,
.tab-button:focus-visible {
  color: var(--ink);
  outline: 0;
}

.tab-button[aria-selected="true"] {
  color: #050608;
  background: var(--gold);
}

.tab-panel {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: stretch;
  padding: 26px;
}

.tab-panel:not([hidden]) {
  display: grid;
}

.tab-panel[hidden] {
  display: none;
}

.tab-copy {
  min-width: 0;
}

.tab-panel h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 900;
}

.tab-panel p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tab-grid div {
  min-width: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.tab-grid strong {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
}

.tab-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tab-grid li {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.tab-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding: 20px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.site-footer > span {
  color: var(--gold-soft);
  font-weight: 900;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.site-footer a span {
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer .comm-icon {
  width: 30px;
  height: 30px;
}

.site-footer .comm-icon svg {
  width: 17px;
  height: 17px;
}

.message-shell {
  display: grid;
  width: min(680px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  place-items: center;
}

.message-card {
  width: 100%;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.message-card h1 {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.message-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.message-card .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .tab-panel:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 480px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .tab-panel img {
    max-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .services,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: min(236px, 70vw);
  }

  .hero {
    padding-top: 22px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 410px;
  }

  .hero-overlay {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1;
  }

  .enquiry-form {
    padding: 18px;
  }

  .form-row,
  .choice-grid,
  .tab-list,
  .tab-grid {
    grid-template-columns: 1fr;
  }

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-panel {
    padding: 20px;
  }

  .tab-panel h3 {
    font-size: 1.35rem;
  }
}
