:root {
  --maroon: #8f2536;
  --maroon-dark: #6f1c2a;
  --cream: #faf5ef;
  --cream-dark: #f1e8dd;
  --ink: #2b2420;
  --ink-soft: #5c534c;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe57;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 36, 32, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, .logo-text {
  font-family: 'Playfair Display', serif;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(143, 37, 54, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 20px;
}

.logo img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 50%;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:hover { color: var(--maroon); }

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 6px 18px rgba(143, 37, 54, 0.35);
}
.btn-primary:hover { background: var(--maroon-dark); }

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-lg { padding: 14px 26px; font-size: 1rem; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(30, 22, 20, 0.72) 0%, rgba(30, 22, 20, 0.5) 45%, rgba(30, 22, 20, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.eyebrow {
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero .eyebrow { color: #e8b9c2; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.1rem;
  color: #f1e8dd;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons.center { justify-content: center; }

/* Strip */
.strip {
  background: var(--maroon);
  color: #fff;
  padding: 18px 0;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 500;
  font-size: 0.95rem;
}

.strip-item { display: flex; align-items: center; gap: 8px; }

/* Sections */
.section { padding: 90px 0; }
.section.alt { background: var(--cream-dark); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
  font-size: 1.05rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Gallery */
.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--maroon);
  text-align: center;
  margin-top: 56px;
  margin-bottom: 8px;
}

.category-title:first-of-type { margin-top: 48px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(20,15,13,0.75), transparent);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}

.gallery-note {
  margin-top: 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
}

/* Features */
.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.features-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--maroon);
  font-weight: 700;
}

.feature-list strong { color: var(--ink); }

/* Toptan section */
.toptan {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff;
  text-align: center;
}

.toptan .eyebrow { color: #e8b9c2; }
.toptan .section-title { color: #fff; }
.toptan .section-sub { color: #f1e0e3; margin-left: auto; margin-right: auto; }
.toptan-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.toptan .hero-buttons { margin-top: 28px; }
.toptan .btn-primary { background: #fff; color: var(--maroon); box-shadow: none; }
.toptan .btn-primary:hover { background: var(--cream-dark); }

/* Brand block */
.brand-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.brand-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #f1e8dd;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact a {
  font-weight: 500;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--whatsapp); }

.footer-bottom {
  border-top: 1px solid rgba(241, 232, 221, 0.12);
  padding: 18px 0;
  font-size: 0.85rem;
  color: #b8ada3;
  text-align: center;
}

/* Floating buttons */
.float-btn {
  position: fixed;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease;
}

.float-btn:hover { transform: scale(1.08); }

.float-whatsapp {
  bottom: 92px;
  background: var(--whatsapp);
  color: #fff;
}

.float-call {
  bottom: 22px;
  background: var(--maroon);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .features-wrap, .brand-inner { grid-template-columns: 1fr; }
  .brand-photo { order: -1; }

  .site-header.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-item img { height: 200px; }
  .section { padding: 60px 0; }
  .header-actions .btn-whatsapp span { display: none; }
  .strip-inner { justify-content: center; text-align: center; }
}
