/* Elaine Interiors — Shared Stylesheet
   Extracted/extended from live site design system. Preserves existing
   colors, typography, spacing. Do not alter tokens below without approval. */

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

:root {
  --cream:      #F7F3EE;
  --warm-white: #FBF9F6;
  --stone:      #E8E0D5;
  --taupe:      #C4B5A0;
  --warm-brown: #8B7355;
  --deep:       #2C2720;
  --mid:        #6B5F52;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--deep);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--deep);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--warm-brown);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--deep); }

.btn-ghost {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--deep); border-color: var(--deep); }

/* ── SECTION BASE ── */
section { padding: 7rem 6rem; }
.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  display: block;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
}
.section-heading em { font-style: italic; color: var(--warm-brown); }
.section-body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
}
.section-body p + p { margin-top: 1.4rem; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding: 12rem 6rem 5rem;
  background: var(--cream);
  text-align: left;
}
.page-hero .section-heading { max-width: 780px; }
.page-hero .section-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.8;
}

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 90px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 2rem;
}
.hero-headline em { font-style: italic; color: var(--warm-brown); }
.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.hero-image { position: relative; overflow: hidden; background: var(--stone); }
.hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── MARQUEE ── */
.marquee { background: var(--deep); overflow: hidden; padding: 1.1rem 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-item {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0 3rem;
}
.marquee-dot { color: var(--warm-brown); padding: 0 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image { aspect-ratio: 3/4; background: var(--stone); position: relative; overflow: hidden; }
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-sig {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--taupe);
}

/* ── SERVICES ── */
.services { background: var(--warm-white); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-header-left { max-width: 480px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--cream);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  text-decoration: none;
}
.service-card:hover { background: var(--stone); }
.service-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--taupe); margin-bottom: 3rem; line-height: 1; }
.service-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--deep); margin-bottom: 1rem; line-height: 1.2; }
.service-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.75; flex: 1; }
.service-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-brown); margin-top: 2rem; }
.service-link { margin-top: 1.5rem; }

/* Additional / add-on offerings strip */
.addons { background: var(--cream); }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.addon-card { background: var(--warm-white); border: 1px solid var(--stone); padding: 1.75rem; }
.addon-name { font-family: var(--serif); font-size: 1.15rem; color: var(--deep); margin-bottom: 0.6rem; }
.addon-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.7; }

/* ── PROCESS ── */
.process { background: var(--deep); color: var(--cream); }
.process .section-label { color: var(--taupe); }
.process .section-heading { color: var(--warm-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-top: 5rem; }
.step { padding-top: 2rem; border-top: 1px solid rgba(199, 181, 160, 0.3); }
.step-num { font-family: var(--serif); font-size: 1.5rem; color: var(--taupe); margin-bottom: 1rem; }
.step-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--warm-white); margin-bottom: 0.8rem; }
.step-desc { font-size: 0.85rem; color: var(--stone); line-height: 1.75; }
.testimonial {
  margin-top: 6rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  max-width: 780px;
  line-height: 1.5;
}
.testimonial-attr { margin-top: 1.5rem; font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-style: normal; color: var(--taupe); }

/* ── PORTFOLIO CAROUSEL ── */
.portfolio { background: var(--warm-white); padding: 7rem 0 7rem 6rem; overflow: hidden; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; padding-right: 6rem; }
.carousel-controls { display: flex; align-items: center; gap: 1rem; }
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--stone);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1rem; color: var(--mid);
}
.carousel-btn:hover { background: var(--stone); border-color: var(--taupe); color: var(--deep); }
.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stone); transition: background 0.2s, transform 0.2s; cursor: pointer; border: none; padding: 0; }
.carousel-dot.active { background: var(--warm-brown); transform: scale(1.3); }
.carousel-track-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 1.25rem; }
.carousel-track img { width: 360px; height: 460px; object-fit: cover; flex-shrink: 0; }

/* ── SERVICE DETAIL PAGE ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.detail-block + .detail-block { margin-top: 4rem; }
.detail-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-brown); margin-bottom: 1rem; display: block; }
.included-list, .process-list { margin-top: 1rem; }
.included-list li, .process-list li {
  font-size: 0.9rem; color: var(--mid); padding: 0.7rem 0;
  border-bottom: 1px solid var(--stone);
}
.included-list li:first-child, .process-list li:first-child { border-top: 1px solid var(--stone); }
.investment-box { background: var(--cream); padding: 2.5rem; margin-top: 1rem; }
.investment-amount { font-family: var(--serif); font-size: 1.8rem; color: var(--deep); margin-bottom: 0.5rem; }
.investment-note { font-size: 0.85rem; color: var(--mid); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--stone); padding: 2rem 0; }
.faq-q { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--deep); margin-bottom: 0.8rem; }
.faq-a { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }

/* ── FINAL CTA (dark band) ── */
.final-cta { background: var(--deep); color: var(--warm-white); text-align: center; }
.final-cta .section-heading { color: var(--warm-white); max-width: 700px; margin: 0 auto; }
.final-cta .section-body { color: var(--stone); max-width: 560px; margin: 1.5rem auto 2.5rem; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ── CONTACT / FORM ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; }
.contact-intro { padding: 5rem 6rem 5rem 6rem; background: var(--warm-white); }
.contact-expect { margin-top: 3rem; }
.contact-expect li { font-size: 0.85rem; color: var(--mid); padding: 0.6rem 0; border-bottom: 1px solid var(--stone); }
.contact-email { margin-top: 2rem; font-size: 0.9rem; color: var(--warm-brown); }
.contact-form-panel { background: var(--warm-white); padding: 5rem 5rem 5rem 5rem; border-left: 1px solid var(--stone); }
.inquiry-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.65rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--warm-brown); }
.radio-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.radio-pill {
  font-size: 0.78rem;
  color: var(--mid);
  border: 1px solid var(--stone);
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) { border-color: var(--warm-brown); background: var(--warm-white); color: var(--deep); }
.form-submit {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--warm-white); background: var(--warm-brown); border: none; padding: 1rem 2.4rem;
  cursor: pointer; transition: background 0.2s; align-self: flex-start; font-family: var(--sans);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--deep); }
.form-note { font-size: 0.75rem; color: var(--taupe); line-height: 1.6; margin-top: -0.5rem; }
.form-success { display: none; padding: 1.5rem; background: var(--stone); font-size: 0.9rem; color: var(--mid); }

/* ── FOOTER ── */
footer {
  background: var(--cream);
  padding: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.2rem; color: var(--deep); }
.footer-loc { font-size: 0.75rem; color: var(--mid); letter-spacing: 0.05em; margin-top: 0.4rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--mid); }
.footer-links a:hover { color: var(--deep); }
.footer-copy { font-size: 0.72rem; color: var(--taupe); width: 100%; text-align: center; margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  section, .page-hero { padding: 5rem 1.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 4rem 1.5rem 3rem; }
  .hero-image { min-height: 50vh; }
  .about, .detail-grid, .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .addons-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-form-panel { border-left: none; border-top: 1px solid var(--stone); padding: 3rem 1.5rem; }
  .contact-intro { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
