:root {
  --plum: #5c1f47;
  --plum-dark: #3d1430;
  --amber: #f5a623;
  --amber-light: #ffc94a;
  --cream: #faf6f0;
  --ink: #241a1e;
  --wood: #7a5230;
  --slate: #2b2a28;
  --max-w: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: -apple-system, "Arial Black", "Helvetica Neue", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  color: var(--plum-dark);
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--plum);
  border-bottom: 3px solid var(--amber);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 2px;
}

.brand span {
  font-family: -apple-system, "Arial Black", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--amber-light);
}

nav.main-nav {
  display: flex;
  gap: 4px;
}

nav.main-nav a {
  text-decoration: none;
  color: #f2e3ee;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--amber);
  color: var(--plum-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--amber-light);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--plum);
    flex-direction: column;
    padding: 8px 24px 20px;
    gap: 6px;
    border-bottom: 3px solid var(--amber);
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: #fff;
  background: var(--slate);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  padding: 96px 24px 84px;
  text-align: center;
}

.hero-inner .eyebrow {
  display: inline-block;
  color: var(--amber-light);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 0.3em;
}

.hero-inner p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: #ece3e8;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--amber);
  color: var(--plum-dark);
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

/* ---------- Sections ---------- */

section { padding: 76px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.section-head p { color: #5a4c52; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-split img {
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(60, 20, 45, 0.35);
}

.about-split .copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.about-split .copy p { color: #4a3d42; font-size: 1.05rem; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background: #efe0ea;
  color: var(--plum-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 999px;
}

@media (max-width: 820px) {
  .about-split { grid-template-columns: 1fr; }
}

.gallery-section {
  background: var(--slate);
  color: #f2ece9;
}

.gallery-section .section-head h2 { color: #fff; }
.gallery-section .section-head p { color: #cbbfc3; }

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

.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6);
}

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

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

.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.cta-band {
  background: var(--plum);
  color: #fff;
  text-align: center;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: #e6d3df; margin-bottom: 28px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--plum-dark);
  color: #d9c3d1;
  padding: 48px 0 28px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-grid h3 {
  color: var(--amber-light);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-grid a {
  color: #d9c3d1;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-grid a:hover { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: #a98ea0;
}

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

/* ---------- WhatsApp page ---------- */

.wa-page {
  min-height: calc(100vh - 72px);
  background: var(--slate);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.wa-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.wa-card .eyebrow {
  color: var(--amber-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.wa-card h1 { color: #fff; font-size: clamp(2rem, 5vw, 2.8rem); }
.wa-card p { color: #d9cdd4; font-size: 1.05rem; }

.wa-number {
  display: inline-block;
  margin: 20px 0 30px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.03em;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #08331c;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 40px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 32px -8px rgba(37, 211, 102, 0.5);
  transition: transform 0.15s ease;
}

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

.wa-btn svg { width: 26px; height: 26px; fill: #08331c; }

.wa-hint {
  margin-top: 22px;
  font-size: 0.85rem;
  color: #b3a5ab;
}

/* ---------- Locations page ---------- */

.locations-page { padding: 64px 0 90px; }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.loc-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 46px -24px rgba(60, 20, 45, 0.4);
  border-top: 5px solid var(--amber);
}

.loc-card.flagship {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.loc-card.flagship img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 260px;
}

.loc-card.flagship .loc-body { padding: 32px 32px 32px 0; }

.loc-badge {
  display: inline-block;
  background: var(--plum);
  color: var(--amber-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.loc-card h3 { font-size: 1.3rem; margin-bottom: 6px; }

.loc-meta {
  color: #5a4c52;
  font-size: 0.95rem;
  margin: 4px 0;
}

.loc-meta strong { color: var(--plum-dark); }

.loc-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  color: var(--plum);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

@media (max-width: 900px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card.flagship { grid-template-columns: 1fr; }
  .loc-card.flagship .loc-body { padding: 24px; }
}
