/* Pinewood Park — rebuild 2026. Single stylesheet, no frameworks. */

:root {
  --pine: #16402f;
  --pine-deep: #0e2b20;
  --pine-ink: #0a1f17;
  --cream: #faf7f0;
  --sand: #efe6d3;
  --gold: #c9902e;
  --gold-soft: #e8c877;
  --ink: #20261f;
  --muted: #5c665c;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(10, 31, 23, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { width: min(1140px, 92%); margin: 0 auto; }
.wrap.narrow { width: min(760px, 92%); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--gold); margin-bottom: 0.6rem;
}
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tint { background: var(--sand); }
.section-dark { background: var(--pine-deep); color: var(--cream); }
.section-dark .kicker { color: var(--gold-soft); }
.section-dark a { color: var(--gold-soft); }
.section-lede { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin-bottom: 2.5rem; }
.fineprint { font-size: 0.85rem; color: var(--muted); margin-top: 1.25rem; }
.section-dark .fineprint { color: rgba(250, 247, 240, 0.65); }

/* Buttons */
.btn {
  display: inline-block; padding: 0.85rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--pine-ink); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-call { background: var(--pine); color: #fff; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-call:hover { background: var(--pine-deep); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(250, 247, 240, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 64, 47, 0.1);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--pine); }
.brand-mark { width: 30px; height: 30px; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.05; }
.brand-text em { font-style: normal; color: var(--gold); }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.main-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink); }
.main-nav a:hover { color: var(--pine); text-decoration: underline; text-underline-offset: 4px; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--pine); }

/* Hero */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,23,0.45) 0%, rgba(10,31,23,0.25) 45%, rgba(10,31,23,0.65) 100%); }
.hero-content { position: relative; padding-top: 5rem; }
.hero-kicker { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); font-weight: 600; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin: 1.2rem 0 2rem; max-width: 560px; color: rgba(255,255,255,0.92); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Info bar */
.info-bar { background: var(--pine); color: var(--cream); }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.info-item { padding: 1.1rem 1rem; border-left: 1px solid rgba(250,247,240,0.15); }
.info-item:first-child { border-left: 0; }
.info-label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-soft); font-weight: 600; margin-bottom: 0.15rem; }
.info-item a { color: #fff; text-decoration: none; font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media.stack { display: grid; gap: 1.25rem; }
.split-copy p + p { margin-top: 1rem; }
.split-copy h3 { margin-top: 1.6rem; font-size: 1.25rem; }
.sales-contact { margin-top: 1.5rem; font-weight: 600; }

/* Amenities */
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.amen { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: 0 4px 16px rgba(10,31,23,0.06); }
.amen-icon { font-size: 1.8rem; }
.amen h3 { font-size: 1.15rem; margin: 0.7rem 0 0.4rem; }
.amen p { font-size: 0.95rem; color: var(--muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; height: 300px; object-fit: cover; transition: filter 0.3s ease; }
.gallery img:hover { filter: brightness(1.06); }

/* Rates */
.rate-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.rate-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); border: 2px solid transparent; display: flex; flex-direction: column; }
.rate-card-featured { border-color: var(--gold); }
.rate-card h3 { font-size: 1.5rem; }
.rate-dates { color: var(--muted); font-weight: 500; margin: 0.25rem 0 1rem; }
.rate-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--pine); margin-bottom: 1.25rem; }
.rate-card ul { list-style: none; margin-bottom: 1.75rem; flex: 1; }
.rate-card li { padding: 0.45rem 0 0.45rem 1.7rem; position: relative; border-bottom: 1px solid var(--sand); font-size: 0.97rem; }
.rate-card li::before { content: "✓"; position: absolute; left: 0; color: var(--pine); font-weight: 700; }
.lakeview-note { text-align: center; font-family: var(--font-display); font-size: 1.4rem; color: var(--pine); margin-top: 2.5rem; }

/* Testimonial slider */
.slider { position: relative; margin-top: 2rem; }
.slide { display: none; }
.slide.active { display: block; animation: fade 0.5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }
.slide p { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.5; }
.slide cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 600; color: var(--gold); }
.slide cite::before { content: "— "; }
.slider-dots { display: flex; gap: 0.6rem; margin-top: 1.75rem; justify-content: center; }
.slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(22,64,47,0.2); cursor: pointer; padding: 0; }
.slider-dots button.active { background: var(--pine); }

/* Map */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2rem; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Contact */
.contact-cards { display: grid; gap: 1rem; margin: 1.75rem 0; }
.contact-card { background: rgba(250,247,240,0.06); border: 1px solid rgba(250,247,240,0.15); border-radius: var(--radius); padding: 1.2rem 1.4rem; text-decoration: none; transition: background 0.2s ease; }
.contact-card:hover { background: rgba(250,247,240,0.12); }
.contact-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-soft); font-weight: 600; }
.contact-value { font-size: 1.2rem; font-weight: 600; color: #fff; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 1.1rem; color: var(--ink); }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 0.4rem; padding: 0.8rem 1rem;
  border: 1.5px solid #d8d2c2; border-radius: 8px; font: inherit; background: var(--cream);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--pine); border-color: var(--pine); }
.contact-form textarea { resize: vertical; }

/* Footer */
.site-footer { background: var(--pine-ink); color: rgba(250,247,240,0.8); padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
.footer-nav, .footer-social { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a, .footer-social a { text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold-soft); text-decoration: underline; }
.copyright { font-size: 0.85rem; color: rgba(250,247,240,0.55); }
.back-top { font-size: 0.85rem; color: var(--gold-soft); text-decoration: none; }
.back-top:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--cream); padding: 1rem 4%;
    border-bottom: 1px solid rgba(22,64,47,0.12); gap: 0.9rem;
  }
  .split { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 220px; }
  .rate-cards { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-item:nth-child(3) { border-left: 0; }
  .info-item { border-top: 1px solid rgba(250,247,240,0.15); }
  .info-item:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 560px) {
  .amen-grid { grid-template-columns: 1fr; }
  .btn-call { display: none; }
}
