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

:root {
  --plum: #6B3FA0;
  --plum-deep: #4A2270;
  --plum-light: #8B6CC0;
  --plum-pale: #F3EDF9;
  --amber: #F5C518;
  --amber-light: #FDE68A;
  --amber-dark: #C49A00;
  --black: #111111;
  --dark: #1E1E1E;
  --gray-900: #2A2A2A;
  --gray-700: #4A4A4A;
  --gray-500: #7A7A7A;
  --gray-300: #C8C8C8;
  --gray-100: #F0F0F0;
  --white: #FFFFFF;
  --bg: #FAFAF8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-900);
  background: var(--bg);
  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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn--primary {
  background: var(--plum);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--plum-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107, 63, 160, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--plum);
  color: var(--plum);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn--full {
  width: 100%;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 63, 160, 0.08);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.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-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
}
.logo-icon { color: var(--plum); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--plum);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--plum); }
.nav a:hover::after { width: 100%; }

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 63, 160, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-card {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--plum);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Floating Stat Cards ── */
.stat-cards {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  pointer-events: none;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 180px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateX(30px);
  animation: floatIn 0.6s var(--ease) forwards;
}
.stat-card:nth-child(1) { animation-delay: 0.4s; }
.stat-card:nth-child(2) { animation-delay: 0.6s; }
.stat-card:nth-child(3) { animation-delay: 0.8s; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--plum);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

@keyframes floatIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ── Sections ── */
.section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── About ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 6/7;
  background: var(--gray-100);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.image-frame:hover img { transform: scale(1.03); }

.split-content .section-title { margin-bottom: 20px; }
.split-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.feature-line svg { color: var(--amber-dark); flex-shrink: 0; }

/* ── Offerings ── */
.offerings { background: var(--white); }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offering-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.offering-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.offering-card:hover .offering-img img { transform: scale(1.05); }

.offering-body {
  padding: 28px 28px 32px;
}
.offering-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.offering-body p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ── Quality ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-item {
  text-align: left;
  padding: 32px 28px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
  background: var(--white);
}
.value-item:hover {
  border-color: var(--plum-light);
  box-shadow: 0 8px 30px rgba(107, 63, 160, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--plum-pale);
  color: var(--plum);
  margin-bottom: 20px;
}
.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ── Visit ── */
.visit { background: var(--white); }

.visit-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background: var(--bg);
}

.visit-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-content .section-sub { margin-bottom: 40px; }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.visit-detail svg { color: var(--plum); flex-shrink: 0; margin-top: 2px; }
.visit-detail strong { color: var(--dark); }
.visit-detail a { color: var(--plum); transition: color 0.2s; }
.visit-detail a:hover { color: var(--plum-deep); }

.visit-map {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--gray-100);
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--plum); }
.contact-link svg { color: var(--plum); flex-shrink: 0; }
.contact-link a { color: inherit; }
.contact-link a:hover { color: var(--plum); }

/* ── Form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--bg);
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--plum-pale);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--plum-deep);
}
.form-success.show { display: block; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--gray-700);
}

/* ── Mobile Nav ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--plum); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .stat-cards { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 48px; }
}

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

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

  .section { padding: 80px 0; }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .image-frame { aspect-ratio: 4/3; }

  .offerings-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .visit-card { grid-template-columns: 1fr; }
  .visit-content { padding: 40px 28px; }
  .visit-map { aspect-ratio: 16/9; }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form { padding: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
