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

:root {
  --bg: #f6f3ee;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --dark: #111827;
  --green: #234b2d;
  --green-2: #2f6a3d;
  --green-3: #dfeadf;
  --gold: #b89146;
  --line: #e5e7eb;
  --soft: #f9f7f3;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.nav {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: -113px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.header-phone {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35, 75, 45, 0.3);
  background: rgba(35, 75, 45, 0.07);
  color: var(--green-2);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.header-phone:hover {
  background: rgba(35, 75, 45, 0.14);
}

.header-social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-social-link .social-icon {
  width: 44px;
  height: 44px;
}

.header-social-link:hover {
  background: transparent;
}

.desktop-nav a {
  font-weight: 600;
  color: var(--dark);
}

.desktop-nav a.active {
  color: var(--green-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white) !important;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(35, 75, 45, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(35, 75, 45, 0.22);
}

.btn-sm {
  padding: 11px 18px;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.hero-v2 {
  position: relative;
  overflow: hidden;
  background: #0d1712;
  color: var(--white);
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('images/project-4-1.jpg') center/cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.55;
}

.hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(8, 12, 9, 0.86), rgba(18, 26, 20, 0.8)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #e7d3aa;
  margin-bottom: 16px;
}

.hero-copy h1,
.page-hero h1,
.section h2 {
  line-height: 1.1;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 780px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-card p {
  color: #4b5563;
}

.hero-card ul {
  margin-top: 18px;
  padding-left: 18px;
}

.hero-card li {
  margin-bottom: 10px;
}

.mini-label {
  color: var(--green-2);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.section-heading p:last-child,
.section-text,
.page-hero p {
  color: var(--muted);
  max-width: 760px;
}

.section-heading-center p:last-child,
.page-hero .narrow p {
  margin-left: auto;
  margin-right: auto;
}

.trust-bar {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

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

.trust-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--dark);
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid,
.project-grid,
.project-showcase-grid,
.reviews-grid,
.service-list-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.service-detail-card,
.showcase-card,
.review-card,
.info-card,
.quote-box,
.feature-box,
.project-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--green-2);
  background: var(--green-3);
}

.service-card h3,
.service-detail-card h3,
.project-body h3,
.showcase-content h3,
.review-card h4,
.info-card h3,
.quote-box h3,
.feature-box h3 {
  margin-bottom: 10px;
}

.service-card p,
.service-detail-card p,
.project-body p,
.showcase-content p,
.review-card p,
.info-card p,
.quote-box p,
.feature-box p,
.contact-intro {
  color: var(--muted);
}

.section-dark {
  background: linear-gradient(135deg, #101916, #1d3225);
  color: var(--white);
}

.luxury-band .section-text {
  color: rgba(255,255,255,0.82);
}

.split {
  display: grid;
  gap: 30px;
  align-items: start;
}

.split-large {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-box {
  padding: 24px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}

.feature-box p {
  color: rgba(255,255,255,0.82);
}

.project-preview {
  background: linear-gradient(to bottom, var(--white), var(--soft));
}

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

.project-item {
  overflow: hidden;
}

.project-media,
.showcase-media {
  min-height: 230px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, rgba(35,75,45,0.94), rgba(184,145,70,0.72));
}

.project-body,
.showcase-content,
.review-card,
.service-detail-card,
.info-card,
.quote-box {
  padding: 24px;
}

.cta-section {
  background: var(--bg);
}

.cta-panel {
  background: linear-gradient(135deg, var(--dark), #1f2937);
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-abn {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.site-footer {
  background: #0b1220;
  color: #d1d5db;
  padding: 24px 0;
}

.footer-flex {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand social"
    "brand links";
  column-gap: 36px;
  row-gap: 8px;
  align-items: flex-start;
}

.footer-flex > div:first-child {
  grid-area: brand;
}

.footer-links {
  grid-area: links;
  display: flex;
  justify-content: flex-end;
  row-gap: 10px;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 430px;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-social {
  grid-area: social;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-social-title {
  font-size: 0.86rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
  border-radius: 0;
  flex: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.social-icon-facebook {
  background-image: url('images/facebook.png?v=2');
}

.social-icon-facebook::before {
  content: "f";
  display: none;
}

.social-icon-instagram {
  background-image: url('images/instagram.png?v=2');
}

.social-icon-instagram::before {
  content: "";
  display: none;
}

.social-icon-instagram::after {
  content: "";
  display: none;
}

.premium-page-hero {
  position: relative;
  overflow: hidden;
  background: #f7f4ee;
  padding: 90px 0 60px;
}

.premium-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/project-9-1.jpg') center/cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.22;
}

.premium-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(247, 244, 238, 0.88), rgba(255, 255, 255, 0.96));
}

.premium-page-hero .container {
  position: relative;
  z-index: 1;
}

.premium-page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

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

.soft-section {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.soft-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/project-5-1.jpg') center/cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.12;
}

.soft-section > .container {
  position: relative;
  z-index: 1;
}

.quote-box {
  padding: 30px;
}

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

.showcase-card {
  overflow: hidden;
}

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

.review-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-card h4 {
  margin-top: 16px;
  color: var(--dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.contact-form-wrap,
.contact-sidebar {
  display: grid;
  gap: 20px;
}

.premium-form {
  margin-top: 22px;
}

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

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: var(--white);
}

.premium-form textarea {
  margin-bottom: 16px;
  resize: vertical;
}

.form-message {
  margin-top: 14px;
  color: var(--green-2);
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(135deg, #f7f9f4, #eef6ee);
}

.accent-card ul {
  padding-left: 18px;
}

.accent-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.mt-40 {
  margin-top: 40px;
}

.center {
  text-align: center;
}

@media (max-width: 1024px) {
  .logo-wrap {
    margin-left: 0;
  }

  .hero-grid,
  .split-large,
  .contact-layout,
  .project-grid,
  .service-grid,
  .project-showcase-grid,
  .reviews-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    min-height: auto;
  }

  .desktop-nav {
    justify-content: center;
    gap: 14px;
  }

  .logo-wrap {
    gap: 0;
  }

  .header-phone {
    width: 100%;
    text-align: center;
  }

  .header-social-link {
    width: 44px;
    height: 44px;
  }

  .footer-social {
    grid-area: auto;
    align-items: flex-start;
  }

  .footer-flex {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .section,
  .premium-page-hero {
    padding: 68px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .project-slider {
    height: 240px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
  }
}
.project-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slider {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #0f172a;
}

.project-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dot.active {
  background: #ffffff;
}

.showcase-card {
  overflow: hidden;
}
.site-logo {
  width: 550px;
  height: auto;
  max-height: 98px;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 720px) {
  .site-logo {
    width: 260px;
    height: auto;
    max-height: 74px;
  }
}