:root {
  --primary: #0a2540;
  --accent: #c89b3c;
  --light: #f6f6f6;
  --dark: #111;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  background-color: #fff;
  color: #111;
}

/* ================= GLOBAL ================= */
a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-family: Arial, sans-serif;
}

/* ================= HEADER (FINAL / LOCKED) ================= */
header.site-header {
  background-color: #0a2540;
  position: relative;
  padding: 2rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* NAV */
.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 90px;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  white-space: nowrap;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.main-nav a:hover {
  color: #c89b3f;
}

/* LOGO — LARGE, INDEPENDENT, NON-DESTRUCTIVE */
.logo {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.logo img {
  height: 350px;   /* VISUAL SIZE = your 400px version */
  width: auto;
  display: block;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 60vh;
  background-image: url("hero-decking.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  padding: 2.5rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.9rem 1.75rem;
  font-weight: 600;
  border-radius: 4px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.section.light {
  background: var(--light);
  max-width: none;
}

.center {
  text-align: center;
  margin-bottom: 3rem;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.section p {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  color: #333;
}

/* ================= LAYOUTS ================= */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2.5rem;
}

/* ================= IMAGES ================= */
.image-placeholder {
  width: 100%;
  max-width: 420px;
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ================= CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2.5rem;
}

.card {
  max-width: 300px;
  padding: 2.25rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* ================= PROCESS ================= */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.step {
  text-align: center;
  flex: 1;
}

.step .circle {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.step h3 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

/* ================= CTA ================= */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }

  .logo {
    left: 1rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .main-nav {
    display: none;
  }
}