* {
  box-sizing: border-box;
}

/* =========================
   COLOUR SYSTEM
========================= */
:root {
  --bg-main: #f6efe9;
  --bg-soft: #ffffff;
  --hero-bg: #1f3d2b;   /* forest green */
  --hero-section-bg: #e9ddd3;
  --contact-bg: #0b3f35; /* emerald */
  --text-main: #2b2b2b;
  --text-muted: #666;
  --accent: #8b2f2f; /* deep muted red */
}

/* =========================
   BASE
========================= */
body {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-main);
  background: var(--bg-main);
}

/* =========================
   HERO 
========================= */
.hero {
  background: var(--hero-section-bg);
  padding: 120px 20px 70px;
}

.hero-inner {
  max-width: 1120px;
  margin: auto;
  background: var(--hero-bg);
  padding: 40px 56px;
  border-radius: 4px;
}

/* HERO TEXT */
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #f3f5f4;
}

/* SECOND LINE (NO ACCENT COLOUR) */
.hero h1 span {
  color: #e6ece9;
}

/* HERO ACCENT LINE */
.hero-title {
  position: relative;
  padding-left: 22px;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 4px;
  height: 85%;
  background: var(--accent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 24px;
  color: #e6ece9;
}

.hero-divider {
  width: 120px;
  height: 3px;
  background: var(--accent);
  margin: 24px 0;
}

.hero-meta {
  font-size: 0.9rem;
  color: #d6ddd9;
}

/* =========================
   IMAGE SLIDER (UNIFORM SIZE)
========================= */
.image-section {
  max-width: 1120px;
  margin: 40px auto 80px;
  padding: 36px;                 
  background: #ecd7d3;         
  border-radius: 4px;
}

.image-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
}

.image-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.image-slider img.active {
  opacity: 1;
}

.image-section {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   SECTIONS
========================= */
.section {
  max-width: 1120px;
  margin: 50px auto;
  padding: 0 20px;
}

.section-soft {
  background: var(--bg-soft);
  padding: 70px 0;
}

.section-inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;
}

/* SECTION HEADINGS */
.section h2,
.section-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 24px;
  position: relative;
}

.section h2::after,
.section-inner h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

/* LEAD TEXT */
.lead {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* =========================
   SERVICES
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
}

.service h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent);
}

/* =========================
   CONTACT
========================= */
.contact {
  background: var(--contact-bg);
  color: #f2f2f2;
  padding: 90px 20px;
  margin-top: 120px;
}

.contact h2 {
  color: #ffffff;
}

.contact h2::after {
  background: #b14a4a;
}

.contact p {
  max-width: none;
  white-space: nowrap;
}

.contact-line a {
  color: #d16a6a;
  text-decoration: none;
  border-bottom: 1px solid rgba(209, 106, 106, 0.4);
}

.contact-line {
  margin-top: 16px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  color: #d16a6a;
  flex-shrink: 0;
  display: block;
}


.contact-item a {
  color: #f2f2f2;
  text-decoration: none;
  border-bottom: 1px solid rgba(209, 106, 106, 0.4);
}

.contact-item a:hover {
  border-bottom-color: rgba(209, 106, 106, 0.8);
}


body {
  position: relative;
  z-index: 1;
}

/* GLOBAL BACKGROUND TEXTURE OVERLAY */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.03),
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px,
      transparent 2px
    );

  opacity: 0.22;
}

.cta-line {
  margin-top: 20px;
  font-weight: 600;
}


/* =========================
   FOOTER
========================= */
footer {
  margin-top: 60px;
  padding: 40px 20px;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  border-top: 1px solid #ddd;
}
