:root {
  --bg: #fdf6f0;
  --ink: #2d1f1a;
  --ink-soft: #7a6861;
  --accent: #c45a6c;
  --accent-dark: #9e4554;
  --accent-light: #e88a9a;
  --secondary: #7a9e7e;
  --secondary-dark: #5e7e62;
  --surface: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(45,31,26,0.06);
  --shadow-md: 0 8px 24px rgba(45,31,26,0.10);
  --shadow-lg: 0 16px 48px rgba(45,31,26,0.12);
  --max-w: 1120px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Offer Banner ────────────────────────────── */
.offer-banner {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #d4a853;
  color: #1a1814;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.offer-banner.hidden { display: none; }
.offer-logo {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1814;
  text-decoration: none;
  margin-right: 0.25rem;
}
.offer-text { display: flex; align-items: center; gap: 0.4rem; }
.offer-cta {
  background: #1a1814;
  color: #d4a853;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.offer-cta:hover { opacity: 0.85; }
.offer-banner .offer-close {
  background: none;
  border: none;
  color: rgba(26,24,20,0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
}

/* ── Header / Nav Shell ─────────────────────── */
.nav-shell {
  position: sticky;
  top: 44px;
  z-index: 100;
  width: 100%;
  background: rgba(253,246,240,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45,31,26,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
  line-height: 1.2;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: color 150ms, background 150ms;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--accent);
  background: rgba(196,90,108,0.08);
}

.social-inline { display: inline-flex; align-items: center; }
.social-icon { width: 18px; height: 18px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 150ms;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-brand:hover { background: var(--accent-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-soft);
  transition: all 150ms;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,31,26,0.65) 0%, rgba(45,31,26,0.35) 60%, rgba(196,90,108,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 2rem 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.hero h1 .accent-text { color: var(--accent-light); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-brand { padding: 0.7rem 1.8rem; font-size: 0.95rem; }
.hero-actions .btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero-actions .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── Section Common ──────────────────────────── */
section { padding: 4.5rem 1.5rem; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.section-subtitle {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}
.section-tag {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ── Services ────────────────────────────────── */
.services {
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,31,26,0.06);
  transition: transform 200ms, box-shadow 200ms;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.service-card-body p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── About / Why Us ──────────────────────────── */
.about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.about-content .about-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.about-content p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.rating-stars {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-top: 0.3rem;
}
.star { color: #e8a838; font-size: 1.1rem; }

/* ── Client Logos / Venues ───────────────────── */
.venues {
  background: var(--surface);
  text-align: center;
}
.venue-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.venue-tag {
  background: var(--bg);
  border: 1px solid rgba(45,31,26,0.08);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ── Visit / Contact ─────────────────────────── */
.visit {
  background: var(--bg);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.visit-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.visit-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.visit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(196,90,108,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.visit-detail h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}
.visit-detail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}
.visit-detail a { color: var(--accent); }
.visit-detail a:hover { text-decoration: underline; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 350px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

/* ── Footer ──────────────────────────────────── */
footer {
  background: #2d1f1a;
  color: rgba(255,255,255,0.7);
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
footer .social-inline { margin: 0 4px; }
footer .social-icon {
  filter: brightness(0) invert(0.7);
  transition: filter 150ms;
}
footer .social-icon:hover { filter: brightness(0) invert(1); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.75rem 0;
  font-size: 0.82rem;
}
.footer-links a:hover { color: #fff; }
.footer-sep { opacity: 0.3; }
footer p {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ── Mobile Menu Toggle ──────────────────────── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.3rem;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.mobile-toggle svg { display: block; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid rgba(45,31,26,0.08);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    gap: 0.2rem;
  }
  .nav-links.open a {
    padding: 0.7rem 1rem;
    width: 100%;
  }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-image img { height: 280px; }
  .stats { justify-content: center; }

  section { padding: 3rem 1rem; }
  .hero { min-height: 60vh; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .brand { font-size: 1rem; }
  .brand-icon { width: 28px; height: 28px; font-size: 0.85rem; }
  .header-actions .btn-brand { padding: 0.4rem 0.7rem; font-size: 0.75rem; }
}
