:root {
  --charcoal-900: #131517;
  --charcoal-800: #1c1f22;
  --charcoal-700: #2a2e33;
  --slate-300: #c7ccd1;
  --slate-100: #eef1f3;
  --white: #ffffff;
  --yellow: #f4c400;
  --yellow-deep: #d2a700;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --max-width: 1120px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  font-family: "Bahnschrift", "Aptos", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal-900);
  background:
    radial-gradient(circle at top left, rgba(244, 196, 0, 0.14), transparent 24rem),
    linear-gradient(180deg, #f8f9fa 0%, #ffffff 36%, #f4f5f6 100%);
}

.gate-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.gate-shell {
  width: min(100%, 34rem);
}

.gate-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 21, 23, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.gate-copy,
.gate-note {
  color: var(--charcoal-700);
}

.gate-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gate-label {
  font-weight: 700;
}

.gate-form input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(19, 21, 23, 0.18);
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--charcoal-900);
}

.gate-form input[aria-invalid="true"] {
  border-color: #b42318;
}

.gate-error {
  margin: 0;
  color: #b42318;
  font-size: 0.95rem;
}

.gate-submit {
  width: 100%;
  margin-top: 0.25rem;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--charcoal-900);
  color: var(--white);
  border-radius: 0.75rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-intro {
  max-width: 44rem;
}

.section-kicker,
.eyebrow,
.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-700);
}

.section-kicker::before,
.eyebrow::before,
.form-badge::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  color: var(--charcoal-900);
}

h1 {
  font-size: clamp(2.2rem, 8vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--charcoal-900);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-deep);
}

.button-secondary {
  border-color: var(--charcoal-900);
  color: var(--charcoal-900);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--charcoal-900);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(19, 21, 23, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border: 1px solid rgba(19, 21, 23, 0.18);
  border-radius: 0.9rem;
  background: var(--white);
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--charcoal-900);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.5rem);
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(19, 21, 23, 0.08);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--slate-100);
}

.nav-cta {
  margin-top: 0.25rem;
}

.hero {
  padding: calc(3rem + var(--header-height)) 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-700);
}

.hero-support {
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.trust-strip {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.trust-strip li {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid rgba(19, 21, 23, 0.08);
  box-shadow: var(--shadow);
  font-weight: 600;
}

.hero-panel {
  min-height: 18rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(19, 21, 23, 0.96), rgba(42, 46, 51, 0.92)),
    linear-gradient(180deg, var(--yellow), transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  height: 100%;
  align-content: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(244, 196, 0, 0.16), transparent 28%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.hero-panel-card p {
  width: fit-content;
  margin: 0;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.services-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.service-card,
.form-panel,
.faq-list details,
.disclaimer-box {
  background: var(--white);
  border: 1px solid rgba(19, 21, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.4rem;
}

.section-note {
  margin-top: 1.25rem;
  font-weight: 600;
}

.section-note a {
  text-decoration-thickness: 2px;
}

.gallery-caption {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--charcoal-700);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  min-height: 14rem;
  background: var(--charcoal-800);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.1rem 1.15rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--yellow-deep);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0.85rem;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.contact-details dt {
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
}

.form-panel {
  padding: 1.35rem;
}

.form-status {
  margin-bottom: 1rem;
}

.status-default,
.status-message {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
}

.status-default {
  background: #fff7cf;
  color: #4a3b00;
}

.status-message.success {
  background: #ebf8ef;
  color: #154b24;
}

.status-message.error {
  background: #fdeeee;
  color: #7a1f1f;
}

.enquiry-form {
  display: grid;
  gap: 0.95rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(19, 21, 23, 0.18);
  border-radius: 0.9rem;
  background: var(--white);
  color: var(--charcoal-900);
}

.form-field textarea {
  resize: vertical;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.field-error {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.92rem;
  color: #b42318;
}

.form-submit {
  width: 100%;
}

.disclaimer-box {
  padding: 1.4rem;
  border-left: 0.45rem solid var(--yellow);
}

.site-footer {
  padding: 2rem 0 3rem;
  background: var(--charcoal-900);
  color: var(--white);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-title {
  font-weight: 700;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

@media (min-width: 720px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 7;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 5;
  }

  .gallery-item:nth-child(3) {
    grid-column: span 4;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 4;
  }

  .gallery-item:nth-child(5) {
    grid-column: span 4;
  }
}
