:root {
  --bg: #fcfbf8;
  --surface: #ffffff;
  --surface-soft: #f2efe8;
  --text: #121212;
  --muted: #5f5a52;
  --line: rgba(18, 18, 18, 0.1);
  --accent: #efb64a;
  --accent-deep: #d89c27;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 182, 74, 0.14), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, #fcfbf8 46%, #f7f4ee 100%);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-contact-bar {
  background: #121212;
  color: rgba(255, 255, 255, 0.88);
}

.top-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  font-size: 0.92rem;
}

.contact-pills a:hover,
.top-mini-cta:hover {
  color: #fff;
}

.top-mini-cta {
  color: var(--accent);
  font-weight: 600;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(252, 251, 248, 0.86);
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand-mark {
  width: 120px;
  height: 200px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
}

.nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #121212;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  background: rgba(252, 251, 248, 0.98);
}

.mobile-menu-inner {
  display: grid;
  gap: 12px;
  padding: 16px 0 22px;
}

.mobile-menu a:not(.btn) {
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-dark {
  background: #121212;
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-accent {
  background: var(--accent);
  color: #121212;
  box-shadow: 0 18px 38px rgba(239, 182, 74, 0.38);
}

.btn-accent:hover {
  background: var(--accent-deep);
}

.btn-light {
  background: rgba(255, 255, 255, 0.8);
  color: #121212;
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.hero {
  padding: 26px 0 40px;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-backdrop {
  position: absolute;
  inset: 0;
  border-radius: 34px;
}

.slide-one {
  background:
    linear-gradient(100deg, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.46) 34%, rgba(18, 18, 18, 0.12) 64%),
    url("img/1.png");
  background-size: cover;
  background-position: center right;
}

.slide-two {
  background:
    linear-gradient(100deg, rgba(18, 18, 18, 0.64) 0%, rgba(18, 18, 18, 0.34) 30%, rgba(18, 18, 18, 0.06) 60%),
    url("img/2.png");
  background-size: cover;
  background-position: center right;
}

.slide-three {
  background:
    linear-gradient(100deg, rgba(18, 18, 18, 0.66) 0%, rgba(18, 18, 18, 0.34) 30%, rgba(18, 18, 18, 0.08) 60%),
    url("img/3.png");
  background-size: cover;
  background-position: center right;
}

.slide-content {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 58px 0;
}

.hero-copy {
  max-width: 640px;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.section-heading h2,
.quote-panel h2 {
  margin: 0;
  line-height: 1.04;
}

.hero h1,
.hero h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  max-width: 12ch;
}

.hero-copy p,
.section-heading p,
.overlay-copy p,
.card-body p,
.feature-item p,
.trust-item p,
.quote-panel p,
.footer p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.2);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 38px;
  border-radius: 999px;
  background: #121212;
}

.trust-strip,
.section,
.footer {
  padding: 34px 0 80px;
}

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

.trust-item,
.info-card,
.feature-item,
.gallery-card,
.quote-panel,
.enquiry-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #121212;
  color: #fff;
}

.icon-wrap.dark {
  background: var(--surface-soft);
  color: #121212;
}

.icon-wrap svg,
.floating-call svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.trust-item p,
.section-heading p,
.card-body p,
.feature-item p,
.overlay-copy p,
.quote-panel p,
.footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.left {
  margin-bottom: 0;
}

.section-heading h2,
.quote-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.dark-badge {
  background: rgba(18, 18, 18, 0.08);
  color: #121212;
}

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

.info-card,
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.info-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.feature-item h3,
.overlay-copy h3,
.footer h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.advantage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

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

.feature-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
}

.gallery-card.tall {
  min-height: 580px;
}

.art-panel {
  position: absolute;
  inset: 0;
}

.art-one {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.04), rgba(18, 18, 18, 0.22)),
    url("img/g1.png");
  background-size: cover;
  background-position: center;
}

.art-two {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.02), rgba(18, 18, 18, 0.22)),
    url("img/g2.png");
  background-size: cover;
  background-position: center;
}

.art-three {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.02), rgba(18, 18, 18, 0.22)),
    url("img/g3.png");
  background-size: cover;
  background-position: center;
}

.art-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 36%, rgba(18, 18, 18, 0.48) 100%);
}

.overlay-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 18, 18, 0.08);
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border-radius: 32px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.enquiry-copy {
  padding: 12px 0;
}

.enquiry-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.enquiry-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow);
}

.enquiry-point strong {
  display: block;
  margin-bottom: 8px;
}

.enquiry-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.enquiry-form {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 244, 238, 0.98));
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: grid;
  gap: 10px;
  font-weight: 500;
  color: #222;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #121212;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(216, 156, 39, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 182, 74, 0.16);
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer {
  padding-bottom: 110px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 320px;
}

.footer-block h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-block p,
.footer-block a {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  color: var(--muted);
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
  .nav,
  .desktop-call,
  .desktop-quote {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-slider,
  .slide-content {
    min-height: 560px;
  }

  .trust-grid,
  .card-grid,
  .advantage-layout,
  .gallery-grid,
  .enquiry-layout,
  .quote-panel,
  .footer-inner,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.tall {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-contact-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-slider,
  .slide-content {
    min-height: 620px;
  }

  .slide-backdrop {
    border-radius: 28px;
  }

  .hero h1,
  .hero h2 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .footer {
    padding: 20px 0 64px;
  }

  .trust-strip {
    padding: 10px 0 50px;
  }

  .quote-panel,
  .trust-item,
  .feature-item,
  .enquiry-form,
  .enquiry-point,
  .card-body,
  .overlay-copy {
    padding: 20px;
  }

  .top-contact-bar {
    display: none;
  }

  .brand-text small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero-tags,
  .form-actions {
    flex-direction: column;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    justify-content: center;
  }
}
