/* Heritage Fairway Services 2026 Theme */
:root {
  --hfs-charcoal: #171a1b;
  --hfs-charcoal-soft: #202323;
  --hfs-taupe: #554940;
  --hfs-green: #879a77;
  --hfs-green-deep: #5f7052;
  --hfs-cream: #f3ece2;
  --hfs-cream-light: #fbf7f0;
  --hfs-warm: #c9ad93;
  --hfs-ink: #252321;
  --hfs-muted: #6f6a64;
  --hfs-line: rgba(85, 73, 64, 0.16);
  --hfs-line-light: rgba(255, 255, 255, 0.16);
  --hfs-shadow: 0 22px 70px rgba(26, 28, 29, 0.16);
  --hfs-shadow-soft: 0 16px 44px rgba(26, 28, 29, 0.10);
  --hfs-radius-card: 20px;
  --hfs-radius-button: 12px;
  --hfs-radius-control: 10px;
  --hfs-heading: 'Cormorant Garamond', Georgia, serif;
  --hfs-body: 'Montserrat', Arial, sans-serif;
  --hfs-max: 1240px;
  --hfs-pad: clamp(22px, 4vw, 74px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--hfs-body);
  color: var(--hfs-ink);
  background: var(--hfs-cream-light);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(135, 154, 119, .32); }

.hfs-site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 24px var(--hfs-pad);
  background: linear-gradient(180deg, rgba(23,26,27,.74), rgba(23,26,27,0));
}
.hfs-header-inner {
  max-width: 1460px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.hfs-logo img { width: clamp(210px, 20vw, 340px); height: auto; }
.hfs-main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(18px, 2.2vw, 38px);
}
.hfs-main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.hfs-main-nav a:hover,
.hfs-main-nav a.active { color: var(--hfs-cream); }
.hfs-main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--hfs-green);
}
.hfs-nav-button {
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--hfs-radius-button);
  padding: 0 22px;
  background: rgba(135,154,119,.28);
  backdrop-filter: blur(8px);
}
.hfs-nav-button::after { display: none; }
.hfs-nav-button:hover { background: var(--hfs-green); color: #fff; }
.hfs-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--hfs-radius-button);
  background: rgba(23,26,27,.55);
  padding: 10px;
  cursor: pointer;
}
.hfs-mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hfs-site-footer {
  background: radial-gradient(circle at 18% 0%, rgba(135,154,119,.20), transparent 30%), var(--hfs-charcoal);
  color: rgba(255,255,255,.78);
  padding: 62px var(--hfs-pad) 28px;
}
.hfs-footer-inner {
  max-width: var(--hfs-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
  gap: clamp(30px, 5vw, 70px);
}
.hfs-footer-brand img { width: 220px; margin-bottom: 20px; }
.hfs-footer-brand p { max-width: 380px; margin: 0; }
.hfs-footer-column h2 {
  margin: 0 0 18px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--hfs-body);
}
.hfs-footer-column ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hfs-footer-column a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s ease; }
.hfs-footer-column a:hover { color: #fff; }
.hfs-footer-contact li { display: flex; gap: 10px; align-items: center; }
.hfs-footer-contact img { width: 17px; height: 17px; filter: invert(68%) sepia(12%) saturate(635%) hue-rotate(53deg) brightness(88%) contrast(84%); }
.hfs-footer-mail { color: var(--hfs-green); width: 17px; text-align: center; }
.hfs-footer-bottom {
  max-width: var(--hfs-max);
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hfs-line-light);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.58);
}
.hfs-footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  .hfs-site-header { position: absolute; padding-top: 18px; }
  .hfs-mobile-toggle { display: block; }
  .hfs-main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    padding: 18px;
    background: rgba(23,26,27,.96);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--hfs-radius-card);
    box-shadow: var(--hfs-shadow);
    display: none;
  }
  .hfs-main-nav.open { display: block; }
  .hfs-main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .hfs-main-nav a { justify-content: space-between; padding: 7px 4px; }
  .hfs-nav-button { justify-content: center !important; margin-top: 8px; }
  .hfs-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hfs-logo img { width: 210px; }
  .hfs-footer-inner { grid-template-columns: 1fr; }
  .hfs-footer-bottom { flex-direction: column; }
}
