:root {
  --brown: #a87534;
  --brown-dark: #6d451e;
  --gold: #e9b86a;
  --orange: #f47a32;
  --amber: #ffad2e;
  --blue: #2e7dff;
  --ink: #1f1b16;
  --muted-ink: #6b6258;
  --cream: #fffaf1;
  --soft: #f7f1e7;
  --line: #eadcc7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(80, 49, 17, 0.13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 241, 0.95);
  border-bottom: 1px solid rgba(168, 117, 52, 0.16);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(360px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted-ink);
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--brown-dark); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--brown);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--brown-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 4vw, 64px) 56px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--brown-dark);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
  color: var(--brown-dark);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
}

.hero p,
.section-heading p,
.two-col p,
.contact-band p,
.page-hero p {
  color: var(--muted-ink);
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brown), var(--orange));
  box-shadow: 0 12px 28px rgba(244, 122, 50, 0.22);
}

.btn.secondary {
  color: var(--brown-dark);
  background: var(--white);
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brown-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.hero-media {
  position: relative;
}

.hero-media img,
.section-image,
.split-band img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-media img {
  min-height: 520px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--brown-dark);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 64px);
}

.muted {
  background: var(--soft);
}

.two-col,
.split-band,
.contact-band,
.contact-layout,
.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-image {
  aspect-ratio: 1.15 / 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-grid,
.testimonial-grid,
.values-grid,
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.values-grid article,
.process-cards article,
.services-list article,
blockquote,
.contact-card,
.enquiry-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(80, 49, 17, 0.06);
}

.service-card,
.values-grid article,
.process-cards article,
.services-list article {
  padding: 24px;
}

.service-card h3,
.values-grid h3,
.process-cards h3,
.services-list h2 {
  color: var(--brown-dark);
}

.service-card p,
.values-grid p,
.process-cards p,
.services-list p,
blockquote p {
  color: var(--muted-ink);
}

.center-action {
  justify-content: center;
}

.split-band {
  background: linear-gradient(135deg, #3b2614, #7b4f20);
  color: var(--white);
}

.split-band h2,
.split-band .eyebrow { color: var(--white); }

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

.feature-list div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

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

blockquote {
  margin: 0;
  padding: 26px;
}

cite {
  color: var(--brown-dark);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
}

summary {
  color: var(--brown-dark);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted-ink);
}

.contact-band {
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.contact-card a:not(.btn) {
  color: var(--brown-dark);
  font-weight: 800;
}

.contact-card span {
  color: var(--muted-ink);
}

.page-hero {
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 4vw, 64px);
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 27, 11, 0.86), rgba(45, 27, 11, 0.48));
}

.page-hero > div {
  position: relative;
  max-width: 780px;
}

.page-hero h1,
.page-hero .eyebrow { color: var(--white); }

.page-hero p {
  color: rgba(255, 255, 255, 0.86);
}

.about-hero { background-image: url("../images/generated-about-image.png"); }
.services-hero { background-image: url("../images/generated-services-image.png"); }
.contact-hero { background-image: url("../images/generated-process-image.png"); }

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.timeline div {
  padding: 0 20px 20px;
  border-left: 2px solid var(--gold);
}

.timeline span,
.process-cards span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-weight: 900;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.services-list h2 {
  font-size: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
}

.contact-details,
.enquiry-form {
  padding: 28px;
}

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

.detail-list div,
.enquiry-form label {
  display: grid;
  gap: 6px;
}

.detail-list strong,
.enquiry-form label {
  color: var(--brown-dark);
  font-weight: 800;
}

.detail-list a,
.detail-list span {
  color: var(--muted-ink);
  font-weight: 600;
}

.enquiry-form {
  gap: 16px;
  display: grid;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea { resize: vertical; }

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 32px;
  padding: 46px clamp(18px, 4vw, 64px) 24px;
  color: rgba(255, 255, 255, 0.82);
  background: #24170d;
}

.site-footer img {
  width: min(320px, 80vw);
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .hero,
  .two-col,
  .split-band,
  .contact-band,
  .contact-layout,
  .map-section,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .brand img {
    width: min(245px, 68vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    justify-content: center;
    padding: 12px 16px !important;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: 36px;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .timeline,
  .services-list,
  .process-cards,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
/* @vn-deploy:1780330860626 */
