/* ============================================================
   WULFHE OUTDOOR LIVING — SITE STYLES
   ============================================================ */

:root {
  --dark: #3D3229;
  --accent: #8B9A6B;
  --accent-h: #798A5A;
  --accent-btn: #7D8E65;
  --white: #FFFFFF;
  --warm: #F5F2ED;
  --cream: #FAF8F5;
  --charcoal: #4A3F35;
  --footer-bg: #3D3229;
  --ft: #B8AFA5;
  --border: #DDD8D0;
  --body: #5A5047;
  --muted: #8A8078;
  --heading: #3D3229;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  transition: all 0.3s;
}

/* TOP ACCENT BAR */
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #A4B381, var(--accent));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* HEADER */
.hd {
  position: sticky;
  top: 4px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-t {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-t span {
  font-weight: 400;
  color: var(--dark);
}

.nav {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.on::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent-btn);
  border: none;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-h); }

/* MOBILE NAV */
.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mob-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 899;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-height: 80vh;
  overflow-y: auto;
}

.mob-nav.open { display: block; }

.mob-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.mob-nav a:last-child { border-bottom: none; }
.mob-nav a:hover { color: var(--accent); }

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.hero-c {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 40px 48px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* PAGE HEADER */
.ph {
  text-align: center;
  padding: 72px 28px 64px;
  background: var(--charcoal);
  color: #fff;
}

.ph h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.ph p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

/* SECTIONS */
.s { padding: 80px 48px; }
.sc { padding: 48px 48px; }
.bw { background: var(--white); }
.bm { background: var(--warm); }
.bcr { background: var(--cream); }
.bd { background: var(--charcoal); color: #fff; }
.ctn { max-width: 760px; margin: 0 auto; }
.ctn-w { max-width: 1120px; margin: 0 auto; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 700;
}

h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 22px; margin-bottom: 10px; }

p {
  margin-bottom: 18px;
  color: var(--body);
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

.label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.tc { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-a { color: #fff; border-color: var(--accent-btn); background: var(--accent-btn); }
.btn-a:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-ow { color: #fff; border-color: rgba(255, 255, 255, 0.5); background: transparent; }
.btn-ow:hover { background: var(--accent-btn); border-color: var(--accent-btn); }
.btn-od { color: var(--dark); border-color: var(--dark); background: transparent; }
.btn-od:hover { background: var(--dark); color: #fff; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* SERVICE CARDS */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.09); }
.svc-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover img { transform: scale(1.04); }
.svc-bd { padding: 24px 28px; }
.svc-bd h3 { font-size: 20px; margin-bottom: 8px; }
.svc-bd p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-block; margin-top: 12px; }

/* WHY SECTION - CHECKMARKS */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.why-col h3 { font-size: 22px; margin-bottom: 20px; }
.why-list { list-style: none; }
.why-list li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--body);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* TRUST SIGNALS BAR */
.trust-bar {
  background: var(--charcoal);
  padding: 40px 48px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}
.trust-item { color: #fff; }
.trust-icon { width: 40px; height: 40px; margin: 0 auto 12px; color: var(--accent); }
.trust-item h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* PROCESS STEPS */
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-n {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.step h3 { margin-bottom: 10px; font-size: 20px; }
.step p { max-width: 640px; }
.step-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* TWO COLUMN */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two img { width: 100%; height: auto; object-fit: cover; max-height: 500px; border-radius: 4px; }
.two-rev { direction: rtl; }
.two-rev > * { direction: ltr; }

/* EXPERTISE GRID */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.exp-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.exp-card h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.exp-card p { font-size: 14px; color: var(--muted); }

/* CONTACT */
.c-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.c-info h3 { font-size: 20px; margin-bottom: 20px; }
.c-line { margin-bottom: 16px; font-size: 15px; color: var(--body); }
.c-line strong { color: var(--dark); }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld { display: flex; flex-direction: column; gap: 5px; }
.fld label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.fld input, .fld textarea, .fld select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--accent); }
.fld textarea { min-height: 120px; resize: vertical; }
.sub-btn {
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-btn);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.sub-btn:hover { background: var(--accent-h); }

/* FOOTER */
.ft { background: var(--footer-bg); color: var(--ft); }
.ft-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding: 48px 48px 40px;
  max-width: 1120px;
  margin: 0 auto;
}
.ft-brand h4 { font-family: var(--sans); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.ft-brand p { font-size: 13px; color: var(--ft); line-height: 1.6; margin-bottom: 8px; }
.ft-links h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ft-links a { display: block; font-size: 14px; color: var(--ft); text-decoration: none; padding: 4px 0; }
.ft-links a:hover { color: #fff; }
.ft-area h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ft-area p { font-size: 13px; color: var(--ft); line-height: 1.6; }
.ft-bot {
  text-align: center;
  padding: 20px 48px;
  font-size: 12px;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}

/* ANIMATIONS */
.fi { opacity: 0; transform: translateY(22px); transition: opacity 0.7s, transform 0.7s; }
.fi.v { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hd { padding: 0 20px; height: 68px; }
  .nav { display: none; }
  .mob-btn { display: block; }
  .s { padding: 56px 20px; }
  .sc { padding: 36px 20px; }
  .hero h1 { font-size: 34px; }
  .hero { min-height: 70vh; }
  .hero-c { padding: 40px 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .two, .two-rev, .c-grid, .why-grid, .exp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  h2 { font-size: 28px; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-n { font-size: 38px; }
  .ph h1 { font-size: 32px; }
  .ft-main { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px; }
  .ft-bot { flex-direction: column; gap: 8px; padding: 16px 20px; }
}

@media (max-width: 600px) {
  .s { padding: 44px 16px; }
  .hero h1 { font-size: 28px; }
  .hero { min-height: 65vh; }
  .svc-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; text-align: center; }
  .trust-bar { padding: 32px 20px; }
}
