/* RAMALU — site stylesheet */

:root {
  --gold: #c9a227;
  --gold-light: #e4c65f;
  --gold-dark: #8f6f18;
  --ink: #15171a;
  --charcoal: #1f2226;
  --charcoal-2: #2a2e34;
  --cream: #faf7f1;
  --cream-2: #f1ece1;
  --gray: #6b6f76;
  --gray-light: #9a9ea5;
  --radius: 6px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0 0 1em; color: var(--gray); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); }

/* Header */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; letter-spacing: 0.06em; color: #fff; font-weight: 700; }
.brand span { color: var(--gold); }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { color: #e9e7e2; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em; transition: color 0.15s ease; }
.main-nav a:hover { color: var(--gold); }
.main-nav a.nav-cta { background: var(--gold); color: var(--ink); padding: 10px 20px; border-radius: var(--radius); font-weight: 600; }
.main-nav a.nav-cta:hover { background: var(--gold-light); color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 96px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav a { width: 100%; padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .main-nav a.nav-cta { border-radius: 0; text-align: center; }
}

/* Hero */
.hero {
  position: relative; color: #fff; display: flex; align-items: center;
  min-height: 62vh; background-size: cover; background-position: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(21,23,26,0.92) 20%, rgba(21,23,26,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; padding: 90px 24px; margin: 0 auto; width: 100%; }
.hero.small { min-height: 38vh; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.hero p { color: #d8d5cd; font-size: 1.05rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Sections */
section { padding: 88px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: var(--gray-light); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }

/* Grids */
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid rgba(0,0,0,0.06); }
.card h3 { font-size: 1.15rem; }
.card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-weight: 700; margin-bottom: 16px;
}

.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.feature-strip .item h4 { color: var(--gold-dark); font-size: 1rem; margin-bottom: 6px; }
.feature-strip .item p { font-size: 0.9rem; margin: 0; }
@media (max-width: 860px) { .feature-strip { grid-template-columns: repeat(2, 1fr); } }

/* Team */
.team-card {
  text-align: center; background: #fff; border-radius: var(--radius);
  padding: 40px 28px; border: 1px solid rgba(0,0,0,0.06); max-width: 340px; margin: 0 auto;
}
.avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: var(--ink); font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 2px; }
.team-role { color: var(--gold-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery img { height: 200px; } }

/* Testimonials */
.testimonial { background: #fff; border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 28px; }
.testimonial p { font-style: italic; color: var(--ink); }

/* FAQ */
details.faq { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px; }
details.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; float: right; color: var(--gold-dark); font-size: 1.2rem; }
details.faq[open] summary::after { content: '\2212'; }
details.faq p { margin-top: 12px; margin-bottom: 0; }

/* Hours table */
.hours { width: 100%; max-width: 420px; border-collapse: collapse; }
.hours td { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.hours td:last-child { text-align: right; color: var(--gray); }

/* Form */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; font-size: 0.88rem; color: var(--gray); }
.checkbox-field input { width: auto; margin-top: 4px; }
.form-note { font-size: 0.85rem; color: var(--gray); margin-top: 10px; }
.form-success { background: #eef7ee; border: 1px solid #bfe3bf; color: #245c24; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; }
.form-error { background: #fbeaea; border: 1px solid #e3bfbf; color: #7a2424; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--gray-light); max-width: 480px; margin: 0 auto 28px; }

/* Footer */
.site-footer { background: var(--charcoal); color: #cfcdc7; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { color: #fff; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.site-footer p { color: #b7b5af; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { padding: 22px 24px; font-size: 0.82rem; color: #8b8983; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; }

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo img { height: 76px; width: auto; }
.footer-brand-logo { height: 90px; width: auto; margin-bottom: 14px; }

/* Simple pages (legal/privacy) */
.simple-page { padding: 60px 0 90px; max-width: 760px; margin: 0 auto; }
.simple-page h1 { margin-bottom: 24px; }
.simple-page h2 { font-size: 1.3rem; margin-top: 36px; }
.simple-page h3 { font-size: 1.05rem; margin-top: 24px; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--gold-dark); font-weight: 600; }
