/* ============================================
   EDITS Retail Consulting — Global Stylesheet
   ============================================ */

:root {
  --warm-cream: #faf6f0;
  --canvas: #f3f1e8;
  --sand: #e8dfd0;
  --linen: #d9ceb5;
  --bark: #533f25;
  --espresso: #241610;
  --gold: #b08d57;
  --gold-light: #c9a96e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--warm-cream);
  color: var(--espresso);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--espresso);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(22px, 2.5vw, 30px); }

p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--bark);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--linen);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.05em;
}

.nav-brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--espresso);
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--espresso);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  transition: all 0.3s;
}

/* ============================================
   GOLD GRADIENT RULE
   ============================================ */

.gold-rule {
  background: linear-gradient(to right, #b08d57, #c9a96e, #b08d57);
  height: 3px;
  border: none;
  width: 100%;
}

.gold-rule-short {
  background: linear-gradient(to right, #b08d57, #c9a96e, #b08d57);
  height: 2px;
  border: none;
  width: 60px;
  margin: 16px 0;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.page-hero {
  background: var(--sand);
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ghost-watermark {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 300;
  color: rgba(83, 63, 37, 0.07);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  user-select: none;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--bark);
  margin-bottom: 32px;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 80px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

/* ============================================
   JILL'S PHOTO
   ============================================ */

.jill-photo {
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  box-shadow: 8px 12px 40px rgba(83, 63, 37, 0.18), 0 2px 8px rgba(83,63,37,0.10);
  display: block;
}

.photo-wrap {
  display: flex;
  justify-content: center;
}

/* ============================================
   SERVICE CARDS (HOME)
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.service-card {
  background: var(--warm-cream);
  padding: 40px 36px;
  transition: box-shadow 0.25s;
  border: 1px solid var(--linen);
}

.service-card:hover {
  box-shadow: 0 6px 28px rgba(83,63,37,0.10);
  border-color: var(--gold);
}

.service-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
}

.services-link {
  display: inline-block;
  margin-top: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ============================================
   WHY EDITS STRIP
   ============================================ */

.why-strip {
  background: var(--espresso);
  padding: 72px 40px;
}

.why-strip h2 {
  color: var(--sand);
  margin-bottom: 48px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
}

.why-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--sand);
  line-height: 1.6;
}

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote-section {
  background: var(--canvas);
  text-align: center;
  padding: 80px 40px;
}

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.55;
  max-width: 860px;
  margin: 0 auto 24px;
}

.pull-quote-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   RESULTS BAR
   ============================================ */

.results-bar {
  background: var(--linen);
  padding: 28px 40px;
  text-align: center;
}

.results-bar p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--espresso);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  color: var(--sand);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: var(--linen);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 36px;
}

.btn-gold {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--espresso);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--espresso);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--linen);
  padding: 48px 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--linen);
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  display: block;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.9;
}

.footer-contact a {
  color: var(--bark);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy p {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.05em;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.service-section {
  padding: 64px 40px;
}

.service-section:nth-child(even) {
  background: var(--canvas);
}

.service-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 16px;
}

.service-desc {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--bark);
  margin: 20px 0 24px;
  max-width: 680px;
  line-height: 1.7;
}

.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-top: 20px;
}

.service-bullets li {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.rsg-block {
  background: var(--canvas);
  border-left: 4px solid var(--gold);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.rsg-block p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--bark);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.3;
}

.faq-icon {
  font-size: 20px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  min-width: 20px;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--bark);
  padding-bottom: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-row-value {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--bark);
}

.contact-row-value a {
  color: var(--bark);
}

.contact-row-value a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
}

.form-input,
.form-textarea {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  background: var(--warm-cream);
  border: 1px solid var(--linen);
  color: var(--bark);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.12);
}

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

.location-note {
  text-align: center;
  padding: 48px 40px;
  background: var(--canvas);
}

.location-note p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bark);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.strategy-block {
  background: var(--canvas);
  text-align: center;
  padding: 80px 40px;
}

.strategy-block h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-right {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-cream);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--linen);
    gap: 0;
  }

  .nav-right.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--sand);
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-bullets {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-contact {
    text-align: left;
  }

  section {
    padding: 60px 20px;
  }

  .page-hero {
    padding: 120px 20px 60px;
  }

  .cta-section,
  .why-strip,
  .pull-quote-section,
  .results-bar {
    padding: 60px 20px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .ghost-watermark {
    font-size: 100px;
    opacity: 0.5;
  }
}

/* How It Works — inline (right column) */
.how-steps-inline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}

.how-step-inline {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--linen);
}

.how-step-inline:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-step-inline .how-number {
  font-size: 48px;
  min-width: 56px;
}

.how-step-inline .how-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.how-step-inline .how-desc {
  font-size: 16px;
}

/* How It Works — grid (standalone section) */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step {
  padding: 40px 32px;
  background: var(--warm-cream);
  border-top: 3px solid var(--gold);
  position: relative;
}

.how-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  letter-spacing: -2px;
}

.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.how-desc {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--bark);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
