*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum: #7B2D6B;
  --plum-dark: #5C1F4F;
  --plum-deep: #3D1335;
  --plum-light: #A8558E;
  --amber: #D4A84B;
  --amber-light: #E8C97A;
  --amber-dark: #B8912E;
  --cream: #FAF8F5;
  --cream-dark: #F3EFEA;
  --charcoal: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #C4C4C4;
  --gray-100: #EDEDED;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 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);
  font-weight: 300;
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--plum);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 20px rgba(123, 45, 107, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--plum);
  color: var(--amber);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--plum);
  transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
  color: var(--plum);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ─── NAV TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--plum-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 19, 53, 0.95) 0%,
    rgba(123, 45, 107, 0.85) 40%,
    rgba(92, 31, 79, 0.80) 70%,
    rgba(26, 26, 26, 0.70) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-divider {
  width: 1px;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 75, 0.4), transparent);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--plum-deep);
  border-color: var(--amber);
}

.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* ─── INTRO ─── */
.intro {
  padding: 8rem 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--amber);
  opacity: 0.4;
  z-index: -1;
}

/* ─── FEATURES ─── */
.features {
  padding: 7rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card:hover {
  border-color: var(--plum-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 45, 107, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--plum);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-700);
}

/* ─── SELECTION ─── */
.selection {
  padding: 8rem 0;
  background: var(--cream);
}

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

.selection-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.selection-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.selection-item:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(123, 45, 107, 0.08);
}

.selection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.5s var(--ease-out);
}

.selection-item:hover img {
  transform: scale(1.04);
}

.selection-item-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.selection-item-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.selection-item-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ─── LOCATION ─── */
.location {
  padding: 8rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.location-address {
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.location-phone {
  margin-bottom: 3rem;
}

.location-phone a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--plum);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}

.location-phone a:hover {
  border-color: var(--plum);
}

.location-hours h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
}

.location-map img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 1px solid var(--gray-100);
}

/* ─── CONTACT ─── */
.contact {
  padding: 8rem 0;
  background: var(--plum-deep);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

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

.contact .section-headline {
  color: var(--white);
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2.5rem;
}

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

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--amber-light);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--amber);
}

.form-success {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--amber-light);
  text-align: center;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand .logo-mark {
  margin-bottom: 0.75rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.375rem 0;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-contact a:hover {
  color: var(--amber-light);
}

.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-divider {
    display: none;
  }

  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-image {
    order: -1;
  }

  .intro-image img {
    height: 350px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 0.9375rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-headline {
    font-size: clamp(1.875rem, 7vw, 2.75rem);
  }

  .intro {
    padding: 5rem 0;
  }

  .features {
    padding: 5rem 0;
  }

  .selection {
    padding: 5rem 0;
  }

  .location {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }

  .contact-form-wrap {
    padding: 1.75rem;
  }

  .selection-item {
    grid-template-columns: 1fr;
  }

  .selection-item img {
    min-height: 200px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .intro-image::before {
    display: none;
  }
}
