*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #C4521A; --orange-dark: #8B3A10; --orange-light: #E8712A;
  --cream: #FBF7F2; --warm-white: #FFFFFF; --tan: #F2EAE0;
  --text: #2A1A0A; --text-light: #7A5A3A; --rule: #DDC9B0;
}
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--cream); color: var(--text); line-height: 1.8; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; background: rgba(196,82,26,0.97); border-bottom: 1px solid rgba(255,255,255,0.2); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; text-decoration: underline; }
.nav-links .nav-apply { background: white; color: var(--orange); padding: 0.5rem 1.2rem; font-weight: 700; text-decoration: none !important; }
.nav-links .nav-apply:hover { background: var(--tan); }

.page-hero { position: relative; height: 380px; display: flex; align-items: flex-end; padding-top: 70px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; mix-blend-mode: multiply; }
.page-hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 3rem 4rem; width: 100%; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.page-hero-sub { font-size: 20px; color: rgba(255,255,255,0.85); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 3rem; }
.section-label { font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::after { content: ''; flex: 1; height: 2px; background: var(--orange); max-width: 40px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 2rem; }

.prose-block p { font-size: 20px; line-height: 1.9; color: var(--text); margin-bottom: 1.5rem; max-width: 820px; }

.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.detail-card { background: var(--cream); border-top: 3px solid var(--orange); padding: 1.5rem; }
.detail-label { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.detail-value { font-size: 18px; font-weight: 600; color: var(--text); }

.team-card { display: flex; gap: 3rem; align-items: flex-start; background: white; border-left: 6px solid var(--orange); padding: 2.5rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--orange-dark); margin-bottom: 1rem; }
.team-desc { font-size: 20px; line-height: 1.85; color: var(--text); }

.apply-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--orange); color: white; font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 1.2rem 3rem; text-decoration: none; transition: background 0.2s; }
.apply-btn:hover { background: var(--orange-dark); }
.apply-btn::after { content: '→'; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--rule); padding: 2rem 0; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--orange-dark); margin-bottom: 1rem; }
.faq-a { font-size: 20px; line-height: 1.85; color: var(--text); }

/* TESTIMONIAL FULL */
.testimonial-full { background: white; border-left: 6px solid var(--orange); padding: 2.5rem; margin-bottom: 2rem; }
.testimonial-full-quote { font-size: 20px; line-height: 1.85; color: var(--text); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-full-author { font-size: 18px; font-weight: 700; color: var(--orange-dark); }
.testimonial-full-biz { font-size: 16px; color: var(--text-light); margin-top: 0.3rem; }
.testimonial-full-biz a { color: var(--orange); }

/* CONTACT FORM */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-title { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--text); margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; font-size: 20px; color: var(--text); text-decoration: none; margin-bottom: 1rem; transition: color 0.2s; }
.contact-detail:hover { color: var(--orange); }
.contact-detail-icon { width: 42px; height: 42px; border: 2px solid var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: white; color: var(--orange); }
.form-wrap { background: white; border: 1px solid var(--rule); padding: 3rem; }
.form-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--text); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
input, textarea, select { width: 100%; background: var(--cream); border: 1px solid var(--rule); padding: 1rem 1.2rem; font-family: 'Source Sans 3', sans-serif; font-size: 20px; color: var(--text); outline: none; transition: border-color 0.2s; border-radius: 0; -webkit-appearance: none; }
input:focus, textarea:focus { border-color: var(--orange); }
textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; background: var(--orange); color: white; border: none; padding: 1.1rem; font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--orange-dark); }

footer { background: var(--orange-dark); color: white; padding: 2rem 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.5); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .page-hero-title { font-size: 34px; }
  .detail-grid { grid-template-columns: repeat(2,1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; }
}
