@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Outfit:wght@200;300;400&display=swap');

:root {
  --bg: #110e0f;
  --bg-soft: #171415;
  --bg-card: #1c181a;
  --dark: #000000;
  --light: #f9f6f0;
  --accent: #d8b09b; /* Rose Gold */
  --accent-hover: #efcdba;
  --text-main: #ebe5e0;
  --text-muted: #a39c98;
  --border-light: rgba(216, 176, 155, 0.2);
  --border-subtle: rgba(235, 229, 224, 0.05);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.7;
}

h1, h2, h3, .logo, .stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

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

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

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

.section {
  padding: 140px 0;
}

.bg-soft {
  background-color: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.text-center {
  text-align: center;
}

.subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--light);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.nav-links a:not(.btn-nav) {
  transition: color 0.4s ease;
}

.nav-links a:not(.btn-nav):hover {
  color: var(--accent);
}

.btn-nav {
  border: 1px solid var(--border-light);
  padding: 10px 24px;
  border-radius: 0;
  transition: all 0.4s ease;
}

.btn-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Buttons */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 18px 46px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) sepia(0.2) hue-rotate(-15deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 14, 15, 0.4) 0%, rgba(17, 14, 15, 0.95) 100%);
}

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

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--light);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.split-image img {
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  padding: 10px;
}

.split-text h2 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 30px;
  color: var(--light);
}

.split-text p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  gap: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.stat strong {
  display: flex;
  align-items: baseline;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}

.stat-small {
  font-size: 1.2rem;
  margin-left: 4px;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

.stat span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--bg-card);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.gallery-grid img:hover {
  filter: grayscale(0%);
}

.img-tall {
  grid-row: span 2;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg-card);
  padding: 50px 40px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  font-size: 1.25rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--light);
  line-height: 1.5;
  margin: 0 0 30px 0;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 4px;
}

/* Visit */
.address {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hours-card {
  background: var(--bg-card);
  padding: 60px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.hours-title {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.hours-list li:last-child {
  border-bottom: none;
}

.accent-text {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--dark);
  padding: 80px 0 60px;
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: var(--text-muted);
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-phone {
  font-size: 2rem;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

/* Reveal Animations */
.reveal {
  --reveal-delay: 0ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay), transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .img-tall {
    grid-row: auto;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .footer-contact {
    text-align: center;
  }
}
