/* =============================================
   HOMEPACED — Global Stylesheet
   Art Deco · Refined · Timeless
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --ivory:      #F7F3EC;
  --ivory-dark: #EDE7D9;
  --charcoal:   #1A1714;
  --charcoal-mid: #3A3530;
  --gold:       #B8952A;
  --gold-light: #D4AF5A;
  --taupe:      #8B7B6B;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --max-width: 1140px;
  --section-pad: 100px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-pad) 0; }
.section--dark { background-color: var(--charcoal); color: var(--ivory); }
.section--ivory-dark { background-color: var(--ivory-dark); }

/* ── Art Deco Divider ── */
.deco-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.deco-divider::before,
.deco-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.deco-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.deco-divider--center { justify-content: center; }
.deco-divider--center::before,
.deco-divider--center::after { max-width: 80px; }

/* ── Typography ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

p { font-size: 0.95rem; line-height: 1.8; color: var(--taupe); }
.section--dark p { color: rgba(247,243,236,0.7); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid currentColor;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--ivory);
}

.btn--ivory {
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn--ivory:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.btn--dark {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,243,236,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,149,42,0.2);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--charcoal); }

/* CTA in nav */
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--ivory); }
.nav-cta::after { display: none !important; }

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--ivory);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background-color: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

/* Art Deco geometric corner ornaments */
.hero-ornament {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(184,149,42,0.4);
  pointer-events: none;
}
.hero-ornament--tl { top: 100px; left: 32px; border-right: none; border-bottom: none; }
.hero-ornament--tr { top: 100px; right: 32px; border-left: none; border-bottom: none; }
.hero-ornament--bl { bottom: 40px; left: 32px; border-right: none; border-top: none; }
.hero-ornament--br { bottom: 40px; right: 32px; border-left: none; border-top: none; }

.hero-inner {
  text-align: center;
  color: var(--ivory);
  position: relative;
  z-index: 1;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}

.hero-inner .eyebrow { color: var(--gold-light); margin-bottom: 24px; }

.hero-inner h1 {
  color: var(--ivory);
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 300;
}

.hero-inner h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(247,243,236,0.65);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

/* ════════════════════════════════════════
   INTRO / PHILOSOPHY STRIP
   ════════════════════════════════════════ */
.intro-strip {
  background: var(--gold);
  padding: 20px 32px;
  text-align: center;
}
.intro-strip p {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   ABOUT SNAPSHOT
   ════════════════════════════════════════ */
.about-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-snapshot__img-wrap {
  position: relative;
}
.about-snapshot__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-snapshot__img-frame {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid rgba(184,149,42,0.35);
  z-index: -1;
}

.about-snapshot__text .eyebrow { margin-bottom: 16px; }
.about-snapshot__text h2 { margin-bottom: 8px; }
.about-snapshot__text p { margin-top: 20px; margin-bottom: 32px; }

/* ════════════════════════════════════════
   SERVICES OVERVIEW (HOME)
   ════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,42,0.15);
  padding: 48px 36px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.section--dark .service-card { border-color: rgba(184,149,42,0.2); }
.service-card:hover { background: rgba(184,149,42,0.07); border-color: var(--gold); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--ivory);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-card p { font-size: 0.88rem; }

.service-card .price {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ════════════════════════════════════════
   PROCESS / HOW IT WORKS
   ════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step { text-align: center; }

.process-step__icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 0;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}
.process-step__icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p { font-size: 0.85rem; }

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  background: var(--charcoal);
  padding: 80px 32px;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); margin-bottom: 8px; }
.cta-band p { max-width: 480px; margin: 16px auto 36px; }

/* ════════════════════════════════════════
   TESTIMONIAL / QUOTE
   ════════════════════════════════════════ */
.quote-section { text-align: center; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 24px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-attribution {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: #110E0C;
  color: var(--ivory);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184,149,42,0.2);
}

.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: rgba(247,243,236,0.5); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(247,243,236,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.75rem;
  color: rgba(247,243,236,0.3);
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--charcoal);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(184,149,42,0.03) 40px,
    rgba(184,149,42,0.03) 41px
  );
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-style: italic;
  color: var(--ivory);
}
.page-hero p { max-width: 560px; margin: 20px auto 0; }

/* ════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--section-pad) 0;
  border-bottom: 1px solid rgba(184,149,42,0.15);
}
.service-detail:last-child { border-bottom: none; }
.service-detail--flip { direction: rtl; }
.service-detail--flip > * { direction: ltr; }

.service-detail__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.service-detail__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.service-detail__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-detail h2 { margin-bottom: 20px; }
.service-detail p { margin-bottom: 20px; }

.includes-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--taupe);
}
.includes-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 28px 0;
  padding: 16px 28px;
  border: 1px solid var(--gold);
}
.price-tag .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
}
.price-tag .label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-card {
  padding: 40px 32px;
  border-top: 2px solid var(--gold);
}
.value-card h3 { font-size: 1.3rem; margin: 16px 0 12px; }

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184,149,42,0.3);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contact-detail-item h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-detail-item p, .contact-detail-item a {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .about-snapshot,
  .service-detail,
  .service-detail--flip,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; direction: ltr; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-snapshot__img-frame { display: none; }

  .hero-ornament--bl,
  .hero-ornament--br { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  h1 { font-size: 2.6rem; }
}
