/* ─── Custom Properties ─── */
:root {
  --plum: #4A2C3D;
  --plum-deep: #3A1F30;
  --plum-light: #6B4056;
  --plum-muted: #F5EFF2;
  --amber: #C8963E;
  --amber-light: #D4A95C;
  --amber-dark: #A67A2E;
  --cream: #FDF8F4;
  --cream-dark: #F5EDE6;
  --text: #2A1F24;
  --text-light: #6B5A62;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(74, 44, 61, 0.08);
  --shadow-md: 0 4px 16px rgba(74, 44, 61, 0.10);
  --shadow-lg: 0 8px 32px rgba(74, 44, 61, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  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; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--plum); }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--amber-light); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 560px; }
.section-desc--light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--plum {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn--plum:hover { background: var(--plum-deep); border-color: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn--outline:hover { background: var(--plum); color: var(--white); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 44, 61, 0.08);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum);
}
.logo-icon { color: var(--amber); }
.logo--light { color: var(--white); }
.logo--light .logo-icon { color: var(--amber-light); }

/* ─── Nav ─── */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--plum); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--plum);
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.hero-content { padding-right: 16px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--plum);
  margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 640/720;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--plum);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
}
.badge-label {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.badge-sub { font-size: 0.82rem; opacity: 0.75; line-height: 1.4; }

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 150, 62, 0.2);
  background: var(--white);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--plum-muted);
  color: var(--plum);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--plum); color: var(--white); }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--plum);
}
.service-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ─── About ─── */
.about { padding: 100px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 560/480;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
  aspect-ratio: 280/200;
  max-width: 220px;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { font-size: 1rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(74, 44, 61, 0.1);
  border-bottom: 1px solid rgba(74, 44, 61, 0.1);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(74, 44, 61, 0.15); }

/* ─── Facility ─── */
.facility {
  padding: 100px 0;
  background: var(--plum);
}
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.facility-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 600/400;
}
.facility-img img { width: 100%; height: 100%; object-fit: cover; }
.facility-features { display: flex; flex-direction: column; gap: 28px; }
.facility-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(200, 150, 62, 0.15);
  color: var(--amber-light);
}
.facility-feature h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.facility-feature p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ─── Quote ─── */
.quote-section {
  padding: 80px 0;
  background: var(--cream-dark);
  text-align: center;
}
.quote { max-width: 720px; margin: 0 auto; position: relative; }
.quote-mark {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin: 0 auto 24px;
  opacity: 0.6;
}
.quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--plum);
  line-height: 1.7;
  margin-bottom: 28px;
}
.quote-footer { display: flex; flex-direction: column; gap: 4px; }
.quote-author { font-family: var(--font-serif); font-weight: 600; font-size: 1rem; color: var(--plum); }
.quote-location { font-size: 0.88rem; color: var(--text-light); }

/* ─── Contact ─── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--plum-muted);
  color: var(--plum);
}
.contact-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--plum);
  margin-bottom: 2px;
}
.contact-item span, .contact-item a {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--amber); }

/* ─── Form ─── */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(74, 44, 61, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(74, 144, 61, 0.08);
  border: 1px solid rgba(74, 144, 61, 0.2);
  border-radius: var(--radius-sm);
  color: #2d6a2e;
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; color: #2d6a2e; }

/* ─── Footer ─── */
.site-footer {
  background: var(--plum-deep);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .facility-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(74, 44, 61, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
    text-align: center;
  }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 0; }
  .hero-headline br { display: block; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img-wrap { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .hero-badge { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-block; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 16px; bottom: -24px; max-width: 180px; }
  .facility-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}
