/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --warm: #a67c52;
  --warm-light: #d4a574;
  --dark: #2c2118;
  --cream: #faf6f1;
  --text: #3d3028;
  --text-light: #7a6b5d;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(166, 124, 82, 0.15);
}

.nav-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  padding: 1rem 1.5rem;
  gap: 2.5rem;
}

.logo {
  display: flex; align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-left { margin-right: auto; }
.nav-right { margin-left: auto; }

.nav-links a {
  font-size: 0.9rem; font-weight: 400;
  color: var(--text-light); transition: color 0.2s;
}
.nav-links a:hover { color: var(--warm); }

.nav-cta {
  background: var(--warm);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--warm-light);
  transform: translateY(-1px);
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--warm-light); margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem; line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  max-width: 480px; margin: 0 auto 2rem; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Buttons === */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--warm); color: #fff;
  border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--warm-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent; border: 2px solid var(--warm); color: var(--warm);
}
.btn-outline:hover { background: var(--warm); color: #fff; }

.hero .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* === Sections === */
.section { padding: 5rem 0; text-align: center; }
.section h2 { font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.section > .container > p {
  color: var(--text-light); max-width: 560px; margin: 0 auto 2.5rem;
}

/* === About === */
.about { background: #fff; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3rem; align-items: center; text-align: left;
}

.about-image img {
  border-radius: 16px; width: 100%;
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }

.stats {
  display: flex; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap;
}

.stat {
  padding: 1.2rem 1.5rem; background: var(--cream); border-radius: 12px; text-align: center;
}

.stat-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--warm);
}

.stat-label {
  font-size: 0.75rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* === Gallery === */
.gallery { background: var(--cream); }

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

.gallery-item {
  overflow: hidden; border-radius: 12px;
  aspect-ratio: 1; position: relative;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* === Contact === */
.contact { background: #fff; }

.contact-links {
  display: flex; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap;
}

.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--warm);
  color: var(--warm);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: var(--warm);
  color: #fff;
  transform: translateY(-2px);
}

/* === Footer === */
.footer {
  text-align: center; padding: 2rem;
  font-size: 0.8rem; color: var(--text-light);
  background: var(--cream);
  border-top: 1px solid rgba(166, 124, 82, 0.15);
}

/* === Mobile === */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-image { max-width: 320px; margin: 0 auto; }
  .stats { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-tall { grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .nav-left, .nav-right { margin: 0; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 5rem 1rem 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}
