@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Roboto+Slab:wght@700;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green: #0d2a18;
  --green-2: #123b24;
  --green-3: #0b2014;
  --black: #0d0d0d;
  --gold: #d9a735;
  --gold-2: #f1bd45;
  --cream: #f4f2ea;
  --white: #ffffff;
  --muted: #585858;
  --line: rgba(217, 167, 53, .45);
  --shadow: 0 18px 45px rgba(13, 42, 24, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: #161616;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  height: 94px;
  background: linear-gradient(180deg, #07150d 0%, #0c2517 100%);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo-link { display: flex; align-items: center; gap: 14px; }
.logo {
  width: 284px;
  height: auto;
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--white);
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 32px 0 28px;
  opacity: .94;
}
.nav a:hover,
.nav a.active { color: var(--gold-2); }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
}
.header-cta,
.btn-primary {
  background: linear-gradient(180deg, #f0bb44, #d9a735);
  color: #101010;
  border: 0;
  border-radius: 8px;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 3px 0 rgba(0,0,0,.18);
}
.header-cta { padding: 14px 28px; font-size: 15px; white-space: nowrap; }
.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: white;
  border-radius: 8px;
  font-size: 24px;
}

/* HOME */
.hero {
  min-height: 455px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2,12,7,.93) 0%, rgba(5,18,10,.82) 32%, rgba(5,18,10,.30) 58%, rgba(5,18,10,.05) 100%),
    url('assets/hero-bg.jpg') center right / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 80%, rgba(217,167,53,.18), transparent 30%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -45px;
  height: 112px;
  background: var(--cream);
  clip-path: ellipse(56% 38% at 75% 20%);
  border-top: 6px solid var(--gold);
}
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 100px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0 0 18px;
  max-width: 560px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(56px, 7vw, 92px);
  line-height: .94;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0,0,0,.35);
}
.hero h1 span { color: var(--gold-2); display: block; }
.hero p {
  max-width: 470px;
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.service-area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 1px solid rgba(217, 167, 53, .72);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(8, 25, 15, .68);
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary, .btn-outline {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 16px;
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.75);
  color: white;
  background: rgba(5, 12, 8, .42);
  font-family: Oswald, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-head {
  text-align: center;
  margin: 0 auto 18px;
}
.eyebrow {
  font-family: Oswald, Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 85px;
  height: 2px;
  background: var(--line);
}
.section-head h2 {
  margin: 6px 0 0;
  color: var(--green);
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.services-preview {
  padding: 30px 0 22px;
  background: var(--cream);
}
.services-grid {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.service-card {
  background: white;
  border: 1px solid #d9d3c4;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 4px 11px rgba(0,0,0,.06);
  text-align: center;
  position: relative;
  min-height: 310px;
}
.service-card .photo {
  height: 134px;
  width: 100%;
  object-fit: cover;
}
.service-icon {
  width: 68px;
  height: 68px;
  margin: -39px auto 7px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e3d7b6;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 34px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  margin: 0 auto;
  padding: 0 10px;
  min-height: 62px;
  display: grid;
  place-items: center;
  color: #181818;
  font-family: Oswald, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.02;
  text-transform: uppercase;
}
.gold-dash {
  width: 36px;
  height: 4px;
  border-radius: 50px;
  background: var(--gold);
  margin: 6px auto 15px;
}
.service-card p {
  padding: 0 16px 18px;
  margin: 0;
  color: #333;
  font-size: 13.5px;
  font-weight: 700;
}

.about-strip {
  background: linear-gradient(110deg, var(--green-2) 0%, var(--green-2) 51%, transparent 51%), url('assets/about-sign.jpg') center right / 51% 100% no-repeat;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  min-height: 245px;
  color: var(--white);
}
.about-strip-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 24px;
}
.about-strip-content { max-width: 485px; }
.about-mini {
  margin: 0 0 7px;
  color: var(--gold);
  font-family: Oswald, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 800;
}
.about-strip h2 {
  margin: 0 0 10px;
  font-family: "Roboto Slab", Georgia, serif;
  text-transform: uppercase;
  font-size: clamp(25px, 4vw, 32px);
  line-height: 1.05;
}
.about-strip p {
  margin: 0 0 14px;
  font-size: 15px;
  max-width: 470px;
}
.signature {
  display: inline-block;
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
  transform: rotate(-2deg);
}
.owner { color: white; font-size: 14px; margin-top: 3px; }

.cta-band {
  background: linear-gradient(90deg, #111 0%, #1b1b1b 100%);
  color: white;
  border-bottom: 2px solid var(--gold);
  border-top: 1px solid rgba(217,167,53,.5);
}
.cta-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-left { display: flex; align-items: center; gap: 22px; }
.cta-phone-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 29px;
}
.cta-label { font-family: Oswald, Arial, sans-serif; text-transform: uppercase; }
.cta-label strong { color: var(--gold); font-size: 28px; letter-spacing: .5px; display: block; }
.cta-label span { font-weight: 800; font-size: 18px; letter-spacing: 1px; }
.cta-number {
  padding-left: 38px;
  border-left: 1px solid rgba(217,167,53,.45);
  text-align: center;
  font-family: Oswald, Arial, sans-serif;
}
.cta-number a { color: var(--gold-2); font-size: clamp(36px, 6vw, 54px); font-weight: 800; letter-spacing: 2px; line-height: 1; }
.cta-number span { display: block; text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: 1.2px; }

.footer {
  background: linear-gradient(180deg, var(--green) 0%, #08190f 100%);
  color: white;
  padding: 34px 0 12px;
}
.footer-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .75fr 1fr .5fr;
  gap: 32px;
  align-items: center;
}
.footer-brand { display: flex; gap: 20px; align-items: center; }
.footer-logo { width: 190px; }
.footer-title {
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
}
.footer-tag { color: var(--gold-2); font-size: 15px; margin-top: 7px; font-weight: 700; }
.footer h4 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 4px 0; color: rgba(255,255,255,.82); }
.footer-service p { margin: 0 0 10px; color: rgba(255,255,255,.82); }
.footer-phone { color: var(--gold-2); font-family: Oswald, Arial, sans-serif; font-size: 22px; font-weight: 800; }
.footer-leaf {
  width: 86px;
  height: 86px;
  margin-left: auto;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 38px;
}
.copyright {
  margin-top: 26px;
  text-align: center;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* INNER PAGES */
.page-hero {
  min-height: 285px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  padding: 70px 20px;
  background:
    linear-gradient(90deg, rgba(3,17,9,.9), rgba(3,17,9,.48)),
    url('assets/hero-bg.jpg') center right / cover no-repeat;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 {
  margin: 0 0 10px;
  font-family: "Roboto Slab", Georgia, serif;
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
}
.page-hero p { margin: 0; font-weight: 700; font-size: 20px; max-width: 670px; }
.content-section {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.detail-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2d7be;
}
.detail-card img { height: 240px; width: 100%; object-fit: cover; }
.detail-card-body { padding: 24px; }
.detail-card h2,
.content-card h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 31px;
  line-height: 1.05;
}
.detail-card ul,
.content-card ul { margin: 14px 0 0 18px; padding: 0; }
.detail-card li,
.content-card li { margin: 7px 0; }
.content-card {
  background: white;
  border: 1px solid #e2d7be;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  background: white;
  border: 1px solid #e2d7be;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.gallery-card img { height: 230px; width: 100%; object-fit: cover; }
.gallery-card p {
  margin: 0;
  padding: 15px 18px 17px;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
}
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}
.contact-info .info-line {
  padding: 18px 0;
  border-bottom: 1px solid #e0d6c0;
}
.contact-info strong {
  color: var(--green);
  display: block;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 22px;
}
.form {
  display: grid;
  gap: 14px;
}
.form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--green);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #cfc3a9;
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf8;
}
.form textarea { min-height: 150px; resize: vertical; }
.form .btn-primary { cursor: pointer; width: fit-content; padding: 0 34px; }
.notice {
  background: #fff8e5;
  border: 1px solid #e9cc72;
  color: #4d3910;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 940px) {
  .site-header { height: auto; min-height: 78px; }
  .logo { width: 150px; }
  .menu-button { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #07150d;
    border-bottom: 3px solid var(--gold);
    padding: 16px 22px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; }
  .nav a::after { display: none; }
  .header-cta { display: none; }
  .hero-inner { padding-top: 55px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 295px; }
  .about-strip {
    background: linear-gradient(rgba(18,59,36,.88), rgba(18,59,36,.88)), url('assets/about-sign.jpg') center / cover no-repeat;
  }
  .about-strip-content { max-width: 100%; }
  .cta-inner { flex-direction: column; justify-content: center; text-align: center; padding: 24px 0; }
  .cta-left { flex-direction: column; }
  .cta-number { border-left: 0; padding-left: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .detail-grid, .two-col, .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .header-inner { width: min(100% - 26px, 1180px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-leaf { margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .eyebrow::before, .eyebrow::after { width: 35px; }
}


.services-grid-plus {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1180px;
}
.services-grid-plus .service-card {
  min-height: 318px;
}
.rounded-img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #e2d7be;
  width: 100%;
}


@media (max-width: 1150px) {
  .services-grid-plus { grid-template-columns: repeat(3, 1fr); }
  .logo { width: 245px; }
}
@media (max-width: 760px) {
  .services-grid-plus { grid-template-columns: repeat(2, 1fr); }
  .logo { width: 220px; }
  .footer-logo { width: 150px; }
  .service-area-pill { font-size: 13px; }
}
@media (max-width: 520px) {
  .services-grid-plus { grid-template-columns: 1fr; }
}

/* Explicit text colors for consistent previews and browser rendering */
.hero, .hero h1, .hero p, .nav, .nav a { color: #ffffff; }
.hero h1 span, .nav a:hover, .nav a.active { color: #f1bd45; }
.service-area-pill { color: #f1bd45; }

/* Footer spacing update for the Plus brand name */
.footer-inner {
  grid-template-columns: 1.65fr .65fr 1.05fr .45fr;
  gap: 26px;
}
.footer-logo { width: 142px; }
.footer-title { font-size: 25px; }
.footer-tag { font-size: 13px; }
