/* ============================================================
   LISA METTETAL — INTERIOR DESIGN
   Palette: Warm Cream / Ivory / Soft Gold / Charcoal
   Typography: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --cream:       #FAF7F2;
  --cream-alt:   #F3EEE6;
  --cream-deep:  #EDE5D8;
  --gold:        #B89A6A;
  --gold-light:  #D4B896;
  --gold-pale:   #EDD9BC;
  --charcoal:    #2C2A27;
  --mid:         #6B6560;
  --light-text:  #A09890;
  --white:       #FFFFFF;
  --border:      #DDD5C8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.py-section { padding: 100px 0; }


/* ── NAV ─────────────────────────────────────────────────── */

#mainNav {
  background: transparent;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(44,42,39,0.07);
}

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

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  position: relative;
  padding-bottom: 4px !important;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold) !important; }

.nav-cta {
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold-pale);
}

.navbar-toggler {
  border: none;
  padding: 4px 0;
  background: none;
}

.toggler-icon {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all 0.3s;
}


/* ── HERO ─────────────────────────────────────────────────── */

.hero-section {
  min-height: 100vh;
  background-color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: var(--cream-alt);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-text-col {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-stats {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-top: 4px;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 80px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}

.frame-accent {
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: var(--gold);
  border-style: solid;
}

.frame-accent.top-left {
  top: -16px; left: -16px;
  border-width: 2px 0 0 2px;
}

.frame-accent.bottom-right {
  bottom: -16px; right: -16px;
  border-width: 0 2px 2px 0;
}

.hero-portrait {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-text);
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}


/* ── INTRO STRIP ─────────────────────────────────────────── */

.intro-strip {
  background: var(--charcoal);
  padding: 60px 0;
}

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.intro-quote em { color: var(--gold-light); font-style: italic; }

.intro-attr {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
}


/* ── ABOUT ─────────────────────────────────────────────────── */

.about-image-wrapper {
  position: relative;
  padding: 24px 0 24px 24px;
}

.about-bg-block {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  background: var(--cream-deep);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.about-badge {
  position: absolute;
  bottom: 0;
  right: -16px;
  z-index: 2;
  background: var(--gold);
  padding: 20px 24px;
  text-align: center;
}

.badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  line-height: 1.5;
}

.about-credentials { margin-top: 28px; }

.credential-pill {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  padding: 7px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}


/* ── SECTION UTILITIES ───────────────────────────────────── */

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.divider-line {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 20px 0;
}

.body-text {
  font-size: 0.93rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 14px;
}

.bg-cream-alt { background-color: var(--cream-alt); }


/* ── SERVICES ─────────────────────────────────────────────── */

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,42,39,0.08); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 22px;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.3s;
}

.service-link:hover { letter-spacing: 0.2em; }


/* ── PORTFOLIO ────────────────────────────────────────────── */

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-large  { height: 520px; }
.portfolio-small  { height: 248px; }
.portfolio-medium { height: 300px; }

/* Placeholder backgrounds for demo — replace with real images */
.portfolio-item:nth-child(1) { background: linear-gradient(135deg, #D5C9B8 0%, #C0B0A0 100%); }
.portfolio-item:nth-child(2) { background: linear-gradient(135deg, #C8BFB2 0%, #B8ADA2 100%); }
.portfolio-item:nth-child(3) { background: linear-gradient(135deg, #DDD4C6 0%, #CAC0B5 100%); }

.portfolio-grid .col-lg-4:nth-child(1) .portfolio-item { background: linear-gradient(135deg, #CBBFA8 0%, #B8AC9A 100%); }
.portfolio-grid .col-lg-4:nth-child(2) .portfolio-item { background: linear-gradient(135deg, #D8D0C6 0%, #C4BAB0 100%); }
.portfolio-grid .col-lg-4:nth-child(3) .portfolio-item { background: linear-gradient(135deg, #CAC2B6 0%, #BCB5AC 100%); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,42,39,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.portfolio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
}


/* ── PROCESS ─────────────────────────────────────────────── */

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--gold-pale);
}

.col-lg-3:last-child .process-step::after { display: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.87rem;
  line-height: 1.85;
  color: var(--mid);
}


/* ── TESTIMONIALS ─────────────────────────────────────────── */

.testimonial-card {
  background: var(--cream-alt);
  border: 1px solid var(--border);
  padding: 36px 30px;
  height: 100%;
  transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
}

.testimonial-featured .testimonial-text { color: rgba(250,247,242,0.85); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

.testimonial-featured .author-name { color: var(--cream); }

.author-loc {
  font-size: 0.75rem;
  color: var(--light-text);
  margin-top: 2px;
}

.testimonial-featured .author-loc { color: rgba(250,247,242,0.5); }


/* ── CONTACT ─────────────────────────────────────────────── */

.contact-info { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; flex-direction: column; gap: 4px; }

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 0.92rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-form-wrapper {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 44px;
}

.form-label-custom {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-control-custom::placeholder { color: var(--light-text); }

.form-control-custom:focus {
  border-color: var(--gold);
  background: var(--cream);
}

textarea.form-control-custom { resize: vertical; min-height: 120px; }

select.form-control-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B89A6A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}


/* ── BUTTONS ─────────────────────────────────────────────── */

.btn-primary-custom {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 0;
  padding: 14px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.btn-primary-custom:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: 0;
  padding: 14px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline-custom:hover {
  background: var(--charcoal);
  color: var(--cream);
}


/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.footer-links a {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.35);
  line-height: 1.7;
}


/* ── ANIMATIONS ──────────────────────────────────────────── */

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 991px) {
  .hero-bg-pattern { width: 100%; clip-path: none; opacity: 0.5; }
  .hero-image-col  { display: none; }
  .hero-text-col   { padding-top: 140px; text-align: center; }
  .hero-sub        { max-width: 100%; }
  .hero-stats      { justify-content: center; }
  .hero-actions    { justify-content: center; }
  .about-badge     { right: 0; }
  .py-section      { padding: 70px 0; }
  .contact-form-wrapper { padding: 28px; }
  .process-step::after { display: none; }
}

@media (max-width: 767px) {
  .portfolio-large  { height: 320px; }
  .portfolio-medium { height: 220px; }
  .footer-links     { flex-wrap: wrap; gap: 16px !important; }
  .col-lg-4.text-end { text-align: left !important; margin-top: 14px; }
}
