
/* ═══════════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #FAF7F2;
  color: #1E1610;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --bg:          #FAF7F2;
  --bg-alt:      #F5F0E8;
  --bg-card:     #FFFFFF;
  --sand:        #EDE6D8;
  --sand-mid:    #E2D8C8;
  --sand-deep:   #CBBFA8;
  --text:        #1E1610;
  --text-mid:    #4A3F32;
  --text-muted:  #8C7E6E;
  --text-light:  #B8AC9C;
  --accent:      #C8562A;
  --accent-dark: #A83E18;
  --accent-light:#E07050;
  --accent-bg:   rgba(200,86,42,0.07);
  --white:       #FFFFFF;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --r:           10px;
  --sh-sm:       0 2px 14px rgba(30,22,16,0.07);
  --sh-md:       0 8px 36px rgba(30,22,16,0.10);
  --sh-lg:       0 20px 64px rgba(30,22,16,0.14);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container { max-width: 1260px; margin: 0 auto; padding: 0 44px; }
.section-wrap { padding: 88px 0; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 1.5px; background: var(--accent);
  border-radius: 1px;
}
h2.stitle {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500; line-height: 1.14;
  color: var(--text); letter-spacing: -0.01em;
}
h2.stitle em { font-style: italic; color: var(--accent); }
.sdesc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 300;
  color: var(--text-muted); line-height: 1.78;
  letter-spacing: 0.03em; max-width: 420px;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 44px; gap: 24px;
}
.shd-left { display: flex; flex-direction: column; gap: 10px; }
.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Jost'; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  transition: gap 0.3s var(--ease);
}
.link-more:hover { gap: 12px; }
.link-more svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Jost'; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 0; cursor: pointer; border: none;
  transition: all 0.32s var(--ease); white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  padding: 13px 30px;
  background: #1E1610; color: var(--white);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline {
  padding: 12px 28px;
  background: transparent; color: #1E1610;
  border: 1.5px solid #1E1610;
}
.btn-outline:hover { background: #1E1610; color: var(--white); transform: translateY(-2px); }
.btn-hero-light {
  padding: 12px 28px;
  background: rgba(255,255,255,0.13); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.38);
  backdrop-filter: blur(6px);
}
.btn-hero-light:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 10.5px; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.07s} .d2{transition-delay:.14s} .d3{transition-delay:.21s}
.d4{transition-delay:.28s} .d5{transition-delay:.35s} .d6{transition-delay:.42s}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px; display: flex; align-items: center;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: height 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  height: 58px;
  background: rgba(248,244,237,0.97);
  box-shadow: 0 4px 28px rgba(30,22,16,0.07);
}
.nav-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 44px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.nav-logo {
  font-family: 'Cormorant Upright', serif;
  font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.nav-logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-muted); position: relative;
  transition: color 0.28s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1.5px; background: var(--text);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--text);
  border-radius: 2px; transition: all 0.35s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: 62px; left: 0; right: 0; z-index: 190;
  background: rgba(250,247,242,0.98);
  backdrop-filter: blur(20px);
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s;
  box-shadow: 0 12px 40px rgba(30,22,16,0.10);
}
.mobile-menu.open { max-height: 360px; padding: 20px 0; }
.mobile-menu-inner { max-width: 1260px; margin: 0 auto; padding: 0 28px; display: flex; flex-direction: column; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(200,192,180,0.3);
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu a:hover { color: var(--text); padding-left: 8px; }
.mobile-menu .mob-cta { margin-top: 18px; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative; height: 560px; margin-top: 62px;
  overflow: hidden;
}
.hero-track {
  display: flex; width: 400%; height: 100%;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-slide { width: 25%; height: 100%; position: relative; flex-shrink: 0; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hs1 { background-image: url('https://www.crestremodeling.com/wp-content/uploads/2026/03/74f558_993f041afc4045c69c824d6022d78ca0mv2_d_4000_2667_s_4_2.avif'); }
.hs2 { background-image: url('https://www.crestremodeling.com/wp-content/uploads/2026/03/74f558_4ef3f401e4a2400a8979c42d1a7ba1a7mv2_d_5760_3840_s_4_2.avif'); }
.hs3 { background-image: url('https://www.crestremodeling.com/wp-content/uploads/2026/03/74f558_9b1cc2c7424d47bf83b890c15ed8127fmv2_d_5625_3750_s_4_2.avif'); }
.hs4 { background-image: url('https://www.crestremodeling.com/wp-content/uploads/2026/03/efa0f8259ee7477e92be257c19f8b3b9.avif'); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(14,8,4,0.68) 0%, rgba(14,8,4,0.38) 50%, rgba(14,8,4,0.18) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}
.hero-eyebrow span { display: inline-block; width: 34px; height: 1px; background: rgba(255,255,255,0.35); }
.hero-title {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(38px, 6.8vw, 76px); font-weight: 500;
  line-height: 1.08; color: #FFFFFF; letter-spacing: -0.01em;
  max-width: 820px; margin-bottom: 16px;
  opacity: 0; animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: rgba(255,185,140,0.9); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300;
  color: rgba(255,255,255,0.62); letter-spacing: 0.04em;
  margin-bottom: 38px;
  opacity: 0; animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp 1s 0.9s var(--ease-out) forwards;
}
.hero-ctrl {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: 18px;
}
.hero-dots { display: flex; gap: 7px; align-items: center; }
.hero-dot {
  width: 26px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.28); cursor: pointer;
  transition: all 0.4s var(--ease);
}
.hero-dot.active { width: 50px; background: #ffffff; }
.hero-num { font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.42); }
.hero-num strong { color: rgba(255,255,255,0.78); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
  cursor: pointer; color: white; transition: all 0.3s var(--ease);
}
.hero-arrow:hover { background: rgba(255,255,255,0.22); }
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* ═══════════════════════════════════════════════════
   TRUST STRIP (marquee — areas served)
═══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 18px 0 20px;
  overflow: hidden;
}
.trust-lbl {
  text-align: center; font-size: 9.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 16px;
}
.trust-marquee { overflow: hidden; }
.trust-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  font-family: 'Cormorant Upright', serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); opacity: 0.22; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   INTRO STRIP
═══════════════════════════════════════════════════ */
.intro-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 28px 0;
}
.intro-inner { display: flex; align-items: center; gap: 28px; }
.intro-badge {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-bg); border: 2px solid var(--sand-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.intro-badge svg { width: 30px; height: 30px; color: var(--accent); }
.intro-info { display: flex; flex-direction: column; gap: 3px; }
.intro-name {
  font-family: 'Cormorant Upright', serif;
  font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: 0.04em;
}
.intro-role {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
}
.intro-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 300; font-style: italic;
  color: var(--text-muted); margin-top: 4px; letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION (4-grid cards)
═══════════════════════════════════════════════════ */
.services-section { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative; border-radius: var(--r);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.svc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.75s var(--ease);
}
.svc-card:hover .svc-bg { transform: scale(1.07); }
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,8,4,0.90) 0%, rgba(14,8,4,0.30) 55%, rgba(14,8,4,0.08) 100%);
  transition: background 0.45s;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(14,8,4,0.95) 0%, rgba(14,8,4,0.52) 65%, rgba(14,8,4,0.18) 100%);
}
.svc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 20px; z-index: 1;
}
.svc-num {
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 6px; display: block;
}
.svc-name {
  font-family: 'Cormorant Upright', serif;
  font-size: 22px; font-weight: 500; color: #fff; line-height: 1.2;
}
.svc-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14.5px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.6;
  margin-top: 6px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}
.svc-card:hover .svc-desc { max-height: 70px; opacity: 1; }

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.hiw-section {
  background: var(--bg-card);
  border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand);
  padding: 72px 0;
}
.hiw-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 52px; gap: 24px;
}
.hiw-top-left { display: flex; flex-direction: column; gap: 8px; }
.hiw-label { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-light); }
.hiw-title { font-family: 'Cormorant Upright', serif; font-size: clamp(26px, 3vw, 38px); font-weight: 500; color: var(--text); line-height: 1.1; }
.hiw-title em { font-style: italic; color: var(--accent); }
.hiw-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); border: 1.5px solid var(--text); padding: 11px 24px; border-radius: 0;
  transition: all 0.3s var(--ease); white-space: nowrap; flex-shrink: 0;
}
.hiw-cta svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.hiw-cta:hover { background: var(--text); color: var(--white); }
.hiw-cta:hover svg { transform: translateX(4px); }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.hiw-step {
  padding: 28px 28px 28px 0; border-left: 1px solid var(--sand); padding-left: 28px; position: relative;
}
.hiw-step:first-child { border-left: none; padding-left: 0; }
.hiw-step-num { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 14px; display: block; }
.hiw-step-name { font-family: 'Cormorant Upright', serif; font-size: 18px; font-weight: 500; color: var(--text); line-height: 1.2; margin-bottom: 10px; }
.hiw-step-desc { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.72; letter-spacing: 0.02em; }

/* ═══════════════════════════════════════════════════
   WHY US — feature rows
═══════════════════════════════════════════════════ */
.why-section { background: var(--bg); }
.why-list { display: flex; flex-direction: column; }
.why-row {
  display: grid; grid-template-columns: 240px 1fr auto;
  align-items: start; gap: 48px;
  padding: 34px 0; border-top: 1px solid var(--sand);
}
.why-row:last-child { border-bottom: 1px solid var(--sand); }
.why-left { display: flex; align-items: flex-start; gap: 14px; padding-top: 4px; flex-shrink: 0; }
.why-num { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; color: var(--accent); font-family: 'Jost', sans-serif; flex-shrink: 0; padding-top: 6px; }
.why-name { font-family: 'Cormorant Upright', serif; font-size: clamp(22px, 2.5vw, 34px); font-weight: 500; color: var(--text); line-height: 1.1; }
.why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.72; padding-top: 8px; font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 16px; max-width: 480px; }
.why-icon {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; flex-shrink: 0; padding-top: 8px;
}
.why-icon svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════ */
.contact-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; font-style: italic;
  color: var(--text-muted); line-height: 1.72; letter-spacing: 0.03em;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.contact-detail svg { width: 15px; height: 15px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.contact-detail-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-detail-text strong { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 3px; font-weight: 500; }
.contact-areas {
  padding: 20px; background: var(--bg-card); border: 1px solid var(--sand);
}
.contact-areas-label { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.contact-areas-list { font-size: 13.5px; color: var(--text-muted); line-height: 1.9; font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px; background: var(--bg-card);
  border: 1.5px solid var(--sand-mid); color: var(--text);
  font-family: 'Jost'; font-size: 13.5px; outline: none;
  transition: border-color 0.3s; border-radius: 0;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-section { background: var(--bg-card); border-top: 1px solid var(--sand); padding: 72px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; gap: 20px;
}
.faq-q-text { font-family: 'Cormorant Upright', serif; font-size: 17px; font-weight: 500; color: var(--text); line-height: 1.3; }
.faq-toggle { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  font-family: 'Cormorant Garamond', serif; font-size: 15.5px; font-weight: 300;
  color: var(--text-muted); line-height: 1.78; letter-spacing: 0.02em;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s, opacity 0.3s;
  opacity: 0; padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 200px; opacity: 1; padding-bottom: 22px; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer { background: var(--sand); padding: 72px 0 0; border-top: 1px solid var(--sand-mid); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--sand-mid);
}
.footer-logo {
  font-family: 'Cormorant Upright', serif; font-size: 21px; font-weight: 700;
  color: var(--text); letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.footer-logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.footer-desc { font-family: 'Cormorant Garamond', serif; font-size: 15.5px; font-weight: 300; line-height: 1.78; color: var(--text-muted); letter-spacing: 0.03em; margin-bottom: 22px; }
.footer-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.3s; }
.footer-phone:hover { color: var(--text); }
.footer-phone svg { width: 14px; height: 14px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-social { width: 34px; height: 34px; border-radius: 50%; background: rgba(30,22,16,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.footer-social:hover { background: var(--text); color: white; transform: translateY(-2px); }
.footer-social svg { width: 13px; height: 13px; }
.footer-col-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); transition: color 0.25s, padding-left 0.25s; }
.footer-links a:hover { color: var(--text-mid); padding-left: 6px; }
.nl-form { display: flex; }
.nl-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.7); border: 1.5px solid var(--sand-deep); border-right: none; border-radius: 0; color: var(--text); font-family: 'Jost'; font-size: 13px; outline: none; transition: border-color 0.3s; }
.nl-input::placeholder { color: var(--text-light); }
.nl-input:focus { border-color: var(--text); }
.nl-btn { padding: 12px 16px; background: var(--text); border: none; border-radius: 0; color: white; cursor: pointer; transition: background 0.3s; }
.nl-btn:hover { background: var(--text-mid); }
.nl-btn svg { width: 15px; height: 15px; display: block; }
.nl-note { margin-top: 10px; font-size: 11px; color: var(--text-light); line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container, .nav-inner { padding-left: 28px; padding-right: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .hiw-step:nth-child(3) { border-left: none; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 200px 1fr; }
  .why-icon { display: none; }
}
@media (max-width: 768px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .section-wrap { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero { height: 480px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; gap: 12px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-left: none !important; padding-left: 0 !important; border-top: 1px solid var(--sand); padding-top: 24px; }
  .hiw-step:first-child { border-top: none; padding-top: 0; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
  .container, .nav-inner { padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-card { aspect-ratio: 1/1; }
  .hero-btns { align-items: stretch; }
  .hero-btns .btn { max-width: 100%; }
}


/* ════════════════════════════════════
   SERVICES PAGE STYLES
════════════════════════════════════ */
/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 62px;
  display: flex; align-items: center;
  background: rgba(250,247,242,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: height 0.4s var(--ease), background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled { height: 58px; background: rgba(248,244,237,0.97); box-shadow: 0 4px 28px rgba(30,22,16,0.07); }
.nav-inner { max-width: 1260px; margin: 0 auto; padding: 0 44px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav-logo { font-family: 'Cormorant Upright', serif; font-size: 20px; font-weight: 700; color: var(--text); letter-spacing: 0.1em; display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.nav-logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-muted); position: relative; transition: color 0.28s; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1.5px; background: var(--text); transform: scaleX(0); transform-origin: left; transition: transform 0.32s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.35s var(--ease); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 62px; left: 0; right: 0; z-index: 190; background: rgba(250,247,242,0.98); backdrop-filter: blur(20px); padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), padding 0.35s; box-shadow: 0 12px 40px rgba(30,22,16,0.10); }
.mobile-menu.open { max-height: 360px; padding: 20px 0; }
.mobile-menu-inner { max-width: 1260px; margin: 0 auto; padding: 0 28px; display: flex; flex-direction: column; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); border-bottom: 1px solid rgba(200,192,180,0.3); transition: color 0.25s, padding-left 0.25s; }
.mobile-menu a:hover { color: var(--text); padding-left: 8px; }
.mobile-menu .mob-cta { margin-top: 18px; }

/* ── PAGE HERO (static) ── */
.page-hero {
  margin-top: 62px; height: 420px;
  position: relative; overflow: hidden;
  background-image: url('https://www.crestremodeling.com/wp-content/uploads/2026/03/84770f_d8d01f48d794443c8237018af974c192mv2.avif');
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(14,8,4,0.72) 0%, rgba(14,8,4,0.42) 55%, rgba(14,8,4,0.2) 100%);
}
.page-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}
.page-hero-eyebrow span { display: inline-block; width: 34px; height: 1px; background: rgba(255,255,255,0.35); }
.page-hero-title {
  font-family: 'Cormorant Upright', serif;
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 500;
  line-height: 1.1; color: #FFFFFF; letter-spacing: -0.01em;
  max-width: 700px; margin-bottom: 14px;
  opacity: 0; animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}
.page-hero-title em { font-style: italic; color: rgba(255,185,140,0.9); }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.62); letter-spacing: 0.04em;
  opacity: 0; animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}

/* ── SERVICES LIST (full rows) ── */
.services-full { background: var(--bg); }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 460px; border-bottom: 1px solid var(--sand);
}
.service-row:nth-child(even) .service-img { order: 2; }
.service-row:nth-child(even) .service-content { order: 1; }
.service-img {
  position: relative; overflow: hidden; min-height: 380px;
}
.service-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.85s var(--ease);
}
.service-row:hover .service-img-bg { transform: scale(1.04); }
.service-content {
  padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; gap: 20px;
  background: var(--bg-card);
}
.service-num { font-size: 10px; font-weight: 600; letter-spacing: 0.26em; color: var(--accent); text-transform: uppercase; }
.service-name { font-family: 'Cormorant Upright', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 500; color: var(--text); line-height: 1.1; }
.service-name em { font-style: italic; color: var(--accent); }
.service-desc { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; color: var(--text-muted); line-height: 1.8; letter-spacing: 0.02em; max-width: 420px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }
.service-feature::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── SERVICES GRID (small cards at top) ── */
.services-mini { background: var(--bg-alt); }
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mini-card {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.mini-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.75s var(--ease); }
.mini-card:hover .mini-bg { transform: scale(1.07); }
.mini-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,8,4,0.90) 0%, rgba(14,8,4,0.30) 55%, rgba(14,8,4,0.08) 100%); transition: background 0.45s; }
.mini-card:hover .mini-overlay { background: linear-gradient(to top, rgba(14,8,4,0.95) 0%, rgba(14,8,4,0.52) 65%, rgba(14,8,4,0.18) 100%); }
.mini-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 1; }
.mini-num { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 5px; display: block; }
.mini-name { font-family: 'Cormorant Upright', serif; font-size: 20px; font-weight: 500; color: #fff; line-height: 1.2; }
.mini-desc { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; margin-top: 6px; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), opacity 0.4s; opacity: 0; }
.mini-card:hover .mini-desc { max-height: 60px; opacity: 1; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--text); padding: 80px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-left { display: flex; flex-direction: column; gap: 10px; }
.cta-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-light); }
.cta-title { font-family: 'Cormorant Upright', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 500; color: #fff; line-height: 1.1; }
.cta-title em { font-style: italic; color: rgba(255,185,140,0.9); }
.cta-sub { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.72; max-width: 460px; }
.cta-right { flex-shrink: 0; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-white { padding: 14px 32px; background: #fff; color: var(--text); }
.btn-cta-white:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-cta-outline { padding: 13px 30px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--sand); padding: 72px 0 0; border-top: 1px solid var(--sand-mid); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--sand-mid); }
.footer-logo { font-family: 'Cormorant Upright', serif; font-size: 21px; font-weight: 700; color: var(--text); letter-spacing: 0.1em; display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.footer-logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.footer-desc { font-family: 'Cormorant Garamond', serif; font-size: 15.5px; font-weight: 300; line-height: 1.78; color: var(--text-muted); letter-spacing: 0.03em; margin-bottom: 22px; }
.footer-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: color 0.3s; }
.footer-phone:hover { color: var(--text); }
.footer-phone svg { width: 14px; height: 14px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-social { width: 34px; height: 34px; border-radius: 50%; background: rgba(30,22,16,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.3s; }
.footer-social:hover { background: var(--text); color: white; transform: translateY(-2px); }
.footer-social svg { width: 13px; height: 13px; }
.footer-col-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); transition: color 0.25s, padding-left 0.25s; }
.footer-links a:hover { color: var(--text-mid); padding-left: 6px; }
.nl-form { display: flex; }
.nl-input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.7); border: 1.5px solid var(--sand-deep); border-right: none; border-radius: 0; color: var(--text); font-family: 'Jost'; font-size: 13px; outline: none; transition: border-color 0.3s; }
.nl-input::placeholder { color: var(--text-light); }
.nl-input:focus { border-color: var(--text); }
.nl-btn { padding: 12px 16px; background: var(--text); border: none; border-radius: 0; color: white; cursor: pointer; transition: background 0.3s; }
.nl-btn:hover { background: var(--text-mid); }
.nl-btn svg { width: 15px; height: 15px; display: block; }
.nl-note { margin-top: 10px; font-size: 11px; color: var(--text-light); line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .container, .nav-inner { padding-left: 28px; padding-right: 28px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-img { order: 0; }
  .service-row:nth-child(even) .service-content { order: 1; }
  .service-content { padding: 44px 40px; }
  .mini-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 768px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .section-wrap { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .page-hero { height: 300px; }
  .service-content { padding: 36px 24px; }
  .service-img { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-right { flex-direction: column; width: 100%; }
  .cta-right .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .container, .nav-inner { padding-left: 16px; padding-right: 16px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mini-card { aspect-ratio: 3/2; }
  .mini-name { font-size: 17px; }
  .service-content { padding: 30px 18px; }
  .service-name { font-size: 26px; }
  .page-hero { height: 260px; }
}
