@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
em, i { font-style: normal !important; }

:root {
  --bronze:    #3d2410;
  --bronze2:   #5a3520;
  --gold:      #c9961a;
  --gold2:     #d4a832;
  --goldlt:    #e8c96a;
  --goldbg:    #faf6ec;
  --champagne: #f5efe3;
  --cream:     #fdfaf5;
  --white:     #ffffff;
  --border:    #e8dfd0;
  --border2:   #d4c8b0;
  --text:      #1a1208;
  --mid:       #4a3d2e;
  --muted:     #8a7a66;
  --ink:       #100c06;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-style: normal;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 76px;
  box-shadow: 0 2px 16px rgba(60,36,16,0.07);
}
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img { height: 54px; width: 54px; object-fit: contain; display: block; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text-wrap strong { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 800; color: var(--bronze); letter-spacing: 2.5px; text-transform: uppercase; }
.logo-text-wrap small { font-size: 8px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
nav ul { display: flex; list-style: none; }
nav ul a { display: block; padding: 10px 15px; font-size: 11.5px; font-weight: 600; color: var(--mid); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
nav ul a:hover, nav ul a.active { color: var(--bronze); border-bottom-color: var(--gold2); }
.nav-cta { padding: 11px 26px; background: var(--bronze); color: var(--goldlt); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border: 2px solid var(--bronze); transition: all 0.2s; white-space: nowrap; }
.nav-cta:hover { background: transparent; color: var(--bronze); }

/* ── LOCATIONS BAR ── */
.locbar { background: var(--bronze); border-bottom: 3px solid var(--gold2); display: flex; align-items: center; padding: 0 52px; flex-wrap: wrap; }
.locbar-label { font-size: 9px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--goldlt); padding: 13px 22px 13px 0; border-right: 1px solid rgba(255,255,255,0.12); margin-right: 22px; flex-shrink: 0; }
.locbar-item { font-size: 12px; color: rgba(255,255,255,0.70); padding: 13px 20px 13px 0; display: flex; align-items: center; gap: 8px; }
.locbar-item::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold2); flex-shrink:0; }

/* ── TICKER ── */
.ticker { background: var(--goldbg); border-bottom: 1px solid var(--border2); overflow: hidden; padding: 11px 0; width: 100%; max-width: 100vw; }
.ticker-track { display: flex; width: max-content; animation: tickroll 40s linear infinite; white-space: nowrap; }
@keyframes tickroll { to { transform: translateX(-50%); } }
.tick-i { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); padding: 0 30px; border-right: 1px solid var(--border2); }
.tick-i::before { content:'◆'; font-size:6px; color:var(--gold2); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 340px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-over { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,18,8,0.72) 0%, rgba(26,18,8,0.88) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 52px; }
.page-hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.page-hero-tag-line { width: 28px; height: 2px; background: var(--gold2); }
.page-hero-tag span { font-size: 9.5px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--goldlt); }
.page-hero h1 { font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; }
.page-hero h1 span { color: var(--goldlt); }

/* ── SECTIONS ── */
.sec { padding: 88px 52px; }
.sec.white { background: var(--white); }
.sec.champagne { background: var(--champagne); }
.sec.cream { background: var(--cream); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.eyebrow-bar { width: 26px; height: 2px; background: var(--gold2); flex-shrink: 0; }
.eyebrow span { font-size: 9.5px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); }
.sh2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--bronze); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; }
.slead { font-size: 16px; color: var(--mid); max-width: 560px; line-height: 1.8; font-weight: 400; }

/* ── BUTTONS ── */
.btn-bronze { display: inline-block; background: var(--bronze); color: var(--goldlt); padding: 13px 32px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.btn-bronze:hover { background: var(--bronze2); }
.btn-gold { display: inline-block; background: var(--gold2); color: var(--ink); padding: 13px 32px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
.btn-gold:hover { background: var(--goldlt); }
.btn-outline { display: inline-block; border: 2px solid var(--border2); color: var(--bronze); padding: 11px 28px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold2); }

/* ── QUOTE BAND ── */
.quote-band { background: var(--champagne); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 52px; text-align: center; }
.quote-band p { font-size: 22px; font-weight: 600; color: var(--bronze); line-height: 1.55; max-width: 800px; margin: 0 auto; }
.quote-band p strong { color: var(--gold); font-weight: 800; }
.quote-cite { display: block; margin-top: 14px; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }

/* ── FULL BLEED IMAGE BAND ── */
.imgband { position: relative; height: 420px; overflow: hidden; }
.imgband img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.imgband-over { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.90) 35%, rgba(26,18,8,0.55) 65%, rgba(26,18,8,0.1) 100%); display: flex; align-items: center; }
.imgband-text { padding: 0 56px; max-width: 580px; }
.imgband-text h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.imgband-text h2 span { color: var(--goldlt); }
.imgband-text p { font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.7; font-weight: 400; max-width: 420px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.svc-card { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.svc-card:hover { background: var(--goldbg); }
.svc-num { font-size: 9.5px; font-weight: 700; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; }
.svc-card h4 { font-size: 15px; font-weight: 700; color: var(--bronze); margin-bottom: 10px; line-height: 1.3; }
.svc-card p { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 400; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.two-col-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }

/* ── PHOTO + CONTENT ── */
.photo-content { display: grid; grid-template-columns: 480px 1fr; gap: 72px; align-items: center; }
.photo-content.reverse { grid-template-columns: 1fr 480px; }
.photo-content img { width: 100%; height: 400px; object-fit: cover; display: block; }
.photo-content.reverse img { order: 2; }
.photo-content.reverse .photo-text { order: 1; }
.photo-text p { font-size: 15px; color: var(--mid); line-height: 1.85; font-weight: 400; margin-bottom: 16px; }
.photo-text strong { color: var(--bronze); font-weight: 700; }

/* ── PILLARS ── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); margin-top: 52px; }
.pillar { padding: 30px 26px; border-right: 1px solid var(--border); background: var(--white); }
.pillar:last-child { border-right: none; }
.pillar-icon { font-size: 22px; margin-bottom: 12px; }
.pillar h4 { font-size: 15px; font-weight: 700; color: var(--bronze); margin-bottom: 9px; }
.pillar p { font-size: 13px; color: var(--mid); line-height: 1.65; font-weight: 400; }

/* ── BULLET LIST ── */
.styled-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.styled-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--mid); line-height: 1.6; font-weight: 400; }
.styled-list li::before { content: '◆'; color: var(--gold2); font-size: 8px; flex-shrink: 0; margin-top: 5px; }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.why-photo { position: sticky; top: 96px; }
.why-photo img { width: 100%; height: 420px; object-fit: cover; display: block; }
.why-photo-foot { background: var(--bronze); padding: 22px 24px; border-bottom: 3px solid var(--gold2); }
.why-foot-title { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--goldlt); margin-bottom: 14px; }
.why-resp { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-resp-num { font-size: 32px; font-weight: 800; color: #ffffff; line-height: 1; }
.why-resp-num sub { font-size: 14px; font-weight: 400; vertical-align: baseline; }
.why-resp-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.why-list { list-style: none; }
.why-item { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.why-item:first-child { padding-top: 0; border-top: 1px solid var(--border); }
.why-n { font-size: 10px; font-weight: 700; color: var(--gold2); letter-spacing: 1px; flex-shrink: 0; min-width: 28px; padding-top: 3px; }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--bronze); margin-bottom: 7px; }
.why-item p { font-size: 13.5px; color: var(--mid); line-height: 1.7; font-weight: 400; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; }
.contact-l { background: var(--bronze); padding: 68px 44px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-l-logo { height: 68px; width: 68px; object-fit: contain; display: block; margin-bottom: 28px; }
.contact-l h2 { font-size: 34px; font-weight: 800; color: #ffffff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.contact-l h2 span { color: var(--goldlt); }
.contact-l p { font-size: 14px; color: rgba(255,255,255,0.60); line-height: 1.75; font-weight: 400; }
.contact-dets { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.cdet-label { font-size: 8.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--goldlt); margin-bottom: 4px; }
.cdet-val { font-size: 13px; color: rgba(255,255,255,0.70); font-weight: 400; }
.contact-r { background: var(--cream); padding: 68px 52px; }
.contact-r h3 { font-size: 24px; font-weight: 800; color: var(--bronze); margin-bottom: 34px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid); }
.fg input, .fg textarea, .fg select { padding: 12px 14px; border: 1.5px solid var(--border2); background: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold2); }
.fg textarea { height: 96px; resize: none; }
.fsend { width: 100%; padding: 15px; background: var(--bronze); color: var(--goldlt); font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; margin-top: 4px; }
.fsend:hover { background: var(--bronze2); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 36px 52px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 3px solid var(--gold2); }
footer p { font-size: 11.5px; color: rgba(255,255,255,0.30); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 11.5px; color: rgba(255,255,255,0.30); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold2); }
