* { box-sizing: border-box; }

:root {
  --black: #050505;
  --near-black: #0d0d0d;
  --gold: #d9a52b;
  --gold-light: #f4c85a;
  --red: #b91514;
  --white: #ffffff;
  --soft: #f7f5f0;
  --text: #1d1d1d;
  --muted: #5c5c5c;
  --line: rgba(217, 165, 43, 0.35);
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

p { line-height: 1.65; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 42px;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(217, 165, 43, 0.28);
}

.logo { display: block; width: 430px; max-height: 185px; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.nav a { position: relative; padding: 10px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }

.header-button, .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header-button {
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--white);
}

.header-button:hover { background: var(--gold); color: var(--black); }

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.76) 38%, rgba(0,0,0,0.18) 75%),
    url("hero-home.jpg") center right / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 90px 56px;
  color: var(--white);
}

.eyebrow {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 16px;
}

.eyebrow.dark { color: var(--red); }

.hero h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span { color: var(--gold-light); }

.hero-text {
  max-width: 560px;
  margin: 26px 0 32px;
  font-size: 19px;
}

.primary-button {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(217, 165, 43, 0.25);
}

.section { padding: 62px 44px; }

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
  text-align: center;
}

.section-title span {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  padding: 34px 26px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  text-align: center;
  min-height: 295px;
}

.icon {
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h3 {
  min-height: 52px;
  font-size: 18px;
  text-transform: uppercase;
}

.service-card ul {
  display: inline-block;
  margin: 16px 0 0;
  padding-left: 18px;
  text-align: left;
  line-height: 1.85;
}

.service-card li::marker { color: var(--gold); }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.photo {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}

.photo-kitchen { background-image: url("kitchen.jpg"); }

.content-box {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-box h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  margin-bottom: 22px;
}

.content-box p {
  color: var(--muted);
  font-size: 17px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--near-black);
  color: var(--white);
}

.mv-photo {
  min-height: 355px;
  background-size: cover;
  background-position: center;
}

.mv-home { background-image: url("mission-home.jpg"); }
.mv-porch { background-image: url("contact-home.jpg"); }

.mv-card {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.mv-icon { color: var(--gold); font-size: 36px; margin-bottom: 14px; }

.mv-card h2 {
  color: var(--gold-light);
  font-size: 27px;
  text-transform: uppercase;
}

.mv-card p { color: rgba(255,255,255,0.88); }

.why-section { background: var(--soft); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1260px;
  margin: 0 auto;
}

.why-grid article {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.12);
}

.why-grid article:last-child { border-right: none; }

.small-icon { color: var(--gold); font-size: 32px; margin-bottom: 12px; }

.why-grid h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-grid p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  padding: 62px 56px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.90)),
    url("contact-home.jpg") center right / cover no-repeat;
  color: var(--white);
}

.contact-details h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 22px;
}

.contact-details p {
  margin: 7px 0;
  color: rgba(255,255,255,0.88);
}

.contact-details a { color: var(--gold-light); }

.contact-form { align-self: center; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  padding: 15px 14px;
  font: inherit;
  background: rgba(255,255,255,0.96);
  color: var(--black);
}

textarea {
  min-height: 135px;
  resize: vertical;
  margin-bottom: 14px;
}

button {
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 46px;
  background: #000;
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(185,21,20,0.65);
}

.footer img { width: 170px; height: auto; }
.footer p { margin: 0; font-size: 14px; }

@media (max-width: 1250px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 14px; }
  .nav { flex-wrap: wrap; justify-content: flex-start; margin-left: 0; }
  .header-button { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-vision { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 20px; }
  .logo { width: 250px; }
  .nav { gap: 12px; font-size: 11px; }
  .hero { min-height: 620px; background-position: center; }
  .hero-content { padding: 68px 24px; }
  .hero h1 { font-size: 40px; }
  .section { padding: 46px 20px; }
  .service-grid, .split-section, .contact-section, .form-row { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .mv-photo { min-height: 250px; }
  .content-box { padding: 46px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .contact-section { padding: 46px 24px; }
  .footer { flex-direction: column; text-align: center; }
}
