/* RCV Construction — New Pages Stylesheet
   Matches existing staging site design exactly
   Import this in all new pages only */

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

/* ── Variables matching existing site ── */
:root {
  --primary:   #1a2332;
  --accent:    #c9a96e;
  --accent-dk: #a8824a;
  --light:     #f8f6f3;
  --border:    rgba(0,0,0,0.1);
  --text:      #2d2d2d;
  --muted:     #6b7280;
  --white:     #ffffff;
  --nav-h:     70px;
  --max-w:     1200px;
  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 600; }
p  { color: var(--muted); line-height: 1.8; }

/* ── Nav — matches staging site exactly ── */
#nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
}
.nav-logo span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  padding: .5rem .75rem; border-radius: 4px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-menu a:hover { color: var(--accent); background: var(--light); }
.nav-menu a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .6rem; }
.dropdown-list {
  display: none; position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 210px; padding: .4rem 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-list,
.nav-dropdown:focus-within .dropdown-list { display: block; }
.dropdown-list a {
  display: block; padding: .55rem 1.25rem;
  font-size: .82rem; font-weight: 500; color: var(--text);
  transition: color .2s, background .2s;
}
.dropdown-list a:hover { color: var(--accent); background: var(--light); }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  border-radius: 4px !important; padding: .55rem 1.1rem !important;
  font-weight: 700 !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-dk) !important; }
.nav-phone { font-size: .85rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.nav-phone:hover { color: var(--accent); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: all .3s; }

/* ── Page Hero ── */
.page-hero {
  background: var(--primary);
  padding: calc(var(--nav-h) + 4rem) 2rem 4.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 50px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .35rem; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.5);
  margin-bottom: .85rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover, .breadcrumb span { color: var(--accent); }
.page-hero h1 { color: var(--white); margin-bottom: .85rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 580px; }

/* ── Sections ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .6rem;
}
.section-title { margin-bottom: .85rem; }
.section-desc { font-size: 1rem; max-width: 600px; margin-bottom: 2.5rem; }
.section.bg-light { background: var(--light); }
.centered { text-align: center; }
.centered .section-desc { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: .85rem 2rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 4px;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-gold  { background: var(--accent); color: var(--white); }
.btn-gold:hover  { background: var(--accent-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark  { background: var(--primary); color: var(--white); }
.btn-dark:hover  { opacity: .9; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.feature-card {
  background: var(--light); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--primary);
  margin-bottom: .4rem;
}
.feature-card p { font-size: .88rem; }

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1rem; margin-top: 2rem;
}
.process-step { text-align: center; padding: 2rem 1rem; position: relative; }
.process-step::after {
  content: '→'; position: absolute;
  right: -.5rem; top: 2.5rem;
  color: var(--accent); font-size: 1.4rem;
}
.process-step:last-child::after { display: none; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 700;
  color: var(--primary); margin-bottom: .35rem;
}
.process-step p { font-size: .82rem; }

/* ── Photo Gallery ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1rem; margin-top: 2rem;
}
.photo-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.photo-item:hover img { transform: scale(1.05); }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,35,50,.9), transparent);
  color: var(--white); font-size: .8rem; font-weight: 600;
  padding: 1.25rem .85rem .75rem;
  transform: translateY(100%); transition: transform .3s;
}
.photo-item:hover .photo-caption { transform: translateY(0); }

/* ── Two Column ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.two-col img { border-radius: var(--radius); width: 100%; height: 400px; object-fit: cover; }
.compare-img { width: 100%; height: 400px; object-fit: cover; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.testimonial {
  background: var(--light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.75rem;
}
.stars { color: var(--accent); font-size: .95rem; letter-spacing: 2px; margin-bottom: .6rem; }
.testimonial blockquote { font-size: .95rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: .85rem; }
.t-name { font-size: .82rem; font-weight: 700; color: var(--primary); }
.t-loc  { font-size: .78rem; color: var(--muted); }

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
  gap: 2rem; margin: 2.5rem 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--accent); line-height: 1; margin-bottom: .3rem;
}
.stat-lbl { font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.2rem 0; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .98rem; font-weight: 600; color: var(--primary);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.2rem; font-size: .93rem; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── Sidebar Layout ── */
.main-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-box {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.sidebar-box.dark { background: var(--primary); border: none; }
.sidebar-box h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: .85rem;
}
.sidebar-box.dark h5 { color: var(--white); }
.sidebar-box ul li { border-bottom: 1px solid var(--border); }
.sidebar-box ul li:last-child { border: none; }
.sidebar-box ul a {
  display: block; padding: .45rem 0;
  font-size: .85rem; color: var(--text);
  transition: color .2s;
}
.sidebar-box ul a:hover { color: var(--accent); }
.sidebar-box ul a::before { content: '› '; color: var(--accent); }
.sidebar-box.dark ul a { color: rgba(255,255,255,.7); }
.sidebar-box.dark ul a:hover { color: var(--accent); }
.sidebar-box.dark li { border-color: rgba(255,255,255,.1); }
.sidebar-cta-box {
  background: var(--primary); border-radius: var(--radius);
  padding: 1.75rem; text-align: center;
}
.sidebar-cta-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--white); margin-bottom: .4rem;
}
.sidebar-cta-box p { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }
.sidebar-cta-box .btn { width: 100%; text-align: center; display: block; }
.sidebar-phone { display: block; text-align: center; color: rgba(255,255,255,.6); font-size: .82rem; margin-top: .6rem; }

/* ── CTA Banner ── */
.cta-banner { background: var(--primary); padding: 5rem 2rem; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: .85rem; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2rem; }

/* ── Footer — matches staging site ── */
.footer { background: var(--primary); color: rgba(255,255,255,.7); padding: 4rem 2rem 2rem; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 1rem; display: block;
}
.footer-brand .footer-logo span { color: var(--accent); }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 1.1rem; }
.footer-contact p { font-size: .84rem; margin-bottom: .4rem; }
.footer-contact a { color: var(--accent); }
.footer h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.1rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-licenses { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.license-tag {
  font-size: .74rem; font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  padding: .28rem .75rem; border-radius: 3px;
}
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: .77rem; color: rgba(255,255,255,.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-with-sidebar { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col img { height: 280px; }
  .compare-img { height: 280px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.open .dropdown-list { position: static; box-shadow: none; border: none; background: var(--light); display: block; }
  .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
