/* Generated by Frontend Wireframe Engine — Phase 4
   DNA Hash: e48b3762279e
   Client: Squirrel Hollow Golf Course
   Do not edit — regenerate via the engine */

:root {
  /* Typography — transitional-balanced (Lora + Merriweather Sans) */
  --font-heading: 'Lora', serif;
  --font-body: 'Merriweather Sans', sans-serif;
  --scale-ratio: 1.333;
  --heading-weight: 700;
  --heading-case: normal;
  --heading-letterspacing: -0.01em;
  --heading-line-height: 1.1;
  --body-size: 17px;
  --body-weight: 400;
  --body-line-height: 1.7;
  --body-letterspacing: 0.005em;
  --max-line-length: 66ch;

  /* Components — editorial-understated */
  --radius: 0px;
  --shadow: none;
  --border: 1px solid rgba(30, 42, 28, 0.15);
  --hover-duration: 180ms;
  --hover-easing: ease-out;

  /* Color — warm-neutral-editorial (Squirrel Hollow palette: cream + moss + persimmon) */
  --color-bg-base: #F5EFE2;        /* warm cream/oat — primary background */
  --color-bg-warm: #EDE3CC;        /* paper band — secondary surface */
  --color-bg-sand: #E2D5B8;        /* sand/tan — accent surface */
  --color-bg-elevated: #FBF7EC;    /* slightly lighter cream — cards */
  --color-text-primary: #1E2A1C;   /* deep moss-black */
  --color-text-secondary: #4A5A3F; /* muted moss */
  --color-text-muted: #6B7560;     /* low-emphasis */
  --color-moss: #3D5A3A;            /* deep moss green */
  --color-moss-deep: #28401F;      /* darker moss for emphasis */
  --color-sage: #A8B59A;            /* muted sage */
  --color-persimmon: #C75B3C;      /* rust/persimmon — CTAs, Dollar Day */
  --color-persimmon-deep: #A84529; /* hover state */
  --color-mustard: #D9A441;        /* warm gold — league/highlight badges */
  --color-border: rgba(30, 42, 28, 0.18);
  --color-border-soft: rgba(30, 42, 28, 0.10);

  /* Spacing — balanced */
  --spacing-base: 8px;
  --spacing-section: clamp(64px, 9vw, 128px);
  --spacing-content-desktop: 32px;
  --spacing-content-mobile: 16px;
  --spacing-paragraph: 1em;
  --spacing-component: 24px;

  /* Animation — subtle-elegant */
  --transition-speed: 200ms;
  --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --entrance-duration: 600ms;
  --entrance-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --stagger-delay: 80ms;

  /* Layout — editorial-magazine */
  --layout-max-width: 1240px;
  --layout-narrow-width: 720px;
  --layout-whitespace-ratio: 0.42;

  /* Hero archetype — offset-editorial */
  --hero-height: clamp(540px, 80vh, 760px);

  /* Texture — paper-organic (applied via background SVG noise) */
  --texture-paper: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.16  0 0 0 0 0.11  0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ─── Global resets and body ─── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-line-height);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-letterspacing);
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  background-image: var(--texture-paper);
  background-repeat: repeat;
  background-size: 200px 200px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  line-height: var(--heading-line-height);
  letter-spacing: var(--heading-letterspacing);
  margin: 0;
  color: var(--color-text-primary);
}

p { margin: 0 0 var(--spacing-paragraph) 0; }

/* ─── Image placeholders ─── */
.img-placeholder {
  position: relative;
  background-color: var(--color-bg-sand);
  background-image:
    linear-gradient(135deg, rgba(61, 90, 58, 0.20) 0%, rgba(61, 90, 58, 0.04) 100%),
    var(--texture-paper);
  background-size: 100% 100%, 200px 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(30, 42, 28, 0.05) 0px,
      rgba(30, 42, 28, 0.05) 2px,
      transparent 2px,
      transparent 14px);
  pointer-events: none;
}
.img-placeholder__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-moss-deep);
  background-color: rgba(245, 239, 226, 0.94);
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  max-width: 80%;
  text-align: center;
  line-height: 1.4;
}

/* ─── Buttons (button-archetype: underline-reveal, plus one solid primary) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--hover-duration) var(--hover-easing);
  border: none;
  background: transparent;
  color: inherit;
}

/* Underline-reveal default style */
.btn--link {
  padding: 10px 0;
  position: relative;
  color: var(--color-text-primary);
}
.btn--link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 1px;
  background-color: currentColor;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: transform var(--hover-duration) var(--hover-easing);
}
.btn--link:hover::after { transform: scaleX(1); }
.btn--link:hover { font-weight: 600; }

/* Primary solid persimmon — reserved for tee time / book / Dollar Day CTA */
.btn--primary {
  padding: 16px 28px;
  background-color: var(--color-persimmon);
  color: #FBF7EC;
  border: 1px solid var(--color-persimmon);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}
.btn--primary:hover {
  background-color: var(--color-persimmon-deep);
  border-color: var(--color-persimmon-deep);
  transform: translateY(-1px);
}

/* Ghost / outlined secondary */
.btn--ghost {
  padding: 16px 26px;
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}
.btn--ghost:hover { background-color: var(--color-text-primary); color: var(--color-bg-base); }

/* ─── Editorial dividers and labels ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background-color: var(--color-moss);
}

.rule {
  border: 0;
  height: 1px;
  background-color: var(--color-border);
  margin: 0;
}

/* ─── Mobile menu (per skill HARD RULE 8) ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  background-color: var(--color-bg-base);
  background-image: var(--texture-paper);
}
.mobile-menu.is-open { display: flex; }
body.menu-open { overflow: hidden; }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── Animation: subtle-elegant entrance ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--entrance-duration) var(--entrance-easing),
              transform var(--entrance-duration) var(--entrance-easing);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
