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

:root {
  --plum:    #2e1a2e;
  --plum-m:  #3d2440;
  --plum-lt: #5a3660;
  --copper:  #b8762e;
  --copper-lt: #d4924a;
  --cream:   #f5f0e8;
  --warm:    #ede7da;
  --sand:    #e0d8c8;
  --text:    #1e1418;
  --muted:   #7a6e72;
  --border:  rgba(46,26,46,0.1);
  --border-p: rgba(46,26,46,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5rem;
  background: var(--plum);
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.nav-logo small {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  font-weight: 400;
  margin-top: 2px;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-links .n-btn a {
  color: var(--copper-lt);
  border: 1px solid rgba(184,118,46,0.4);
  padding: 0.45rem 1.3rem;
  transition: background 0.2s, color 0.2s;
}

.nav-links .n-btn a:hover {
  background: var(--copper);
  color: var(--cream);
  border-color: var(--copper);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--plum);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left text panel */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 4.5rem;
  position: relative;
  z-index: 2;
}

/* Subtle dot grid background */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,240,232,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-lt);
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--copper);
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-lt);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(245,240,232,0.52);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-copper {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--copper);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-copper:hover { background: var(--copper-lt); }

.btn-ghost-p {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(245,240,232,0.2);
  color: rgba(245,240,232,0.65);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}

.btn-ghost-p:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); }

/* Right image panel */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.4) brightness(0.45);
  display: block;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--plum) 0%, transparent 35%);
  z-index: 1;
}

/* Copper accent bar on right edge */
.hero-right::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--copper), transparent);
  z-index: 2;
}

/* Bottom data bar */
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245,240,232,0.08);
  z-index: 3;
}

.hero-bar-cell {
  padding: 1.6rem 2.5rem;
  border-right: 1px solid rgba(245,240,232,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-bar-cell:last-child { border-right: none; }

.hbc-val {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.hbc-val span { color: var(--copper-lt); }

.hbc-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* ── SHARED SECTION STYLES ── */
.overtitle {
  font-size: 0.67rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.sec-h {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--plum);
  letter-spacing: -0.01em;
}

.sec-h em { font-style: italic; font-weight: 400; color: var(--plum-lt); }

.rule {
  width: 32px; height: 2px;
  background: var(--copper);
  margin: 1.3rem 0 2rem;
}

/* ── ABOUT ── */
#about {
  padding: 9rem 4.5rem;
  background: var(--cream);
}

.about-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-text p strong { color: var(--text); font-weight: 600; }

.about-pull {
  margin-top: 2.4rem;
  padding: 1.8rem 2rem;
  background: var(--warm);
  border-left: 3px solid var(--plum);
}

.about-pull p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--plum);
  line-height: 1.6;
  margin: 0;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.88);
  display: block;
}

.about-photo-tag {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  background: var(--plum);
  padding: 1.4rem 1.8rem;
}

.about-photo-tag strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper-lt);
  line-height: 1;
}

.about-photo-tag span {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}

/* ── SERVICES ── */
#services {
  padding: 9rem 4.5rem;
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-p);
}

.svc-intro { font-size: 1rem; color: var(--muted); line-height: 1.8; }

/* Alternating list style */
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s;
  cursor: default;
}

.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover { padding-left: 0.5rem; }

.svc-num {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--copper);
  font-weight: 700;
  padding-top: 3px;
}

.svc-row h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.3;
}

.svc-row p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── APPROACH ── */
#approach {
  padding: 9rem 4.5rem;
  background: var(--plum);
}

.approach-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.approach-inner .overtitle { color: var(--copper-lt); }
.approach-inner .sec-h { color: var(--cream); }
.approach-inner .rule { background: var(--copper); }

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4.5rem;
}

.approach-intro { font-size: 1rem; color: rgba(245,240,232,0.42); line-height: 1.8; }

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.07);
}

.ap-card {
  background: var(--plum);
  padding: 2.8rem 2.4rem;
  border: 1px solid rgba(245,240,232,0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.ap-card:hover { background: var(--plum-m); }

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

.ap-card:hover::after { width: 100%; }

.ap-step {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(245,240,232,0.05);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.ap-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(184,118,46,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}

.ap-icon svg {
  width: 18px; height: 18px;
  stroke: var(--copper-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.ap-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.ap-card p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.38);
  line-height: 1.7;
}

/* ── WHY ── */
#why {
  padding: 9rem 4.5rem;
  background: var(--cream);
}

.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.why-points { display: flex; flex-direction: column; gap: 0; }

.why-pt {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}

.why-pt:first-child { border-top: 1px solid var(--border); }

.why-pt-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.why-pt:hover .why-pt-icon {
  background: var(--plum);
  border-color: var(--plum);
}

.why-pt-icon svg {
  width: 15px; height: 15px;
  stroke: var(--plum-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
  transition: stroke 0.2s;
}

.why-pt:hover .why-pt-icon svg { stroke: var(--copper-lt); }

.why-pt h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.3rem;
}

.why-pt p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-visual img {
  width: 100%; height: 500px;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.85);
  display: block;
}

.why-visual-cap {
  background: var(--plum);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-visual-cap svg {
  width: 16px; height: 16px;
  stroke: var(--copper-lt); fill: none;
  stroke-width: 1.5; flex-shrink: 0;
}

.why-visual-cap p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.4;
}

/* ── CONTACT ── */
#contact {
  padding: 9rem 4.5rem;
  background: var(--warm);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-left > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.c-cards { display: flex; flex-direction: column; gap: 2px; }

.c-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  background: var(--cream);
  border: 1px solid var(--border-p);
  margin-bottom: 2px;
  transition: border-color 0.2s;
}

.c-card:hover { border-color: var(--plum); }

.c-card-icon {
  background: var(--plum);
  display: flex; align-items: center; justify-content: center;
}

.c-card-icon svg {
  width: 16px; height: 16px;
  stroke: var(--copper-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.c-card-body { padding: 1.1rem 1.4rem; }

.c-label {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.c-value {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.c-value a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}

.c-value a:hover { color: var(--plum); }

.map-box {
  height: 100%; min-height: 420px;
  border: 1px solid var(--border-p);
  overflow: hidden;
}

.map-box iframe {
  width: 100%; height: 100%;
  min-height: 420px; border: 0;
  filter: saturate(0.15) contrast(1.1) brightness(1.08) sepia(0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--plum);
  border-top: 2px solid var(--copper);
  padding: 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(245,240,232,0.45);
}

footer p { font-size: 0.74rem; color: rgba(245,240,232,0.22); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 280px; }
  .hero-left { padding: 4rem 1.5rem 8rem; }
  .hero-bar { grid-template-columns: repeat(3, 1fr); }
  .hbc-val { font-size: 1.1rem; }
  #about, #services, #approach, #why, #contact { padding: 5rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { display: none; }
  .services-top { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row { grid-template-columns: 40px 1fr; }
  .svc-row p { display: none; }
  .approach-header { grid-template-columns: 1fr; gap: 2rem; }
  .approach-cards { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .map-box { min-height: 280px; }
  .map-box iframe { min-height: 280px; }
  footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.5rem; }
}
