/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Color Tokens ─── */
:root {
  --charcoal: #2d3436;
  --charcoal-deep: #1f2937;
  --coral: #f97316;
  --coral-light: #fb923c;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-500: #78716c;
  --stone-600: #57534e;
}

/* ─── Header ─── */
#header {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#header.scrolled {
  background: rgba(45, 52, 54, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  transition: color 0.3s;
}
.header-link {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.header-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.header-link:hover { color: #fff; }
.header-link:hover::after { width: 100%; }

/* ─── Buttons ─── */
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-coral:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ─── Section Shared ─── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}
.body-text {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ─── Hero ─── */
.hero-gradient {
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3436 35%, #3d2c24 65%, #4a2c17 100%);
}
.hero-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-weight: 300;
}
.hero-badge {
  animation: heroFadeDown 0.8s ease both;
}
.hero-title, .hero-subtitle, .hero-buttons {
  animation: heroFadeUp 0.8s ease both;
}
.hero-title { animation-delay: 0.15s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.45s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── About Stats ─── */
.stats-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--stone-500);
}

/* ─── Services ─── */
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-6px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(249,115,22,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--coral);
  color: #fff;
}
.service-title {
  font-family: 'Playfair Display', serif;
}
.service-desc {
  font-size: 0.95rem;
}

/* ─── Area Cards ─── */
.area-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.area-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.area-card:hover .area-card-img {
  transform: scale(1.08);
}
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,46,0.85) 0%, rgba(26,31,46,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background 0.4s ease;
}
.area-card:hover .area-card-overlay {
  background: linear-gradient(to top, rgba(249,115,22,0.8) 0%, rgba(249,115,22,0.2) 60%, transparent 100%);
}
.area-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.area-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* ─── Testimonials ─── */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  position: relative;
}
.testimonial-text::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--stone-500);
  padding-top: 1rem;
  border-top: 1px solid var(--stone-100);
}

/* ─── CTA Section ─── */
.cta-gradient {
  background: linear-gradient(135deg, #2d3436 0%, #4a2c17 50%, #6b3a1a 100%);
}
.cta-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
  background-size: 32px 32px;
}

/* ─── Contact ─── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.2rem;
}
.contact-value {
  display: block;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-form {
  background: var(--stone-50);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--stone-100);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--stone-100);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
}
.form-input::placeholder { color: #c4bfb8; }
.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}
.form-success {
  animation: formSuccess 0.4s ease;
}
@keyframes formSuccess {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Footer ─── */
.footer-logo {
  font-family: 'Playfair Display', serif;
}

/* ─── Reveal Animations ─── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── Mobile Menu ─── */
.mobile-link {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--coral); }
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .stats-grid { gap: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}
