:root {
  --green-dark: #1f3d2b;
  --green: #2f5d3f;
  --accent: #c97b3d;         /* warm rust — clips/harness tone */
  --cream: #faf6ee;
  --cream-dark: #f1ead9;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 18px 40px -18px rgba(31, 61, 43, .35);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.2; }

img { max-width: 100%; display: block; }
a { color: var(--green); }

.container { width: min(1100px, 92%); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .85em 1.6em;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: all .2s ease; font-size: 1rem;
}
.btn-light { background: var(--white); color: var(--green-dark); }
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--green-dark); color: var(--white); }
.btn-dark:hover { background: var(--green); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); width: 100%; }
.btn-accent:hover { background: #b56c30; transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(31, 61, 43, .96); backdrop-filter: blur(6px);
  color: var(--white);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: .8rem; }
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--white); }
.brand-mark { font-size: 1.5rem; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name { font-family: 'Lora', serif; font-weight: 700; font-size: 1.25rem; letter-spacing: .02em; }
.brand-name em { font-style: italic; color: #e6c68a; }
.nav-menu { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-menu a { color: rgba(255,255,255,.88); text-decoration: none; font-weight: 500; }
.nav-menu a:hover { color: #e6c68a; }
.nav-cta {
  background: var(--accent); padding: .55em 1.3em; border-radius: 999px; color: var(--white) !important;
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-bar { width: 26px; height: 3px; background: var(--white); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background:
    linear-gradient(rgba(20, 40, 28, .62), rgba(20, 40, 28, .62)),
    url('images/hero.jpg') center/cover no-repeat;
  color: var(--white); text-align: center; padding: 7rem 0 4rem;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; }
.hero-eyebrow {
  letter-spacing: .18em; text-transform: uppercase; font-size: .85rem;
  color: #e6c68a; margin-bottom: 1rem; font-weight: 600;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 22ch; margin-inline: auto; }
.hero-sub { font-size: 1.15rem; max-width: 55ch; margin: 1.2rem auto 2rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-dark); }
.section-head { text-align: center; margin-bottom: 3rem; }
.eyebrow {
  letter-spacing: .18em; text-transform: uppercase; font-size: .8rem;
  color: var(--accent); font-weight: 600; margin-bottom: .75rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* ---------- Split (About) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-image img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.split-text h2 { margin-bottom: 1.25rem; }
.split-text p { margin-bottom: 1rem; }
.tick-list { list-style: none; margin: 1.25rem 0 1.75rem; display: grid; gap: .6rem; }
.tick-list li { padding-left: 1.8rem; position: relative; }
.tick-list li::before { content: "✔"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ---------- Cards (Services) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); padding: 1.75rem; border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 4px solid var(--accent);
}
.card h3 { margin-bottom: .6rem; font-size: 1.25rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item img {
  aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .25s ease;
}
.gallery-item img:hover { transform: scale(1.03); }

/* ---------- Quote ---------- */
.quote {
  max-width: 720px; margin-inline: auto; text-align: center;
  font-family: 'Lora', serif; font-size: 1.4rem; color: var(--green-dark);
}
.quote footer { margin-top: 1.25rem; font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--muted); }

/* ---------- Enquiry ---------- */
.section-enquiry { background: var(--white); }
.phone-link { font-weight: 700; color: var(--accent); text-decoration: none; white-space: nowrap; }
.enquiry-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea {
  padding: .75rem .9rem; border: 1.5px solid #d8d0bc; border-radius: 8px;
  font-family: inherit; font-size: 1rem; background: var(--white); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47, 93, 63, .15);
}
.hp { position: absolute; left: -9999px; opacity: 0; }
.contact-form .btn-accent { grid-column: 1 / -1; margin-top: .5rem; }
.form-status { grid-column: 1 / -1; font-weight: 600; }

.contact-side {
  background: var(--cream); border: 1px solid var(--cream-dark);
  border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow);
}
.contact-phone {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  color: var(--ink); margin: 1.25rem 0; padding: 1rem;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow);
}
.contact-phone .contact-icon { font-size: 1.8rem; }
.contact-phone small { display: block; color: var(--muted); }
.contact-phone strong { font-size: 1.3rem; color: var(--green-dark); }
.contact-list { list-style: none; display: grid; gap: .8rem; margin: 1.25rem 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.85); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: #e6c68a; margin-bottom: .75rem; }
.footer-grid a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-grid a:hover { color: #e6c68a; }
.brand-footer { font-family: 'Lora', serif; font-weight: 700; font-size: 1.3rem; }
.brand-footer em { font-style: italic; color: #e6c68a; }
.footer-links { list-style: none; display: grid; gap: .4rem; }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split, .enquiry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-dark); flex-direction: column; gap: 1rem;
    padding: 1.5rem 8%; align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}
