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

:root {
  --green-900: #1f3327;
  --green-800: #294536;
  --green-700: #355a45;
  --cream: #f7f3e8;
  --cream-2: #efe6d3;
  --gold: #d7b56d;
  --white: #ffffff;
  --text: #203026;
  --muted: #657065;
  --border: rgba(31, 51, 39, 0.14);
  --shadow: 0 20px 60px rgba(31, 51, 39, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

body,
button,
input,
textarea {
  font-synthesis-weight: none;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem 6vw;
  background: rgba(247, 243, 232, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--green-900);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream);
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(31, 51, 39, 0.08);
}

.nav-button {
  background: var(--green-900);
  color: var(--cream);
}

.nav-button:hover {
  background: var(--green-800) !important;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 8rem 6vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 51, 39, 0.9), rgba(31, 51, 39, 0.55) 48%, rgba(31, 51, 39, 0.2)),
    url("https://craftsmenpark.com/images/Whitacre.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.kicker,
.section-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.8rem, 7vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: var(--green-900);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.25rem 6vw;
}

.intro-grid,
.section-heading,
.contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.intro-grid p,
.section-heading p,
.contact-card p {
  font-size: 1.08rem;
}

.warm-section {
  max-width: none;
  background: var(--cream-2);
}

.warm-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2rem;
}

.feature-card {
  min-height: 260px;
  padding: 1.45rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(31, 51, 39, 0.07);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: rgba(215, 181, 109, 0.22);
  color: var(--green-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.feature-card p,
.gallery figcaption,
.footer p {
  font-family: Arial, Helvetica, sans-serif;
}

.photo-band {
  min-height: 440px;
  display: flex;
  align-items: end;
  padding: 4rem 6vw;
  background:
    linear-gradient(180deg, rgba(31, 51, 39, 0.12), rgba(31, 51, 39, 0.86)),
    url("https://craftsmenpark.com/images/Grotto.jpg") center / cover no-repeat;
  color: var(--white);
}

.photo-band-text {
  max-width: 720px;
}

.photo-band p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 1rem;
  margin-top: 2rem;
}

figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-row: span 2;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

figure:hover img {
  transform: scale(1.035);
}

figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(247, 243, 232, 0.92);
  color: var(--green-900);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-section {
  max-width: 1120px;
}

.contact-card {
  padding: clamp(1.4rem, 5vw, 3rem);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(215, 181, 109, 0.28), transparent 34%),
    var(--green-900);
  box-shadow: var(--shadow);
}

.contact-card .section-label {
  color: var(--gold);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-details {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details strong,
.contact-details a {
  color: var(--white);
}

.contact-details a {
  font-weight: 800;
}

.footer {
  padding: 2rem 6vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: #17241c;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: 72vh;
    padding-top: 6rem;
    background:
      linear-gradient(180deg, rgba(31, 51, 39, 0.86), rgba(31, 51, 39, 0.5)),
      url("https://craftsmenpark.com/images/Whitacre.jpg") center / cover no-repeat;
  }

  .intro-grid,
  .section-heading,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-large {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0.85rem 4.5vw;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav a {
    padding: 0.55rem 0.65rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 78vh;
    padding: 5rem 4.5vw;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .section {
    padding: 4rem 4.5vw;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .photo-band {
    min-height: 380px;
    padding: 3rem 4.5vw;
  }

  .contact-details {
    padding: 1.1rem;
  }
}
