:root {
  --bg: #14100f;
  --bg-alt: #1e1614;
  --ink: #f7efe9;
  --ink-soft: #cbb6ab;
  --line: rgba(247,239,233,0.12);
  --accent: #e0ab7a;
  --accent-light: #f0cba0;
  --accent-dark: #b5824f;
  --accent-rgb: 224 171 122;
  --white: #fff;
  --radius: 6px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  background-image: radial-gradient(ellipse 60% 40% at 80% 0%, rgb(var(--accent-rgb) / 0.1), transparent 60%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #1a1214; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #1a1214; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
}
.logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.logo span { color: var(--accent); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.nav-cta:hover { color: var(--accent-light); }

/* Hero */
.hero {
  position: relative;
  margin: 0 16px;
}
.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient { display: none; }
.hero-panel {
  background: var(--bg-alt);
  color: var(--ink);
  padding: 32px 32px 40px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero-panel .eyebrow { color: var(--accent); }
.hero-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 20ch;
}

@media (min-width: 900px) {
  .hero { max-width: 520px; margin: 0 auto; }
  .hero-media { aspect-ratio: 4/5; }
  .hero-media img { object-position: center; }
  .hero-gradient {
    display: block;
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,7,8,0.92), rgba(10,7,8,0.5) 55%, rgba(10,7,8,0.1));
  }
  .hero-panel {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: transparent;
    padding: 56px;
  }
}

/* Intro */
.intro { padding: 64px 32px; max-width: 720px; margin: 0 auto; text-align: center; }
.intro-text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--ink-soft); line-height: 1.6; }

/* Services */
.services { padding: 96px 32px; max-width: 1120px; margin: 0 auto; display: grid; gap: 32px; }
.services-head { max-width: 320px; }
.services-head .section-title { color: var(--white); }
.services-grid { display: grid; gap: 20px; }
.service-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.service-item:hover { border-color: rgb(var(--accent-rgb) / 0.4); transform: translateY(-2px); }
.service-item h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 10px; color: var(--accent-light); }
.service-num { color: var(--accent); font-size: 0.72rem; letter-spacing: 0.2em; margin-bottom: 10px; display: block; }
.service-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.service-links { display: flex; flex-direction: column; gap: 8px; }
.service-links a {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1214;
  background: var(--accent);
  border-radius: 6px;
  padding: 10px 14px;
  transition: background 0.2s ease;
}
.service-links a:hover { background: var(--accent-light); }

@media (min-width: 780px) {
  .services { grid-template-columns: 4fr 8fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Gallery — carrossel */
.gallery { padding: 0 32px 96px; max-width: 1120px; margin: 0 auto; }
.carousel { position: relative; margin-top: 32px; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20,16,15,0.85);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { border-color: var(--accent); color: var(--accent-light); }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }

@media (min-width: 780px) {
  .carousel-slide { flex: 0 0 300px; }
  .carousel-prev { left: -22px; }
  .carousel-next { right: -22px; }
}
@media (max-width: 600px) {
  .carousel-arrow { display: none; }
}

/* Booking */
.booking { padding: 96px 32px; background: var(--bg-alt); text-align: center; }
.booking .section-title { max-width: 460px; margin: 0 auto 24px; }
.booking-phone { color: var(--ink-soft); margin-bottom: 40px; }
.booking-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.map-embed { max-width: 720px; margin: 40px auto 0; }
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(var(--accent-rgb) / 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  position: relative;
}
.map-frame::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 40px 10px rgba(20,16,15,0.5);
}
.map-frame iframe {
  width: 100%; height: 340px; border: 0; display: block;
  filter: grayscale(0.35) sepia(0.25) hue-rotate(320deg) saturate(1.3) contrast(1.05) brightness(0.95);
}
.map-open-btn {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  border-bottom: 1px solid rgb(var(--accent-rgb) / 0.4);
  padding-bottom: 2px;
}
.map-open-btn:hover { border-color: var(--accent-light); }

/* Footer */
.site-footer {
  padding: 64px 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.footer-name { color: var(--ink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.site-footer a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; opacity: 0.7; }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--accent);
  color: #1a1214;
  text-align: center;
  padding: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 96px; }
}
