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

:root {
  --charcoal: #2A2A28;
  --charcoal-light: #4A4A46;
  --ivory: #FAF7F2;
  --card: #FFFFFF;
  --brass: #A8825A;
  --brass-dark: #8C6A46;
  --stone: #8B8680;
  --border: #E4DED3;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); line-height: 1.7; background: var(--ivory); }

a { color: var(--charcoal); }

/* HEADER */
.site-header { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--card); z-index: 100; }
.header-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--charcoal); }
.logo-icon { display:flex; align-items:center; justify-content:center; width:44px; height:44px; background:var(--charcoal); color:var(--ivory); font-family:var(--font-display); font-weight:700; font-size:0.9rem; border-radius:2px; flex-shrink:0; letter-spacing: 0.02em; }
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.01em; white-space: nowrap; color: var(--charcoal); }

.main-nav { display: flex; gap: 36px; }
.main-nav > a { text-decoration: none; color: var(--charcoal-light); font-weight: 500; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 0; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
.main-nav > a:hover, .main-nav > a.active { color: var(--charcoal); border-bottom-color: var(--brass); }

/* DROPDOWN */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 6px; }
.nav-item > a::after { content: '▾'; font-size: 0.65rem; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--card); border: 1px solid var(--border); border-radius: 0 0 4px 4px; box-shadow: 0 12px 32px rgba(42,42,40,0.10); min-width: 250px; padding: 10px 0; z-index: 200; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { display: block; }
.dropdown a { display: block; padding: 11px 22px; text-decoration: none; color: var(--charcoal); font-size: 0.87rem; font-weight: 400; text-transform: none; letter-spacing: normal; border: none !important; font-family: var(--font-body); }
.dropdown a:hover { background: var(--ivory); color: var(--brass-dark); }

@media (max-width: 860px) {
  .nav-item > a::after { margin-left: auto; }
  .dropdown { position: static; display: none; border: none; box-shadow: none; padding-left: 16px; }
  .nav-item.open .dropdown { display: block; }
}

.header-phone { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.2; }
.phone-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); font-weight: 500; }
.phone-number { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--charcoal); transition: color 0.2s; }
.header-phone:hover .phone-number { color: var(--brass-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; }

@media (max-width: 860px) {
  .main-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 8px 24px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
}

/* HERO — photo hugs just the headline; form card layers on top, on its own (non-photo) space below/beside it */
.hero-region { display: grid; }
.hero-region > .hero { grid-column: 1; grid-row: 1; align-self: start; position: relative; background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,20,18,0.82) 0%, rgba(20,20,18,0.62) 45%, rgba(20,20,18,0.30) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 48px 28px; }

.hero-region > .hero-form-wrap { grid-column: 1; grid-row: 1; align-self: start; z-index: 2; max-width: 1240px; margin: 0 auto; width: 100%; padding: 48px 28px; display: flex; justify-content: flex-end; pointer-events: none; }
.hero-form-wrap .hero-form-card { pointer-events: auto; width: 420px; max-width: 100%; }

@media (max-width: 900px) {
  .hero-region { display: block; }
  .hero-inner { padding: 40px 20px; }
  .hero-region > .hero-form-wrap { display: block; padding: 0 20px; margin-top: 24px; }
  .hero-form-wrap .hero-form-card { width: 100%; }
}

.hero-eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.hero-copy { max-width: 620px; }
.hero-copy h1 { font-family: var(--font-display); font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 600; line-height: 1.15; color: #fff; margin-bottom: 8px; letter-spacing: 0.005em; }
.hero-brand-credit { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; text-shadow: 0 1px 4px rgba(0,0,0,0.65); }
.hero-sub { font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,0.88); margin-bottom: 20px; max-width: 480px; line-height: 1.6; }
.hero-phone-link { display: block; width: fit-content; margin: 0 auto; text-align: center; font-family: var(--font-display); font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 700; color: #FFD447; text-decoration: none; border-bottom: 3px solid #FFD447; padding-bottom: 6px; transition: color 0.2s, border-color 0.2s; }
.hero-phone-link:hover { color: #FFEA8A; border-color: #FFEA8A; }

/* FORM CARD */
.hero-form-card { background: var(--card); border-radius: 4px; padding: 34px 34px 38px; box-shadow: 0 24px 60px rgba(0,0,0,0.28); }
.form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; text-align: left; margin-bottom: 6px; color: var(--charcoal); letter-spacing: 0.005em; }
.form-sub { text-align: left; font-size: 0.88rem; color: var(--stone); margin-bottom: 22px; }

.form-box .form-label { display: block; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--charcoal-light); margin: 16px 0 7px; }
.hero-form-card .form-label { display: block; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--charcoal-light); margin: 16px 0 7px; }
.hero-form-card input[type="text"], .hero-form-card input[type="tel"], .hero-form-card input[type="email"], .hero-form-card textarea,
.form-box input[type="text"], .form-box input[type="tel"], .form-box input[type="email"], .form-box textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-body); font-size: 0.92rem; color: var(--charcoal); background: var(--ivory);
}
.hero-form-card textarea, .form-box textarea { resize: vertical; }
.hero-form-card input:focus, .hero-form-card textarea:focus,
.form-box input:focus, .form-box textarea:focus { outline: none; border-color: var(--brass); background: #fff; }

.radio-group { display: flex; flex-direction: column; gap: 9px; background: var(--ivory); border: 1px solid var(--border); padding: 13px 15px; border-radius: 3px; }
.radio-group label { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 400; cursor: pointer; color: var(--charcoal-light); }
.radio-group input { accent-color: var(--brass); width: 15px; height: 15px; }

.form-submit { width: 100%; margin-top: 24px; background: var(--charcoal); color: var(--ivory); border: none; padding: 15px; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--brass-dark); }

.hidden-field { display: none; }

/* TRUST STRIP */
.trust-strip { background: var(--card); border-bottom: 1px solid var(--border); padding: 22px 24px; }
.trust-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal-light); padding: 0 26px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--brass); font-size: 0.9rem; }
@media (max-width: 700px) { .trust-item { border-right: none; padding: 0 14px; } }

/* PAGE LAYOUT — single column, editorial width */
.page-wrap { max-width: 1240px; margin: 0 auto; padding: 64px 28px 80px; }
@media (max-width: 600px) { .page-wrap { padding: 40px 20px 56px; } }
.content-main { max-width: 780px; margin: 0 auto; }

.title-row { margin-bottom: 28px; }
.title-row h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 600; color: var(--charcoal); line-height: 1.25; }
.title-img { width: 100%; height: 340px; object-fit: cover; border-radius: 4px; margin-top: 22px; }
@media (max-width: 600px) { .title-img { height: 220px; } }

.content-main p { margin-bottom: 20px; color: var(--charcoal-light); font-size: 1.02rem; }
.content-main h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 36px 0 16px; color: var(--charcoal); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { padding-left: 30px; position: relative; color: var(--charcoal-light); }
.check-list li::before { content: '—'; position: absolute; left: 0; top: 0; color: var(--brass); font-weight: 700; }

.cta-button { display: inline-block; background: var(--charcoal); color: var(--ivory); text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 17px 40px; border-radius: 3px; transition: background 0.2s; }
.cta-button:hover { background: var(--brass-dark); }

/* FOOTER */
.site-footer { background: var(--charcoal); color: #cfc9c0; text-align: center; padding: 48px 24px 36px; }
.footer-inner p { margin-bottom: 8px; font-size: 0.92rem; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-inner a { color: var(--brass); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
.footer-copy { margin-top: 18px; font-size: 0.76rem; color: #8a857c; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 28px 0 36px; }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--card); transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: 0 16px 40px rgba(42,42,40,0.12); transform: translateY(-2px); }
.service-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.service-card-body { padding: 20px 22px; }
.service-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 0 0 8px; color: var(--charcoal); }
.service-card-body p { font-size: 0.9rem; color: var(--stone); margin: 0; }

/* CONTENT BLOCKS */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin: 40px 0; }
.content-block.reverse .block-img { order: 2; }
@media (max-width: 700px) { .content-block, .content-block.reverse .block-img { grid-template-columns: 1fr; order: initial; } .content-block { grid-template-columns: 1fr; } }
.block-img img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; }
.block-text h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; color: var(--charcoal); }
.block-text p { margin-bottom: 0; }

/* INTERNAL LINK STRIP */
.related-services { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0; }
.related-services a { background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: 10px 20px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; text-decoration: none; color: var(--charcoal); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.related-services a:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

/* CONTACT PAGE */
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.contact-info-list li { font-size: 1.02rem; color: var(--charcoal-light); }
.contact-info-list strong { color: var(--charcoal); }
