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

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --coral: #e8645a;
  --coral-dark: #d4524a;
  --coral-light: #f5a098;
  --cream: #faf8f6;
  --cream-dark: #f0ece6;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999999;
  --gray-600: #666666;
  --gray-800: #333333;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -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;
}

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

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(250, 248, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  z-index: 1001;
}

.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--coral);
  color: var(--white);
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.header__logo-text {
  letter-spacing: -0.01em;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray-600);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--charcoal);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2a1515 25%,
    #8b3a30 55%,
    #e8645a 85%,
    #f5a098 100%
  );
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245, 160, 152, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__title-em {
  font-style: italic;
  color: var(--coral-light);
  font-weight: 400;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 100, 90, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

/* ===== Section Shared ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(232, 100, 90, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--coral);
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--coral);
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__text {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== About ===== */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about__image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.15;
}

.about__content {
  max-width: 480px;
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1f1e 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(232, 100, 90, 0.2) 0%, transparent 60%);
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner__title em {
  font-style: italic;
  color: var(--coral-light);
  font-weight: 400;
}

.cta-banner__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Schedule ===== */
.schedule {
  padding: 120px 0;
  background: var(--cream);
}

.schedule__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.schedule__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.schedule__map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--gray-200);
}

.schedule__map:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 90, 0.12);
}

.schedule__map svg {
  color: var(--coral);
  flex-shrink: 0;
}

.schedule__table-wrap {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
}

.schedule__table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 28px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule__table th:last-child {
  text-align: right;
}

.schedule__table td {
  padding: 16px 28px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-100);
}

.schedule__table td:last-child {
  text-align: right;
  font-weight: 500;
}

.schedule__table tr:last-child td {
  border-bottom: none;
}

.schedule__table--closed td {
  color: var(--gray-400);
}

.schedule__table tr:not(:last-child) td:first-child {
  font-weight: 500;
  color: var(--charcoal);
}

/* ===== Contact ===== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 12px;
  color: var(--coral);
  flex-shrink: 0;
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact__detail-value a {
  color: var(--coral);
  transition: color 0.3s ease;
}

.contact__detail-value a:hover {
  color: var(--coral-dark);
}

/* ===== Form ===== */
.contact__form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group__input,
.form-group__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 100, 90, 0.1);
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--gray-400);
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-success {
  text-align: center;
  padding: 40px 20px;
}

.contact__form-success svg {
  color: var(--coral);
  margin-bottom: 16px;
}

.contact__form-success p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--coral-light);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--coral-light);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; transform-origin: top; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__layout,
  .schedule__layout,
  .contact__layout {
    gap: 48px;
  }
}

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

  .nav__list {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
  }

  .nav__list.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__link--cta {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .services__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .about__layout,
  .schedule__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrap {
    order: -1;
  }

  .about__stats {
    gap: 24px;
  }

  .stat__number {
    font-size: 2rem;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .footer__inner {
    gap: 32px;
  }

  .footer__links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .about__stats {
    flex-direction: column;
    gap: 20px;
  }

  .schedule__table th,
  .schedule__table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}
