* { box-sizing: border-box; }
:root {
  --bg: #FAF7F2;      /* light tan / brown background */
  --fg: #3E2C23;      /* dark brown text */
  --text: #2E1C14;    /* deep brown */
  --muted: #7C6F64;   /* muted brown/gray */
  --card: #ffffff;

  --brand: #165E35;   /* pine green */
  --brand-2: #2F855A; /* softer green for buttons */
  --accent: #8B1E1E;  /* rustic red */
}

.pinecone-logo {
  width: 80px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
}
img { width: 100%; height: auto; display: block; border-radius: 16px; }

.container { width: min(1100px, 92%); margin: 0 auto; }

.btn {
  display:inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand-2);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform .05s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid #d6d3d1; /* warm gray line */
}
.header-inner { display:flex; align-items:center; justify-content: space-between; padding: 12px 0; }
.brand { font-weight: 800; letter-spacing: 0.2px; color: var(--brand); }
.nav a { margin-left: 16px; color: var(--fg); text-decoration:none; font-weight: 600; }
.nav .btn { margin-left: 16px; }

.hero {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(139,30,30,0.25), rgba(250,247,242,1)),
    url('images/hottub.jpg');
  background-size: cover;
  background-position: center;
  min-height: 62vh;
  display:flex; align-items:center;
}
.hero .overlay {
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.6), transparent);
}
.hero-inner { position:relative; padding: 72px 0; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 8px; color: var(--brand); }
.hero p { max-width: 650px; color: var(--fg); font-size: 1.125rem; margin: 0 0 18px; }

.section { padding: 64px 0; }
.section.alt { background: #F4ECE6; } /* very light brown section alt */
.center { text-align: center; }
.muted { color: var(--muted); }

.grid-2 { display:grid; gap: 28px; grid-template-columns: 1.2fr 1fr; }
@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid #e7e5e4;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(60,42,33,0.08);
}

.bullets { padding-left: 18px; }
.bullets li { margin-bottom: 8px; }

.amenities {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.amenity {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  border-left: 6px solid var(--accent);
}

.gallery {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.cta {
  background: linear-gradient(135deg, rgba(22,94,53,0.08), rgba(139,30,30,0.08));
}

.site-footer {
  padding: 24px 0;
  background: var(--fg);
  color: #F3F4F6;
  margin-top: 24px;
}
.footer-inner { display:flex; align-items:center; justify-content: space-between; }
.footer-inner a { color:#FCA5A5; text-decoration: none; }

/* MOBILE NAV FIX */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .nav a, .nav .btn {
    margin-left: 0;
    flex: 1 1 auto;
    text-align: center;
  }
}
