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

:root {
  --burgundy:    #7B2D3B;
  --burgundy-dk: #5C1F2C;
  --blush:       #F5E6E0;
  --blush-lt:    #FAF3F0;
  --cream:       #FDF9F7;
  --ink:         #1A1416;
  --ink-mute:    #4A3F42;
  --ink-light:   #8A7F82;
  --line:        #E8DDD8;
  --white:       #FFFFFF;

  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,249,247,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -.01em;
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--burgundy);
  border-radius: 50%;
  display: block;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px 7px auto 7px;
  border: 1.5px solid var(--blush);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-mute);
  transition: color .2s var(--ease);
  position: relative;
}
.nav-links a:not(.nav-phone):hover { color: var(--burgundy); }
.nav-links a:not(.nav-phone)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width .25s var(--ease);
}
.nav-links a:not(.nav-phone):hover::after { width: 100%; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--burgundy);
  font-weight: 500;
  letter-transform: none;
  text-transform: none;
  font-size: .875rem;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: .7; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 99;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--burgundy); }
.mobile-nav-phone {
  font-family: var(--font-body);
  font-size: 1rem !important;
  color: var(--burgundy) !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--line);
  transform: translateX(-50%);
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  max-width: 780px;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .25s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--ink-mute);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .55s forwards;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: clamp(280px, 40vh, 520px);
  object-fit: cover;
  border-radius: 4px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123,45,59,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.btn-ghost-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-ghost-outline:hover {
  background: var(--burgundy);
  color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 48px;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background .3s var(--ease);
}
.service-card:hover { background: var(--blush-lt); }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: .9375rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  border-radius: 4px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: clamp(360px, 50vh, 560px);
  object-fit: cover;
}
.about-content .section-title { margin-bottom: 28px; }
.about-content p {
  font-size: 1rem;
  color: var(--ink-mute);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.stat-label {
  font-size: .8125rem;
  color: var(--ink-light);
  letter-spacing: .02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ─── WHY ─── */
.why {
  padding: 120px 0;
  background: var(--burgundy);
  color: var(--white);
}
.why .section-eyebrow { color: var(--blush); }
.why .section-title { color: var(--white); margin-bottom: 64px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}
.why-item { padding-top: 0; }
.why-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .6;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.why-item p {
  font-size: .9375rem;
  color: rgba(245,230,224,.75);
  line-height: 1.75;
  max-width: 380px;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-item strong {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: .9375rem;
  color: var(--ink-mute);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--burgundy); }

/* Form */
.contact-form-wrap {
  background: var(--blush-lt);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s var(--ease);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .9375rem;
  color: var(--burgundy);
  text-align: center;
}
.form-success.show { display: block; }

/* ─── FOOTER ─── */
.footer {
  padding: 56px 0;
  background: var(--ink);
  color: var(--blush);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}
.footer-brand .logo-mark {
  width: 20px;
  height: 20px;
}
.footer-copy {
  font-size: .8125rem;
  color: rgba(245,230,224,.5);
  line-height: 1.7;
}
.footer-copy a {
  color: rgba(245,230,224,.7);
  transition: color .2s;
}
.footer-copy a:hover { color: var(--white); }
.footer-tag {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,230,224,.35);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { padding: 60px 24px 40px; }
  .hero-image { padding: 0 16px 40px; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 320px; }

  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
}
