/* The Westmoor Group — main.css | Mobile-first, no framework */
:root {
  --green:    #0E3B2E;
  --green-dk: #091f18;
  --gold:     #C6A24C;
  --gold-lt:  #dfc07e;
  --cream:    #F8F4EC;
  --white:    #FFFFFF;
  --text:     #1C1C1C;
  --muted:    #5C5C5C;
  --border:   #E0DDD6;
  --serif:    'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --r:        2px;
  --max:      1140px;
  --max-text: 720px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 1rem; line-height: 1.65; color: var(--text); background: var(--white); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: 2.4rem; font-weight: 400; letter-spacing: .01em; }
h2 { font-size: 1.8rem; font-weight: 400; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p + p { margin-top: .8em; }

/* Skip link */
.skip { position: absolute; top: -100%; left: 16px; padding: 8px 16px; background: var(--gold); color: var(--green-dk); font-weight: 700; z-index: 9999; text-decoration: none; }
.skip:focus { top: 8px; }

/* Draft notice */
.draft-notice { background: #6B3800; color: var(--white); text-align: center; padding: 8px 24px; font-size: .8rem; letter-spacing: .03em; }
.draft-notice a { color: var(--gold-lt); }

/* Layout */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--green); color: var(--white); }
.section--dk2  { background: var(--green-dk); color: var(--white); }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header .eyebrow { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--muted); max-width: var(--max-text); line-height: 1.7; }
.section-header--center p { margin: 0 auto; }
.section--dark .section-header p,
.section--dk2  .section-header p { color: rgba(255,255,255,.85); }
.rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 14px 0 0; }
.rule--center { margin: 14px auto 0; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--sans); font-size: .8rem; font-weight: 600; text-decoration: none; cursor: pointer; border: 1px solid transparent; letter-spacing: .1em; text-transform: uppercase; transition: background .15s, color .15s, border-color .15s; min-height: 44px; }
.btn--gold { background: var(--gold); color: var(--green-dk); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--green-dk); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: var(--green-dk); }
.btn--outline-dark { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline-dark:hover { background: var(--green); color: var(--white); }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 100; background: var(--green); border-bottom: 1px solid rgba(198,162,76,.2); }
.nav__toggle { display: none; }
.nav__top { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 8px 24px; max-width: var(--max); margin: 0 auto; }
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; min-width: 0; }
.nav__logo { width: 42px; height: 42px; border-radius: 2px; flex-shrink: 0; background: var(--cream); padding: 4px; }
.nav__name { font-family: var(--serif); font-size: 1rem; letter-spacing: .05em; color: var(--white); line-height: 1.25; min-width: 0; }
.nav__name small { display: block; font-family: var(--sans); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.nav__burger { display: flex; flex-direction: column; gap: 5px; width: 40px; height: 44px; justify-content: center; padding: 0 8px; cursor: pointer; background: none; border: none; flex-shrink: 0; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__menu { display: none; flex-direction: column; padding: 0 24px 16px; }
.nav__toggle:checked ~ .nav__menu { display: flex; }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(2) { opacity: 0; }
.nav__toggle:checked ~ .nav__top .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__link { display: block; padding: 11px 0; color: rgba(255,255,255,.82); text-decoration: none; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold); }
.nav__cta { display: inline-block; margin-top: 12px; padding: 10px 22px; background: transparent; border: 1px solid var(--gold); color: var(--gold) !important; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; min-height: 44px; line-height: 22px; transition: background .15s, color .15s; border-bottom: 1px solid var(--gold) !important; }
.nav__cta:hover { background: var(--gold); color: var(--green-dk) !important; }
@media (max-width: 382px) {
  .nav__name { font-size: .88rem; letter-spacing: .025em; }
  .nav__name small { font-size: .58rem; letter-spacing: .1em; }
}
@media (max-width: 500px) {
  .booking-grid { grid-template-columns: 1fr !important; }
}
@media(min-width:900px) {
  .nav { padding: 0; }
  .nav__top { min-height: 80px; padding: 0 24px; }
  .nav__burger { display: none; }
  .nav__menu { display: flex !important; flex-direction: row; align-items: center; gap: 24px; padding: 0 24px 0 0; max-width: calc(var(--max) - 300px); margin-left: auto; }
  .nav__link { padding: 0; border: none; font-size: .72rem; }
  .nav__cta { margin-top: 0; padding: 9px 18px; }
}

/* ===================== HERO ===================== */
.hero { background: var(--green); min-height: 88vh; display: flex; align-items: center; padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(198,162,76,.035) 0, rgba(198,162,76,.035) 1px, transparent 1px, transparent 28px); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; max-width: 640px; }
.hero__eyebrow { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero__title { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--white); line-height: 1.08; margin-bottom: 0; }
.hero__rule { display: block; width: 56px; height: 1px; background: var(--gold); margin: 22px 0; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.88); margin-bottom: 36px; line-height: 1.65; max-width: 520px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }
@media(min-width:768px) { .hero__title { font-size: 4rem; } }
@media(min-width:1024px) { .hero__title { font-size: 4.5rem; } }

/* ===================== PAGE HERO (interior) ===================== */
.page-hero { background: var(--green); padding: 72px 0 60px; border-bottom: 1px solid rgba(198,162,76,.2); }
.page-hero__eyebrow { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 700; }
.page-hero__title { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.page-hero__rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 16px 0; }
.page-hero__sub { color: rgba(255,255,255,.85); max-width: 600px; font-size: 1.05rem; line-height: 1.65; }
@media(min-width:768px) { .page-hero__title { font-size: 3rem; } }

/* ===================== SERVICE GRID ===================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
@media(min-width:640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px)  { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card { background: var(--white); padding: 36px 28px; border-top: 2px solid transparent; transition: border-color .2s; }
.service-card:hover { border-top-color: var(--gold); }
.service-card__icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 14px; }
.service-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; }
.section--alt .service-card { background: var(--white); }

/* ===================== VALUES ===================== */
.values-list { display: grid; grid-template-columns: 1fr; gap: 0; }
@media(min-width:640px) { .values-list { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px) { .values-list { grid-template-columns: repeat(3,1fr); } }
.value-item { padding: 28px 32px; border-left: 2px solid rgba(198,162,76,.3); margin-bottom: 20px; }
.value-item h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.value-item p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.section--dark .value-item { border-left-color: var(--gold); }
.section--dark .value-item h3 { color: var(--white); }
.section--dark .value-item p { color: rgba(255,255,255,.82); }

/* ===================== PRICING TABLES ===================== */
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-tables { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media(min-width:1024px) { .pricing-tables { grid-template-columns: 1fr 1fr; gap: 40px; } }
.pricing-block { min-width: 0; }
.pricing-block h3 { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; margin-bottom: 4px; color: var(--green); }
.pricing-block .pricing-desc { font-size: .85rem; color: var(--muted); margin-bottom: 16px; }
.pricing-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table table { width: 100%; border-collapse: collapse; font-size: .845rem; min-width: 380px; }
.pricing-table th { background: var(--green); color: var(--white); padding: 11px 12px; text-align: left; font-family: var(--serif); font-weight: 500; font-size: .82rem; letter-spacing: .03em; white-space: nowrap; }
.pricing-table th:first-child { background: var(--green-dk); min-width: 140px; }
.pricing-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.pricing-table td:first-child { font-weight: 500; color: var(--green); background: var(--cream); font-size: .82rem; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: #F2EEE6; }
.pricing-table tr:hover td:first-child { background: #EAE5DA; }
.pricing-note { margin-top: 12px; font-size: .82rem; color: var(--muted); font-style: italic; }

/* ===================== BIO ===================== */
.bio-block { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media(min-width:768px) { .bio-block { grid-template-columns: 200px 1fr; gap: 56px; } }
.bio-block__photo-wrap { }
.bio-block__photo { width: 180px; height: 180px; border-radius: 2px; background: var(--cream); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .78rem; text-align: center; padding: 12px; line-height: 1.4; }
.bio-block__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 4px; }
.bio-block__title { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.bio-block p { color: var(--text); font-size: .96rem; line-height: 1.7; }

/* ===================== FEATURE LIST ===================== */
.feature-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.feature-list li::before { content: '✦'; color: var(--gold); font-size: .65rem; margin-top: 5px; flex-shrink: 0; }
.section--dark .feature-list li { border-bottom-color: rgba(255,255,255,.07); color: rgba(255,255,255,.82); }

/* ===================== TWO-COL TEXT ===================== */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* ===================== TOOLS / PLACEHOLDERS ===================== */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width:640px) { .tools-grid { grid-template-columns: repeat(3,1fr); } }
.tool-card { padding: 28px; border: 1px solid var(--border); background: var(--white); text-align: center; }
.tool-card h3 { font-family: var(--serif); font-size: 1rem; margin-bottom: 8px; font-weight: 500; }
.tool-card p { font-size: .85rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.tool-card__badge { display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border: 1px solid var(--gold); color: var(--gold); }

/* ===================== CONTACT FORM ===================== */
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media(min-width:768px) { .contact-wrap { grid-template-columns: 2fr 1fr; } }
.contact-form label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 6px; margin-top: 20px; }
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); font-family: var(--sans); font-size: .96rem; color: var(--text); background: var(--white); border-radius: var(--r); transition: border-color .15s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form__submit { margin-top: 28px; }
.contact-info h3 { font-family: var(--serif); font-weight: 500; margin-bottom: 20px; }
.contact-info p { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.contact-info a { color: var(--green); }

/* ===================== CTA BAND ===================== */
.cta-band { background: var(--gold); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--green-dk); margin-bottom: 14px; }
.cta-band p { color: rgba(9,31,24,.75); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; font-size: .97rem; }
.cta-band a.btn { color: var(--green-dk); }

/* ===================== VACATION RENTALS ===================== */
.vr-highlight { background: var(--green); padding: 72px 0; }
.vr-highlight h2 { font-family: var(--serif); font-weight: 400; color: var(--white); margin-bottom: 14px; }
.vr-highlight p { color: rgba(255,255,255,.72); max-width: 560px; margin-bottom: 28px; line-height: 1.65; }
.booking-placeholder { background: rgba(255,255,255,.04); border: 1px solid rgba(198,162,76,.25); padding: 32px; max-width: 680px; margin-top: 16px; }
.booking-placeholder h3 { font-family: var(--serif); font-weight: 400; color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.booking-placeholder .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media(min-width:540px) { .booking-placeholder .row { grid-template-columns: 1fr 1fr 1fr; } }
.booking-placeholder label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold); display: block; margin-bottom: 6px; }
.booking-placeholder input, .booking-placeholder select { width: 100%; padding: 10px 12px; border: 1px solid rgba(198,162,76,.3); background: rgba(255,255,255,.06); color: var(--white); font-family: var(--sans); font-size: .9rem; }
.booking-placeholder input::placeholder { color: rgba(255,255,255,.4); }
.booking-placeholder input:focus, .booking-placeholder select:focus { outline: none; border-color: var(--gold); }
.booking-placeholder select option { background: var(--green-dk); color: var(--white); }
.booking-placeholder .note { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 12px; font-style: italic; }

/* ===================== FOOTER ===================== */
footer { background: var(--green-dk); color: rgba(255,255,255,.75); padding: 56px 0 32px; font-size: .875rem; }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px; }
@media(min-width:768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
footer h4 { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 16px; letter-spacing: .03em; }
footer ul li + li { margin-top: 9px; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer__brand-name { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .06em; color: var(--white); margin-bottom: 6px; }
.footer__tagline { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__desc { line-height: 1.6; max-width: 280px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .8rem; }

/* ===================== HELPERS ===================== */
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
