:root {
  --accent: #000;
  --muted: #f8f8f8;
  --highlight: #e2d1c3;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}
a:hover {
  opacity: 0.75;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.book-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* Hero section */
.hero {
  height: 90vh;
  min-height: 500px;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 20px;
  z-index: 1;
}
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 10px;
}
.lead {
  font-size: 1.15rem;
  max-width: 600px;
  opacity: 0.95;
}
.hero-cta {
  margin-top: 20px;
}

/* Sections */
.section {
  padding: 90px 20px;
  background: #fff;
}
.section.alt {
  background: var(--muted);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
}

/* Portfolio / Gallery */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.tile {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 280px;
  background: #eee;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tile:hover img {
  transform: scale(1.06);
}
.tile-caption {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* Footer */
footer {
  background: #fafafa;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  .hero-inner {
    padding-top: 120px;
  }
}