:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #0b0d10;
  --panel: rgba(17, 19, 23, 0.78);
  --panel-strong: rgba(22, 24, 29, 0.94);
  --text: #f5f0e6;
  --muted: #b9b1a5;
  --line: rgba(245, 240, 230, 0.14);
  --gold: #d7aa5b;
  --teal: #57c7be;
  --coral: #f0775d;
  --violet: #9d7cff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(87, 199, 190, 0.14), transparent 30rem),
    linear-gradient(180deg, #050608 0%, #08090d 44%, #050608 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea {
  outline-color: var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border: 1px solid var(--line);
  background: var(--text);
  color: var(--bg);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: var(--line);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(215, 170, 91, 0.6);
  background:
    linear-gradient(135deg, rgba(215, 170, 91, 0.22), rgba(87, 199, 190, 0.16)),
    #0c0e12;
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(245, 240, 230, 0.82);
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 8.2rem clamp(1rem, 5vw, 4rem) 2rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/octo-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.64) 43%, rgba(5, 6, 8, 0.3) 100%),
    linear-gradient(0deg, #050608 0%, transparent 38%),
    radial-gradient(circle at 26% 28%, rgba(215, 170, 91, 0.18), transparent 19rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(720px, 100%);
  padding-top: 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 8.5vw, 7.3rem);
  font-weight: 500;
}

h2 {
  max-width: 920px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  font-weight: 500;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 720px;
  color: rgba(245, 240, 230, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions,
.filter-bar,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.82rem 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn span {
  margin-right: 0.42rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), #f2d699);
  color: #14100a;
}

.btn-secondary {
  border-color: rgba(87, 199, 190, 0.45);
  background: rgba(87, 199, 190, 0.1);
  color: var(--text);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel {
  position: relative;
  z-index: 3;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: var(--max);
  padding-top: 4rem;
}

.hero-panel span,
.event-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.54);
  color: rgba(245, 240, 230, 0.84);
  padding: 0.55rem 0.76rem;
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 2rem);
}

.intro-band {
  max-width: none;
  padding-top: 1.4rem;
}

.metrics,
.about-grid,
.proof-grid,
.contact,
.feature-strip {
  display: grid;
  gap: 1rem;
}

.metrics {
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin-inline: auto;
}

.metrics div,
.process-card,
.service-card,
.why-card,
.testimonial-card,
.blog-card,
.faq-item,
.enquiry-form,
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metrics div {
  padding: 1.2rem;
}

.metrics strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1;
}

.metrics span,
.section-head p,
.section-copy p,
.feature-strip p,
.service-card p,
.testimonial-card span,
.blog-card p,
.faq-panel,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: start;
}

.section-copy p,
.section-head p,
.contact-copy p {
  max-width: 760px;
  font-size: 1.04rem;
}

.process-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.process-list {
  display: grid;
  gap: 0.7rem;
}

.process-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: center;
  border-bottom: 1px solid rgba(245, 240, 230, 0.09);
  padding-bottom: 0.7rem;
}

.process-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-step span:first-child,
.why-icon,
.service-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 170, 91, 0.35);
  border-radius: 999px;
  background: rgba(215, 170, 91, 0.1);
  color: var(--gold);
}

.process-step span:first-child {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-strip {
  grid-template-columns: 0.7fr 1fr;
  align-items: end;
  max-width: none;
  padding-inline: max(clamp(1rem, 4vw, 2rem), calc((100vw - var(--max)) / 2 + 2rem));
  background:
    linear-gradient(90deg, rgba(215, 170, 91, 0.12), rgba(87, 199, 190, 0.09)),
    #0b0d10;
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.15rem;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(215, 170, 91, 0.08), transparent 36%),
    radial-gradient(circle at 100% 0%, rgba(87, 199, 190, 0.16), transparent 15rem);
  opacity: 0.9;
  pointer-events: none;
}

.service-card > * {
  position: relative;
}

.service-top {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.8rem;
}

.service-icon,
.why-icon {
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  font-weight: 900;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  border: 1px solid rgba(245, 240, 230, 0.1);
  border-radius: 999px;
  color: rgba(245, 240, 230, 0.84);
  font-size: 0.82rem;
  padding: 0.32rem 0.55rem;
}

.event-types {
  max-width: none;
  background:
    linear-gradient(rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.9)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1800&q=80");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.event-types > * {
  max-width: var(--max);
  margin-inline: auto;
}

.event-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.why-card {
  padding: 1rem;
}

.why-card h3 {
  margin: 0.8rem 0 0;
  font-size: 0.98rem;
}

.filter-bar {
  margin-bottom: 1.2rem;
}

.filter-btn {
  min-height: 2.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 240, 230, 0.84);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.filter-btn.is-active {
  border-color: rgba(215, 170, 91, 0.55);
  background: rgba(215, 170, 91, 0.14);
  color: var(--text);
}

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

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 6, 8, 0.88) 100%),
    var(--image),
    linear-gradient(135deg, rgba(215, 170, 91, 0.22), rgba(87, 199, 190, 0.16));
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(6) {
  grid-column: span 6;
}

.gallery-card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
}

.gallery-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0.32rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.proof-grid,
.blog-grid {
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-card,
.blog-card {
  padding: 1.3rem;
}

.testimonial-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.16;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.logo-row span {
  display: grid;
  min-height: 5.5rem;
  place-items: center;
  border: 1px dashed rgba(245, 240, 230, 0.22);
  border-radius: var(--radius);
  color: rgba(245, 240, 230, 0.56);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card h3 {
  margin-bottom: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 1rem;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-weight: 900;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-panel {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.contact {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.map-placeholder {
  display: grid;
  min-height: 260px;
  align-content: end;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(87, 199, 190, 0.16), rgba(215, 170, 91, 0.1)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #101318;
}

.map-placeholder span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: rgba(245, 240, 230, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 240, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 6, 8, 0.55);
  color: var(--text);
  padding: 0.82rem 0.85rem;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-submit {
  justify-self: start;
  cursor: pointer;
}

.form-note {
  margin: -0.25rem 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: #050608;
}

.site-footer p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematicDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.9rem 1rem auto;
    display: none;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 8, 0.96);
    padding: 0.7rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
    padding: 0.9rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7rem;
  }

  h1 {
    max-width: 12ch;
  }

  .metrics,
  .about-grid,
  .feature-strip,
  .proof-grid,
  .contact,
  .form-row,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6) {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 0.85rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(6) {
    grid-column: auto;
    min-height: 260px;
  }

  .event-types {
    background-attachment: scroll;
  }

  .site-footer {
    display: grid;
  }
}
