/* ===== Design tokens ===== */
:root {
  --blush: #ecdfc9;
  --blush-light: #faf6ee;
  --ivory: #fdfaf4;
  --gold: #c8a468;
  --gold-light: #e8cd9a;
  --gold-dark: #96733a;
  --dark: #2a1810;
  --dark-soft: #6b5347;
  --white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 4px;
  --shadow: 0 10px 30px rgba(46, 35, 32, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--ivory);
  font-weight: 300;
  line-height: 1.7;
}

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
}

em { font-style: italic; color: var(--gold-dark); }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.eyebrow--center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  color: var(--dark-soft);
  font-size: 0.95rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-dark); }

.btn--gold-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn--gold-outline:hover { background: var(--gold); color: var(--white); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.78rem;
}
.btn--whatsapp:hover { background: #1ebe57; }

.btn--full { width: 100%; text-align: center; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(42, 24, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,164,104,0.22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 76px;
  width: auto;
}
.logo--footer img { height: 70px; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  text-decoration: none;
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--gold-light); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #5c4030 0%, #3a2418 45%, #1c0f09 100%);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,164,104,0.28), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(200,164,104,0.16), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero .eyebrow { color: var(--blush); }

.hero__logo {
  width: min(480px, 65vw);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4));
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 40px;
}

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

/* ===== About ===== */
.about { padding: 120px 0; }

.about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image { position: relative; }

.about__frame {
  border: 1px solid var(--gold);
  padding: 18px;
  border-radius: var(--radius);
}
.about__frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge p { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.about__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.about__text p { color: var(--dark-soft); margin-bottom: 16px; font-size: 0.95rem; }
.about__text strong { color: var(--dark); font-weight: 600; }

.about__highlights {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.about__highlights li {
  font-size: 0.88rem;
  color: var(--dark);
  padding-left: 24px;
  position: relative;
}
.about__highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== Services ===== */
.services {
  padding: 120px 0;
  background: var(--blush-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
}

.service-card__icon { font-size: 1.8rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--dark-soft); }

/* ===== Gallery ===== */
.gallery { padding: 120px 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__cta { text-align: center; margin-top: 48px; }

/* ===== Reviews ===== */
.reviews {
  padding: 120px 0;
  background: var(--blush-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.review-card p { font-style: italic; color: var(--dark-soft); font-size: 0.92rem; margin-bottom: 20px; }
.review-card__name { font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

.reviews__cta { text-align: center; margin-top: 48px; }

/* ===== Booking ===== */
.booking { padding: 120px 0; }

.booking__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.booking__text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.booking__text p { color: var(--dark-soft); margin-bottom: 32px; font-size: 0.95rem; }

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--blush-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  transition: background 0.2s ease;
}
.contact-pill:hover { background: var(--blush); }

.booking__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-soft);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border: 1px solid rgba(46,35,32,0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--ivory);
  color: var(--dark);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note {
  font-size: 0.78rem;
  color: var(--dark-soft);
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
  text-align: center;
}
.logo--footer { color: var(--gold-light); }
.logo--footer span { color: var(--gold-light); }
.footer__tagline { margin: 16px 0 28px; font-size: 0.9rem; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}
.footer__links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Chatbot ===== */
.chatbot {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 95;
}

.chatbot__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}
.chatbot__toggle:hover { background: var(--gold-dark); transform: scale(1.08); }

.chatbot__window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: min(340px, calc(100vw - 48px));
  height: min(480px, calc(100vh - 180px));
  background: var(--ivory);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(200,164,104,0.25);
}
.chatbot__window[hidden] { display: none; }

.chatbot__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--dark);
  border-bottom: 1px solid rgba(200,164,104,0.25);
}
.chatbot__logo { height: 30px; width: auto; }
.chatbot__header-text { flex: 1; }
.chatbot__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}
.chatbot__status {
  font-size: 0.7rem;
  color: var(--gold-light);
}
.chatbot__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.chatbot__close:hover { color: var(--white); }

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot__msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chatbot__msg--bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--dark);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(46,35,32,0.06);
}
.chatbot__msg--user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chatbot__msg--link a { color: inherit; text-decoration: underline; }

.chatbot__quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}
.chatbot__quick-replies:empty { display: none; }
.chatbot__quick-reply {
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.chatbot__quick-reply:hover { background: var(--gold); color: var(--white); }

.chatbot__input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(46,35,32,0.1);
  background: var(--white);
}
.chatbot__input-row input {
  flex: 1;
  border: 1px solid rgba(46,35,32,0.15);
  border-radius: 20px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--ivory);
  color: var(--dark);
}
.chatbot__input-row input:focus { outline: none; border-color: var(--gold); }
.chatbot__input-row button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.chatbot__input-row button:hover { background: var(--gold-dark); }
.chatbot__input-row[hidden] { display: none; }

@media (max-width: 480px) {
  .chatbot { right: 16px; bottom: 88px; }
  .chatbot__window { right: -8px; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about__inner,
  .booking__inner { grid-template-columns: 1fr; gap: 48px; }
  .services__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(42, 24, 16, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    display: none;
    border-bottom: 1px solid rgba(200,164,104,0.22);
  }
  .nav.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .header__cta { display: none; }
  .services__grid,
  .reviews__grid,
  .gallery__grid { grid-template-columns: 1fr; }
  .about, .services, .gallery, .reviews, .booking { padding: 80px 0; }
}
