/* =========================
   Base
========================= */
:root{
  --bg: #f6f1e8;
  --ink: #3f3f3a;
  --muted: rgba(63,63,58,.62);
  --line: rgba(63,63,58,.28);
  --accent: #6f7865;
  --max: 1240px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x:hidden;
}

.container{
  width: min(var(--max), 92%);
  margin: 0 auto;
}

/* =========================
   HEADER / NAV (REFINED)
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f6f1e8;
  border-bottom: 1px solid rgba(60, 60, 55, 0.15);
}

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

/* LOGO */

.brand {
  text-decoration: none;
  color: #3e3e3a;
}

.brand-mark .top {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 400;
}

.brand-mark .sub {
  font-size: 11px;
  letter-spacing: 6px;
  margin-top: 6px;
  opacity: 0.6;
}

/* CENTER NAV */

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 1.2px;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* DOT SEPARATORS */

.nav-links li:not(:last-child)::after {
  content: "•";
  margin: 0 18px;
  opacity: 0.35;
  font-size: 12px;
}

/* LINKS */

.nav-links a {
  text-decoration: none;
  color: #3e3e3a;
  opacity: 0.75;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* ACTIVE LINK UNDERLINE */

.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: #3e3e3a;
  opacity: 0.5;
}

/* BOOK NOW BUTTON */

.book-now {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 14px 28px;
  border: 1px solid #3e3e3a;
  color: #3e3e3a;
  background: transparent;
  transition: all 0.25s ease;
}

.book-now:hover {
  background: rgba(62, 62, 58, 0.08);
}

/* =========================
   MOBILE NAV
========================= */

.nav-toggle {
  display: none;
}

@media (max-width: 900px) {

  .navbar {
    height: 80px;
  }

  .nav-center {
    position: fixed;
    top: 80px;
    right: 0;
    width: 280px;
    height: calc(100vh - 80px);
    background: #f6f1e8;
    border-left: 1px solid rgba(60, 60, 55, 0.15);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    justify-content: flex-start;
    padding: 30px;
  }

  .nav-center.open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links li::after {
    content: none !important;
  }

  .nav-links a {
    font-size: 15px;
  }

  .book-now {
    display: none;
  }

  .nav-toggle {
    display: block;
    font-size: 22px;
    border: 1px solid rgba(60, 60, 55, 0.2);
    background: transparent;
    width: 44px;
    height: 44px;
    cursor: pointer;
  }
}

/* (Optional) page placeholder styling */
.page-pad{ padding: 80px 0; }
.page-title{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  letter-spacing: 1px;
}

/* SERVICES PAGE */

.luxury-hero {
  background: #f4f2ee;
  padding: 100px 20px;
  text-align: center;
}

.luxury-hero h1 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.luxury-hero p {
  font-size: 18px;
  opacity: 0.8;
}

.services-section {
  padding: 80px 20px;
  background: #ffffff;
}

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

.service-card {
  padding: 40px;
  border: 1px solid #e5e2dc;
  background: #faf9f6;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.service-card h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.cta-section {
  background: #ece9e2;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 30px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .luxury-hero h1 {
    font-size: 28px;
  }
}
