@charset "utf-8";
/* ═══════════════════════════════════════════════
   SITE.CSS — TooGood Décor Consulting
   Extends tooplate-ivory-style.css (variables, fonts,
   pill-nav, hamburger, reveal, cta-link) with the
   multi-page layout components used across the site.
   ═══════════════════════════════════════════════ */

/* ── Fixed logo (pairs with the floating pill-nav) ── */
.site-logo-fixed {
  position: fixed;
  top: 22px;
  left: 28px;
  z-index: 1000;
}

.site-logo-fixed a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.site-logo-fixed em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

/* Slightly tighter pill-nav to fit the fuller sitemap */
.pill-nav a { padding: 8px 13px; font-size: 10.5px; }

@media (max-width: 1180px) {
  .pill-nav a { padding: 7px 10px; font-size: 10px; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO (interior pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--oat);
  padding: 168px 64px 96px;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.page-hero-inner { max-width: 720px; }

.page-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 22px;
  display: block;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}

.page-hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.page-hero-cta { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }

.page-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

/* ═══════════════════════════════════════════════
   GENERIC SECTIONS
   ═══════════════════════════════════════════════ */
.section { padding: 100px 64px; }
.section--tint { background: var(--oat-mid); }
.section--ink { background: var(--ink); color: var(--oat); }
.section--tight { padding: 64px 64px; }

.section-inner { max-width: 1180px; margin: 0 auto; }
.section-inner--narrow { max-width: 820px; margin: 0 auto; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  color: inherit;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-muted);
}

.section--ink .section-desc { color: var(--ink-faint); }

/* ═══════════════════════════════════════════════
   GRIDS &amp; CARDS
   ═══════════════════════════════════════════════ */
.grid { display: grid; gap: 40px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(3, 1fr); }

.card { border-top: 1px solid var(--oat-deep); padding-top: 24px; }
.section--ink .card { border-top-color: rgba(252, 250, 248, 0.14); }
.section--tint .card { border-top-color: rgba(26, 23, 20, 0.1); }

.card-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}

.section--ink .card-title { color: var(--oat); }

.card-desc { font-size: 13.5px; line-height: 1.75; color: var(--ink-muted); }
.section--ink .card-desc { color: var(--ink-faint); }

.card-link { margin-top: 18px; display: inline-block; }

/* ═══════════════════════════════════════════════
   LISTS
   ═══════════════════════════════════════════════ */
.list-plain { list-style: none; display: grid; gap: 13px; }

.list-plain li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.list-plain li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1.5px;
  background: var(--terra);
}

.section--ink .list-plain li { color: var(--oat); opacity: 0.92; }

.list-plain--2col { grid-template-columns: 1fr 1fr; column-gap: 32px; }

/* ═══════════════════════════════════════════════
   SPLIT (image + text)
   ═══════════════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 20px; }
.split-text .section-title { margin-bottom: 18px; }

/* ═══════════════════════════════════════════════
   NUMBERED FEATURE ROW (used for "ideal for", process steps, staging options)
   ═══════════════════════════════════════════════ */
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.feature {
  padding: 24px 0 0;
  border-top: 1px solid var(--oat-deep);
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 8px;
}

.feature-desc { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION (native details/summary)
   ═══════════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--oat-deep); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--terra);
  transition: transform 0.35s var(--ease-soft);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 8px 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 680px;
}

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band { text-align: center; padding: 100px 64px; }

.cta-band-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
}

.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  color: inherit;
  margin-bottom: 18px;
}

.cta-band-desc {
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-muted);
}

.section--ink .cta-band-desc { color: var(--ink-faint); }

/* ═══════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════ */
.contact-form { display: grid; gap: 26px; max-width: 640px; }

.form-row { display: grid; gap: 8px; }

.form-row label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--oat-deep);
  padding: 10px 0;
  width: 100%;
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--terra);
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.form-check input { width: auto; margin-top: 3px; }

.form-submit { margin-top: 6px; }

.contact-side { display: grid; gap: 40px; align-content: start; }
.contact-side-block dt {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.contact-side-block dd { font-size: 14.5px; color: var(--ink); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: var(--oat); padding: 88px 64px 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--oat);
}

.footer-intro { font-size: 13px; color: var(--ink-faint); line-height: 1.8; max-width: 280px; }

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: var(--oat); opacity: 0.85; transition: color 0.4s, opacity 0.4s; }
.footer-links a:hover { color: var(--terra); opacity: 1; }

.footer-newsletter-text { font-size: 13px; color: var(--ink-faint); line-height: 1.7; margin-bottom: 18px; }

.footer-newsletter-form { display: flex; gap: 12px; border-bottom: 1px solid rgba(252, 250, 248, 0.25); padding-bottom: 10px; }
.footer-newsletter-form input {
  background: none; border: none; color: var(--oat); font-size: 13px; flex: 1; padding: 6px 0;
  font-family: 'Manrope', sans-serif;
}
.footer-newsletter-form input::placeholder { color: var(--ink-faint); }
.footer-newsletter-form button {
  background: none; border: none; color: var(--terra); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; font-weight: 600; font-family: 'Manrope', sans-serif; white-space: nowrap;
}

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 28px; border-top: 1px solid rgba(252, 250, 248, 0.12);
  font-size: 11px; color: var(--ink-faint);
}
.footer-bottom--legal { border-top: none; padding-top: 0; margin-top: 14px; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; }
.footer-bottom a { color: var(--ink-faint); transition: color 0.4s; }
.footer-bottom a:hover { color: var(--terra); }
.footer-note { font-size: 11px; color: var(--ink-faint); margin-top: 10px; }

.footer-legal-note {
  font-size: 10.5px; color: rgba(184, 176, 166, 0.6); max-width: 960px; margin-top: 16px; line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .page-hero { padding: 140px 40px 72px; }
  .page-hero--split { grid-template-columns: 1fr; }
  .page-hero-media img { height: 300px; }
  .section, .cta-band { padding: 72px 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { min-height: 260px; }
  .grid--3, .grid--4, .grid--6 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 768px) {
  .site-logo-fixed { top: 18px; left: 20px; }
  .site-logo-fixed a { font-size: 14px; }
  .page-hero { padding: 108px 24px 56px; }
  .section, .cta-band { padding: 56px 24px; }
  .section-head { margin-bottom: 36px; }
  .grid--2, .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .list-plain--2col { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding: 56px 24px 24px; }
}
