/* ═══════════════════════════════════════════════════════════
   SUMMIT BUILDWORKS — SHARED STYLESHEET
   Used by all sub-pages. index.html embeds these styles inline.
═══════════════════════════════════════════════════════════ */

/* DESIGN TOKENS */
:root {
  --cream:    #F5F0E8;
  --cream-dk: #EDE8DE;
  --green:    #1B3A2D;
  --forest:   #2D5A42;
  --gold:     #8B6214;
  --brass:    #C49A3C;
  --iron:     #4A4238;
  --hairline: rgba(27,58,45,0.12);
  --gold-line:rgba(139,98,20,0.25);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--iron); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* LAYOUT */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }

/* TYPOGRAPHY */
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.section-headline { font-family: 'Playfair Display', serif; font-size: clamp(3.2rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.0; letter-spacing: 0.02em; color: var(--green); margin-bottom: 12px; }
.section-sub { font-size: 16px; line-height: 1.72; color: var(--iron); max-width: 560px; }
.accent { color: var(--brass); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; border-radius: 100px; border: 2px solid currentColor; cursor: pointer; transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.btn-gold:hover { background: var(--green); border-color: var(--green); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--cream); }
.btn-outline-cream { background: transparent; color: var(--cream); border-color: rgba(245,240,232,0.55); }
.btn-outline-cream:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.btn-green { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-green:hover { background: var(--gold); border-color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--cream); border-bottom: 1px solid var(--hairline); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 2px 32px rgba(27,58,45,0.1); }
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 72px; }
.nav-links-left { display: flex; align-items: center; gap: 28px; justify-content: flex-end; }
.nav-links-right { display: flex; align-items: center; gap: 28px; justify-content: flex-start; }
.nav-links-left a, .nav-links-right a { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); transition: color 0.2s; }
.nav-links-left a:hover, .nav-links-right a:hover { color: var(--gold); }
.nav-logo { display: flex; justify-content: center; padding: 0 24px; }
.nav-logo img { height: 46px; width: auto; }
.nav-cta { font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase; padding: 9px 18px; border-radius: 100px; border: 2px solid var(--gold); color: var(--gold) !important; transition: background 0.2s, color 0.2s !important; white-space: nowrap; }
.nav-cta:hover { background: var(--gold) !important; color: var(--cream) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--cream); z-index: 199; padding: 100px 40px 48px; flex-direction: column; gap: 0; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--green); padding: 16px 0; border-bottom: 1px solid var(--hairline); transition: color 0.2s; }
.mobile-nav a:last-child { color: var(--gold); border-bottom: none; margin-top: 24px; }
.mobile-nav a:hover { color: var(--gold); }

/* PAGE HERO (sub-pages) */
.page-hero { position: relative; padding: 160px 0 96px; background: var(--green); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(27,58,45,0.96) 0%, rgba(27,58,45,0.78) 55%, rgba(27,58,45,0.55) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 820px; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin-bottom: 24px; }
.page-hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brass); flex-shrink: 0; }
.page-hero-headline { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(52px, 8vw, 100px); line-height: 0.88; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; margin-bottom: 32px; }
.page-hero-headline .hl-gold { color: var(--brass); display: block; }
.page-hero-desc { font-size: 17px; font-weight: 300; line-height: 1.72; color: rgba(245,240,232,0.78); max-width: 520px; margin-bottom: 44px; }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.page-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(245,240,232,0.14); }
.page-hero-stat-val { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--brass); line-height: 1; margin-bottom: 6px; }
.page-hero-stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.45); }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; background: var(--cream-dk); border-bottom: 1px solid var(--hairline); }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--iron); opacity: 0.55; }
.breadcrumb-inner a { transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold); opacity: 1; }
.breadcrumb-inner span { color: var(--gold); opacity: 1; }

/* TICKER (reusable) */
.ticker { background: var(--green); border-top: 3px solid var(--gold); border-bottom: 1px solid rgba(196,154,60,0.2); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 52s linear infinite; width: max-content; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 28px; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,240,232,0.78); flex-shrink: 0; }
.ticker-item.ticker-accent { color: var(--brass); }
.ticker-star { font-size: 9px; color: var(--brass); opacity: 0.8; flex-shrink: 0; }

/* PHOTO BREAK */
.photo-break { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.photo-break-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.photo-break-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,45,0.9) 0%, rgba(27,58,45,0.62) 60%, rgba(74,66,56,0.72) 100%); }
.photo-break-content { position: relative; z-index: 2; text-align: center; padding: 80px 40px; max-width: 900px; }
.photo-break-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 24px; }
.photo-break-headline { font-family: 'Playfair Display', serif; font-size: clamp(44px, 7vw, 88px); font-weight: 900; line-height: 0.9; text-transform: uppercase; color: #fff; letter-spacing: 0.03em; margin-bottom: 28px; }
.photo-break-headline em { font-style: italic; color: var(--brass); }
.photo-break-sub { font-size: 16px; color: rgba(245,240,232,0.65); line-height: 1.7; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.photo-break-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CTA BAND */
.cta-band { background: var(--gold); padding: 80px 0; }
.cta-band-inner { text-align: center; }
.cta-band-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,240,232,0.72); margin-bottom: 20px; display: block; }
.cta-band-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 700; color: var(--cream); line-height: 1.0; margin-bottom: 16px; }
.cta-band-sub { font-size: 16px; color: rgba(245,240,232,0.75); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FORM */
.form-wrap { background: var(--cream); border: 1px solid var(--hairline); padding: 48px 44px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--iron); opacity: 0.65; margin-bottom: 32px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--cream-dk); border: 1px solid var(--hairline); color: var(--iron); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 13px 16px; outline: none; transition: border-color 0.2s; border-radius: 0; appearance: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(74,66,56,0.4); }
.form-textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
.form-note { font-size: 12px; color: var(--iron); opacity: 0.45; margin-top: 16px; line-height: 1.55; text-align: center; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--green); line-height: 1.3; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 22px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-family: 'DM Sans', sans-serif; font-weight: 300; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 24px; font-size: 15px; color: var(--iron); line-height: 1.75; }

/* FOOTER */
.footer { background: var(--green); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 13px; line-height: 1.72; color: rgba(245,240,232,0.45); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-soc-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.footer-soc-btn:hover { border-color: var(--brass); background: rgba(196,154,60,0.1); }
.footer-soc-btn svg { width: 15px; height: 15px; stroke: rgba(245,240,232,0.55); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(245,240,232,0.5); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(245,240,232,0.28); }
.footer-tagline { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); opacity: 0.6; }

/* SHARED RESPONSIVE */
@media (max-width: 1060px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links-left { display: none; }
  .nav-links-right a { display: none; }
  .nav-links-right { display: flex; justify-content: flex-end; align-items: center; }
  .hamburger { display: flex; }
  .nav-logo img { height: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 120px 0 72px; }
  .page-hero-headline { font-size: clamp(48px, 13vw, 80px); }
  .section-headline { font-size: clamp(2.4rem, 8vw, 3.8rem); }
  .page-hero-actions { flex-direction: column; gap: 12px; }
  .page-hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero-stats { gap: 20px; }
  .page-hero-stat-val { font-size: 30px; }
  .photo-break-content { padding: 60px 20px; }
  .photo-break-headline { font-size: clamp(36px, 10vw, 60px); }
  .photo-break-actions { flex-direction: column; gap: 12px; }
  .photo-break-actions .btn { width: 100%; justify-content: center; }
  .cta-band { padding: 64px 0; }
  .cta-band-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
}
