:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: #171717;
  --gold: #c8a35f;
  --gold-light: #e5c982;
  --silver: #d7d7d7;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  width: min(1240px, 94%);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 12px;
}

.brand span {
  display: block;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand small {
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--silver);
  font-size: 0.92rem;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-phone {
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  padding: 170px 0 110px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.94) 32%,
      rgba(0, 0, 0, 0.58) 60%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    url("assets/images/logo.jpeg") center right 3% / 48% no-repeat,
    #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(200, 163, 95, 0.13), transparent 31%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 92%);
  margin-left: max(4%, calc((100vw - 1180px) / 2));
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.76), rgba(20, 20, 20, 0.5));
  backdrop-filter: blur(8px);
  border-radius: 0 28px 28px 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.eyebrow,
.section-label {
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 720px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
}

.hero-text {
  color: var(--silver);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats div {
  min-width: 145px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 1.85rem;
  color: var(--gold-light);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 105px 0;
}

.about,
.why-us,
.service-area {
  background: var(--bg-soft);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.two-column p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.section-heading {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto 54px;
}

.section-heading p {
  color: var(--muted);
}

.director {
  background:
    radial-gradient(circle at top left, rgba(200, 163, 95, 0.12), transparent 34%),
    #050505;
}

.director-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.director-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(200, 163, 95, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.director-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(229, 201, 130, 0.45);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}

.director-image img {
  height: 560px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(12%) contrast(1.05);
}

.director-content {
  padding: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.director-content h2 {
  margin-bottom: 8px;
}

.director-title {
  color: var(--gold-light) !important;
  font-weight: 800;
  margin-bottom: 22px !important;
}

.director-content p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.director-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 163, 95, 0.6);
}

.service-card h3 {
  color: var(--gold-light);
  margin-bottom: 12px;
}

.service-card p,
.info-card li {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list div {
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--silver);
}

.check-list div::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 900;
  margin-right: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card ul {
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 12px;
}

.gallery {
  background: #050505;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  border-color: var(--gold);
}

.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.suburb-tags span {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact p {
  color: var(--muted);
}

.contact-details {
  margin-top: 28px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-details a {
  color: var(--gold-light);
}

.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.contact-form label {
  display: block;
  color: var(--silver);
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #0b0b0b;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h3 {
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer h4 {
  margin-bottom: 14px;
}

.footer p,
.footer span,
.footer a {
  display: block;
  color: var(--muted);
  margin-bottom: 9px;
}

.footer a:hover {
  color: var(--gold-light);
}

.copyright {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 22px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  top: 26px;
  right: 34px;
  background: none;
  border: 0;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.94) 43%,
        rgba(0, 0, 0, 0.74) 100%
      ),
      url("assets/images/logo.jpeg") center right 2% / 56% no-repeat,
      #050505;
  }

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

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

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

  .director-image img {
    height: 520px;
  }
}

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

  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.82)),
      url("assets/images/logo.jpeg") center top 108px / 78% no-repeat,
      #050505;
    padding: 355px 0 80px;
  }

  .hero-content {
    width: min(92%, 680px);
    margin: 0 auto;
    padding: 26px;
    border-left: 3px solid var(--gold);
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .two-column,
  .contact-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

  .gallery-grid img {
    height: 260px;
  }

  .director-image img {
    height: 430px;
  }

  .director-content {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .navbar {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .hero {
    padding-top: 300px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.84)),
      url("assets/images/logo.jpeg") center top 92px / 86% no-repeat,
      #050505;
  }

  .hero-content {
    padding: 22px;
  }

  .eyebrow,
  .section-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  h1 {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  h2 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .section {
    padding: 76px 0;
  }

  .hero-stats div {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .director-image img {
    height: 380px;
  }

  .director-contact {
    flex-direction: column;
  }
}

/* THANK YOU PAGE */

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.9)),
    url("assets/images/logo.jpeg") center / contain no-repeat,
    #050505;
}

.thanks-card {
  width: min(620px, 100%);
  padding: 44px;
  text-align: center;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.92), rgba(5, 5, 5, 0.88));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 24px;
}

.thanks-card h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-bottom: 18px;
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .thanks-card {
    padding: 30px 22px;
  }

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