/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1C1917;
  background: #FAF6F1;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.serif { font-family: 'Playfair Display', Georgia, serif; }
.accent-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #7B2D3B;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.97);
  box-shadow: 0 1px 0 rgba(123, 45, 59, 0.1);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1C1917;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #1C1917; }
.nav-logo-icon { transition: transform 0.3s; }
.nav-logo:hover .nav-logo-icon { transform: rotate(-10deg); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #44403C;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #7B2D3B;
  transition: width 0.3s;
}
.nav-links a:hover { color: #7B2D3B; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #7B2D3B;
  color: #FAF6F1 !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8125rem !important;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #5E2130; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1917;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 45, 59, 0.82) 0%,
    rgba(94, 33, 48, 0.72) 50%,
    rgba(28, 25, 23, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5E6D0;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FAF6F1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-accent {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #F5E6D0;
  font-size: 0.85em;
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(245, 230, 208, 0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: #7B2D3B;
  color: #FAF6F1;
  border-color: #7B2D3B;
}
.btn-primary:hover {
  background: #5E2130;
  border-color: #5E2130;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}
.btn-outline-light {
  background: transparent;
  color: #FAF6F1;
  border-color: rgba(245, 230, 208, 0.6);
}
.btn-outline-light:hover {
  background: rgba(245, 230, 208, 0.12);
  border-color: #F5E6D0;
  transform: translateY(-2px);
}
.btn-light {
  background: #FAF6F1;
  color: #7B2D3B;
  border-color: #FAF6F1;
}
.btn-light:hover {
  background: #F5E6D0;
  border-color: #F5E6D0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header--centered { margin-bottom: 80px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1C1917;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #57534E;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: #FAF6F1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(123, 45, 59, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(123, 45, 59, 0.1);
  border-color: rgba(123, 45, 59, 0.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(123, 45, 59, 0.14); }
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #57534E;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: #F3EDE6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(123, 45, 59, 0.12);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #44403C;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(123, 45, 59, 0.15);
  border-bottom: 1px solid rgba(123, 45, 59, 0.15);
}
.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #7B2D3B;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #57534E;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.2);
}
.about-content .btn { margin-top: 8px; }

/* ── Why Us ── */
.why-us {
  padding: 120px 0;
  background: #FAF6F1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  padding: 40px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(123, 45, 59, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.08);
}
.why-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(123, 45, 59, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #57534E;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 120px 0;
  background: #7B2D3B;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(245, 230, 208, 0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 230, 208, 0.03);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #FAF6F1;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(245, 230, 208, 0.8);
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #F3EDE6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 10px;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 4px;
}
.contact-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #57534E;
}
.contact-item a:hover { color: #7B2D3B; }
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.contact-form-wrap {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(123, 45, 59, 0.06);
  border: 1px solid rgba(123, 45, 59, 0.08);
}
.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.9375rem;
  color: #57534E;
  line-height: 1.6;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #44403C;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E7E5E4;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1C1917;
  background: #FAF6F1;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A8A29E; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1C1917;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9375rem;
  color: #57534E;
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  padding: 80px 0 0;
  background: #1C1917;
  color: #FAF6F1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 230, 208, 0.1);
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FAF6F1;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245, 230, 208, 0.6);
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F5E6D0;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 230, 208, 0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #F5E6D0; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(245, 230, 208, 0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-contact a { color: rgba(245, 230, 208, 0.6); transition: color 0.3s; }
.footer-contact a:hover { color: #F5E6D0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(245, 230, 208, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #FAF6F1;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-content { padding: 100px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-content .section-eyebrow,
  .about-content .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-stats { justify-content: center; }
  .about-content .btn { margin: 8px auto 0; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}
