*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #b8960c;
  --gold-lt:   #d4ac2a;
  --dark:      #1a1a1a;
  --mid:       #4a4a4a;
  --light:     #f5f4f0;
  --white:     #ffffff;
  --font-sans: 'Montserrat', sans-serif;
  --font-serif:'Playfair Display', serif;
  --nav-h:     80px;
  --radius:    4px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 90%); margin-inline: auto; }

.btn { display: inline-block; padding: .85rem 2.2rem; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: 2px solid currentColor; border-radius: var(--radius); transition: background .25s, color .25s; cursor: pointer; }
.btn-gold  { color: var(--gold); }
.btn-gold:hover  { background: var(--gold); color: var(--white); }
.btn-white { color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--dark); }

.section-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 80px; background: var(--white); border-bottom: 1px solid rgba(0,0,0,.08); transition: box-shadow .3s; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }
.nav-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--dark); letter-spacing: .02em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { color: var(--white) !important; background: var(--gold); padding: .55rem 1.4rem; border-radius: var(--radius); }
.nav-cta:hover { background: var(--gold-lt) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); padding: 1.5rem 5%; gap: 1rem; border-bottom: 1px solid rgba(0,0,0,.08); z-index: 99; }
.mobile-menu a { font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.mobile-menu.open { display: flex; }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.55) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--white); padding-top: 100px; padding-bottom: 4rem; }
.hero-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: .75rem; }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub { font-size: 1.1rem; max-width: 560px; margin-bottom: 2.5rem; opacity: .9; }

/* ── Services ── */
.services-strip { padding: 5rem 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.service-card-img { height: 180px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 1.25rem; }
.service-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card-body p { font-size: .88rem; color: var(--mid); line-height: 1.6; }

/* ── About ── */
.about { padding: 6rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); }
.about-img-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 60%; height: 60%; border: 4px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about-text p { color: var(--mid); margin-bottom: 1rem; }

/* ── Why ── */
.why { background: var(--dark); color: var(--white); padding: 5rem 0; }
.why .section-label { color: var(--gold-lt); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.why-card { border-top: 2px solid var(--gold); padding-top: 1.25rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.why-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── Process ── */
.process { padding: 5rem 0; background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.process-step { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--white); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.process-step h3 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.process-step p { font-size: .82rem; color: var(--mid); }

/* ── Areas We Serve ── */
.areas { padding: 5rem 0; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.areas-col h3 { font-size: .92rem; font-weight: 700; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold); }
.areas-col ul { list-style: none; }
.areas-col ul li { margin-bottom: .4rem; }
.areas-col ul li a { font-size: .88rem; color: var(--mid); transition: color .2s; }
.areas-col ul li a:hover { color: var(--gold); }

/* ── CTA Banner ── */
.cta-banner { background: var(--gold); color: var(--white); padding: 4rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .75rem; }
.cta-banner p { font-size: 1rem; margin-bottom: 2rem; opacity: .9; }

/* ── Contact ── */
.contact { padding: 6rem 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin: .5rem 0 1rem; }
.contact-info p { color: var(--mid); margin-bottom: 1.5rem; }
.contact-detail { margin-bottom: .5rem; font-size: .95rem; }
.contact-detail strong { color: var(--dark); }
.contact-detail span { color: var(--mid); margin-left: .5rem; }
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid #ddd; border-radius: var(--radius); font-family: var(--font-sans); font-size: .9rem; color: var(--dark); background: var(--white); transition: border-color .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form button { background: var(--gold); color: var(--white); border: none; padding: 1rem; font-family: var(--font-sans); font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--radius); cursor: pointer; transition: background .25s; }
.contact-form button:hover { background: var(--gold-lt); }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: .88rem; margin-top: .75rem; line-height: 1.7; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.footer-logo span { color: var(--gold); }

/* ── Mobile ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
