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

:root {
  --plum: #4A1942;
  --plum-deep: #2E0F29;
  --plum-light: #6B2D5C;
  --plum-muted: #8B4578;
  --amber: #F5A623;
  --amber-light: #FCC86B;
  --amber-pale: #FFF3DC;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --text-dark: #2A1F2E;
  --text-mid: #5C4A63;
  --text-light: #8A7890;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-width: 280px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== LAYOUT ===== */
.layout {
  display: flex;
  min-height: 100vh;
}

.main-content {
  margin-left: var(--nav-width);
  flex: 1;
  min-width: 0;
}

.section {
  padding: 6rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

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

.section-title .accent {
  color: var(--amber);
}

/* ===== SIDE NAVIGATION ===== */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-width);
  height: 100vh;
  background: var(--plum-deep);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.side-nav-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-letter {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--plum-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-nav-divider {
  width: 40px;
  height: 1px;
  background: var(--plum-light);
  margin: 1.5rem 0;
}

.side-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.side-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum-muted);
  transition: var(--transition);
  cursor: pointer;
}

.side-nav-link:hover,
.side-nav-link.active {
  color: var(--white);
  background: rgba(245, 166, 35, 0.1);
}

.side-nav-link.active {
  color: var(--amber);
}

.link-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.5;
  min-width: 20px;
}

.side-nav-link.active .link-num {
  opacity: 1;
  color: var(--amber);
}

.side-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--plum-muted);
  transition: var(--transition);
}

.side-nav-phone:hover {
  color: var(--amber);
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--plum);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.title-italic {
  font-style: italic;
  color: var(--plum-light);
}

.hero-title .accent {
  color: var(--amber);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 25, 66, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}

.btn-secondary:hover {
  background: var(--plum);
  color: var(--white);
}

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

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: 20px;
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--white);
  max-width: 100%;
  padding: 6rem 2.5rem;
}

.about-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--plum);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 25, 66, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.about-content .section-title {
  margin-bottom: 1.25rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--cream);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(74, 25, 66, 0.08);
  border-color: var(--amber-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--amber-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--plum);
}

.service-card:hover .service-icon svg {
  stroke: var(--amber);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== HOURS ===== */
.hours-section {
  background: var(--plum-deep);
  max-width: 100%;
  padding: 6rem 2.5rem;
  color: var(--white);
}

.hours-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hours-section .section-eyebrow {
  color: var(--amber);
}

.hours-section .section-title {
  color: var(--white);
}

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.hours-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hours-day {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.hours-time {
  font-weight: 600;
  color: var(--white);
}

.hours-closed .hours-day,
.hours-closed .hours-time {
  color: var(--text-light);
  opacity: 0.5;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hours-note a {
  color: var(--amber);
  text-decoration: underline;
}

.hours-img {
  border-radius: 16px;
  overflow: hidden;
}

.hours-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--white);
  max-width: 100%;
  padding: 6rem 2.5rem;
}

.contact-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-link {
  color: var(--plum);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--amber);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

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

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  margin: 0 auto 1rem;
  color: var(--plum);
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.hidden {
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--plum-deep);
  color: var(--white);
  padding: 2.5rem;
  margin-left: var(--nav-width);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer .logo-letter {
  font-size: 1.5rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--plum-muted);
  margin-bottom: 0.25rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--plum-muted);
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 15, 41, 0.6);
  backdrop-filter: blur(4px);
  z-index: 51;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--plum-deep);
  padding: 5rem 2rem 2rem;
  z-index: 52;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-panel.open {
  transform: translateX(0);
}

.menu-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--amber);
}

/* ===== MOBILE HAMBURGER ===== */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 99;
  background: var(--plum);
  border: none;
  border-radius: 10px;
  padding: 0.6rem;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 25, 66, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --nav-width: 240px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .hero-layout,
  .about-layout,
  .hours-layout,
  .contact-layout {
    gap: 2.5rem;
  }
}

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

  .main-content {
    margin-left: 0;
  }

  .footer {
    margin-left: 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-image {
    order: -1;
  }

  .hero-img-wrapper img {
    aspect-ratio: 4/3;
  }

  .about-layout,
  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-secondary {
    right: 0;
    bottom: -20px;
  }

  .about-badge {
    left: 0;
    top: -15px;
  }

  .about-img-main img {
    height: 400px;
  }

  .hours-img img {
    height: 350px;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .about-section,
  .hours-section,
  .contact-section {
    padding: 3.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .about-img-secondary {
    display: none;
  }

  .hours-row {
    padding: 0.6rem 0.5rem;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
