/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold:      #d4af37;
  --gold-bg:   #fffbe8;
  --blue:      #6fa8c6;
  --blue-dk:   #4a8aad;
  --blue-bg:   #eaf4f9;
  --navy:      #1b2f3d;
  --navy2:     #0f1e28;
  --white:     #ffffff;
  --cream:     #f7fafb;
  --gray:      #a6a8ab;
  --text:      #1a2a35;
  --muted:     #4a6070;
  --border:    #cce3ef;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }

/* === NAV === */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--navy); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 66px; box-shadow: 0 2px 18px rgba(0,0,0,0.22); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 36px; width: 36px; border-radius: 6px; background: #fff; padding: 3px; object-fit: contain; }
.logo span { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-btn { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 18px; border-radius: 4px; font-weight: 700 !important; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* === HERO === */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, #1e3d52 55%, #2a5470 100%); display: flex; align-items: center; padding: 100px 40px 80px; position: relative; overflow: hidden; }
.hero-img { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.hero-img::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, var(--navy) 5%, transparent 70%); }
.hero-content { max-width: 650px; position: relative; z-index: 1; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.18); border: 1px solid rgba(212,175,55,0.38); color: var(--gold); padding: 7px 16px; border-radius: 30px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.03rem; color: rgba(255,255,255,0.72); max-width: 500px; margin-bottom: 36px; font-weight: 300; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.hero-stats span { font-size: 0.74rem; color: rgba(255,255,255,0.46); letter-spacing: 0.07em; text-transform: uppercase; }

/* === PHOTO STRIP === */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 340px; overflow: hidden; }
.strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.strip img:nth-child(1) { object-position: center 85%; }  /* black door - show door, deck & flowers */
.strip img:nth-child(2) { object-position: center 80%; }  /* living room - show couch */
.strip img:nth-child(3) { object-position: center 55%; }  /* navy craftsman - show full front */

/* === SHARED SECTION === */
section { padding: 84px 40px; }
.wrap { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text); line-height: 1.25; margin-bottom: 14px; }
.lead { font-size: 0.98rem; color: var(--muted); max-width: 580px; line-height: 1.78; font-weight: 300; margin-bottom: 42px; }

/* === CARDS === */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.card { background: var(--blue-bg); border: 1px solid var(--border); border-radius: 10px; padding: 26px 22px; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(111,168,198,0.14); }
.card:hover::after { transform: scaleX(1); }
.icon { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.card h3 { font-size: 0.97rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* === DARK OFFER SECTION === */
.offer { background: var(--navy); }
.offer h2 { color: #fff; }
.offer .lead { color: rgba(255,255,255,0.58); }
.offer .eyebrow { color: var(--gold); }
.dark-grid { gap: 1px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.dark-card { background: rgba(255,255,255,0.03); padding: 30px 26px; transition: background 0.2s; }
.dark-card:hover { background: rgba(255,255,255,0.08); }
.dicon { width: 40px; height: 40px; background: rgba(111,168,198,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 16px; }
.dark-card h3 { font-size: 0.97rem; font-weight: 600; color: #fff; margin-bottom: 7px; }
.dark-card p { font-size: 0.85rem; color: rgba(255,255,255,0.52); line-height: 1.65; }

/* === HOW IT WORKS === */
.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 48px; position: relative; }
.steps::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-n { width: 60px; height: 60px; border-radius: 50%; background: var(--blue); color: #fff; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(111,168,198,0.32); }
.step h3 { font-size: 0.93rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* === ABOUT PREVIEW === */
.about-prev { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
blockquote { background: var(--blue-bg); border-left: 4px solid var(--blue); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0 24px; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); font-style: italic; line-height: 1.5; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 14px; object-fit: cover; object-position: center top; height: 540px; display: block; box-shadow: 0 12px 40px rgba(27,47,61,0.14); }
.founder-tag { position: absolute; bottom: -14px; right: -14px; background: var(--gold); color: var(--navy); border-radius: 10px; padding: 14px 18px; box-shadow: 0 8px 22px rgba(212,175,55,0.35); }
.founder-tag strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.founder-tag span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }

/* === CTA === */
.cta { background: var(--gold); text-align: center; padding: 68px 40px; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cta p { color: rgba(27,47,61,0.7); margin-bottom: 28px; font-size: 1rem; }

/* === PAGE HERO (inner pages) === */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1e3d52 55%, #2a5470 100%); padding: 136px 40px 76px; text-align: center; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.page-hero p { color: rgba(255,255,255,0.66); font-size: 1.02rem; font-weight: 300; max-width: 500px; margin: 0 auto; }

/* === BUTTONS === */
.btn-gold { background: var(--gold); color: var(--navy); padding: 13px 30px; border-radius: 4px; font-weight: 700; font-size: 0.93rem; text-decoration: none; display: inline-block; transition: transform 0.15s, box-shadow 0.15s; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(212,175,55,0.4); }
.btn-ghost { border: 2px solid rgba(255,255,255,0.38); color: #fff; padding: 13px 30px; border-radius: 4px; font-weight: 500; font-size: 0.93rem; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: #fff; padding: 14px 34px; border-radius: 4px; font-weight: 700; font-size: 0.93rem; text-decoration: none; display: inline-block; transition: transform 0.15s; }
.btn-navy:hover { transform: translateY(-2px); }

/* === FOOTER === */
footer { background: var(--navy2); padding: 52px 40px 28px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 36px; }
.foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.foot-logo img { height: 32px; width: 32px; border-radius: 5px; background: #fff; padding: 2px; object-fit: contain; }
.foot-logo span { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; }
.foot-logo em { color: var(--gold); font-style: normal; }
footer .foot-grid > div > p { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
footer h4 { color: #fff; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul a { color: rgba(255,255,255,0.42); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
footer ul a:hover { color: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; font-size: 0.76rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 8px; }

/* === ABOUT PAGE === */
.founder-grid { display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; }
.founder-photo img { width: 100%; border-radius: 14px; object-fit: cover; object-position: center top; height: 570px; box-shadow: 0 12px 40px rgba(27,47,61,0.14); }
.founder-badge { display: flex; align-items: center; background: var(--gold); color: var(--navy); border-radius: 8px; padding: 16px 20px; margin-top: 16px; }
.founder-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.founder-badge span { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
.founder-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.pull-quote { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); border-left: 4px solid var(--gold); padding: 14px 20px; margin: 22px 0; line-height: 1.5; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { background: var(--blue-bg); color: var(--blue-dk); font-size: 0.73rem; padding: 5px 12px; border-radius: 20px; font-weight: 500; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.mission-card { text-align: center; padding: 32px 20px; border: 1px solid var(--border); border-radius: 10px; background: var(--blue-bg); }
.mission-card .mi-badge { width: 44px; height: 44px; border-radius: 8px; background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; letter-spacing: 0.02em; }
.mission-card h3 { font-size: 0.97rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.mission-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.creds-band { background: var(--navy); padding: 56px 40px; }
.creds-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.cred-num { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 700; color: var(--gold); }
.cred-label { font-size: 0.77rem; color: rgba(255,255,255,0.5); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 4px; }

/* === SERVICES PAGE === */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.svc-card { background: #fff; border-radius: 10px; padding: 32px 26px; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(111,168,198,0.12); }
.svc-tag { display: inline-block; background: var(--blue-bg); color: var(--blue-dk); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.svc-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.svc-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.svc-card ul { margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-card ul li { font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.svc-card ul li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.avail-band { background: var(--navy); padding: 80px 40px; }
.avail-band h2 { color: #fff; }
.avail-band .lead { color: rgba(255,255,255,0.58); }
.avail-band .eyebrow { color: var(--gold); }
.avail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 0; }
.avail-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 32px 24px; text-align: center; transition: background 0.2s; }
.avail-card:hover { background: rgba(255,255,255,0.1); }
.avail-card .ai { font-size: 2.1rem; margin-bottom: 12px; }
.avail-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.avail-card p { font-size: 0.86rem; color: rgba(255,255,255,0.56); line-height: 1.65; margin-bottom: 18px; }
.avail-btn { display: inline-block; background: var(--gold); color: var(--navy); padding: 10px 20px; border-radius: 4px; font-weight: 700; font-size: 0.84rem; text-decoration: none; transition: opacity 0.2s; }
.avail-btn:hover { opacity: 0.88; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px 26px; }
.faq-item h4 { font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.faq-item p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* === CONTACT PAGE === */
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.contact-info > p { font-size: 0.94rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.c-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.c-icon { width: 42px; height: 42px; min-width: 42px; background: var(--blue-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.c-item h4 { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-item a, .c-item p { font-size: 0.92rem; color: var(--text); font-weight: 500; text-decoration: none; margin: 0; }
.c-item a:hover { color: var(--blue-dk); }
.resp-note { background: var(--gold-bg); border: 1px solid rgba(212,175,55,0.25); border-radius: 8px; padding: 16px 20px; margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.resp-note p { font-size: 0.86rem; color: var(--text); margin: 0; line-height: 1.5; }
.resp-note strong { color: var(--gold); }
.form-box { background: #fff; border-radius: 12px; padding: 42px 36px; box-shadow: 0 4px 30px rgba(111,168,198,0.1); }
.form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 26px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.91rem; color: var(--text); background: var(--cream); transition: border-color 0.2s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); background: #fff; }
.fg textarea { resize: vertical; min-height: 110px; }
.submit-btn { width: 100%; padding: 13px; background: var(--navy); color: #fff; border: none; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.96rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 6px; }
.submit-btn:hover { background: var(--blue-dk); transform: translateY(-1px); }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 11px; }

/* === RESPONSIVE === */
@media (max-width: 820px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--navy); padding: 16px 24px; gap: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 60px 20px; }
  .hero { padding: 96px 20px 60px; }
  .hero-img { display: none; }
  .about-grid, .about-prev .about-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .strip { grid-template-columns: 1fr; height: auto; }
  .strip img { height: 180px; }
  .founder-tag { right: 10px; bottom: 10px; }
  .f-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 20px; }
  .mission-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 20px 60px; }
  .cta, .avail-band, .creds-band { padding: 56px 20px; }
  footer { padding: 40px 20px 24px; }
}
