/* ── Trufflehunters — style.css ───────────────────────────────── */

:root {
  --pink:       #E8008A;
  --pink-dark:  #BE006E;
  --pink-light: #FF3DA8;
  --dark:       #1A0800;
  --charcoal:   #2C1A0E;
  --cream:      #FBF7F0;
  --cream-dark: #F0EBE2;
  --grey:       #7A6558;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-height: 64px;
  --section-gap: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ───────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p  { font-size: 1rem; line-height: 1.8; color: var(--grey); }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }

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

.btn-dark  { background: var(--dark);  color: var(--cream); }
.btn-dark:hover { background: var(--charcoal); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(251,247,240,.4);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(251,247,240,.08); }

/* ── Nav ──────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  z-index: 200;
  border-bottom: 1px solid var(--cream-dark);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.nav-logo { color: var(--pink) !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

.nav-enquire {
  background: var(--pink);
  color: var(--white) !important;
  padding: 9px 22px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-enquire:hover { background: var(--pink-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 2px solid var(--pink);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links a { font-size: 0.9rem; }
  .nav-enquire { width: 100%; text-align: center; }
}

/* ── Hero ─────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,8,0,.72) 40%, rgba(26,8,0,.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(24px, 6vw, 96px);
  max-width: 700px;
}
.hero-content .eyebrow { color: var(--pink-light); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-content h1 em { font-style: italic; color: var(--pink-light); }
.hero-content p {
  color: rgba(251,247,240,.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Sections ─────────────────────────────────────────────────── */

.section { padding: var(--section-gap) clamp(20px, 5vw, 80px); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--dark); color: var(--cream); }
.section-dark p { color: rgba(251,247,240,.7); }
.section-dark .eyebrow { color: var(--pink-light); }
.section-dark h2 { color: var(--cream); }
.section-pink   { background: var(--pink); color: var(--white); }
.section-pink p { color: rgba(255,255,255,.85); }
.section-pink .eyebrow { color: rgba(255,255,255,.6); letter-spacing: 0.2em; }
.section-pink h2 { color: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 14px; }

/* ── Services cards ───────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 4px solid var(--pink);
  transition: transform 0.25s;
}
.service-card:hover { transform: translateY(-4px); }

.service-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--pink);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--dark); margin-bottom: 12px; }

/* ── Included list ────────────────────────────────────────────── */

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 48px;
  margin-top: 0;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(251,247,240,.08);
}
.included-item::before {
  content: '✓';
  color: var(--pink-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Photo gallery ────────────────────────────────────────────── */

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

.g1 { grid-column: span 7; }
.g2 { grid-column: span 5; }
.g3 { grid-column: span 4; }
.g4 { grid-column: span 4; }
.g5 { grid-column: span 4; }

.gallery-grid img {
  width: 100%; height: 340px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .g1, .g2, .g3, .g4, .g5 { grid-column: span 12; }
  .gallery-grid img { height: 240px; }
}

/* ── Events strip ─────────────────────────────────────────────── */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px;
}

.event-card {
  background: var(--cream-dark);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s;
}
.event-card:hover { background: var(--pink); }
.event-card:hover .event-name,
.event-card:hover .event-desc { color: var(--white); }

.event-icon { font-size: 2rem; margin-bottom: 10px; }
.event-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.event-desc {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
  transition: color 0.2s;
}

/* ── Split section ────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content {
  padding: 64px clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.split-content h2 { margin-bottom: 16px; }
.split-content p  { margin-bottom: 20px; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-image img { height: 300px; }
}

/* ── CTA section ──────────────────────────────────────────────── */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 96px clamp(24px, 6vw, 80px);
  text-align: center;
  background: var(--pink);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 36px; }
.cta-actions    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────── */

.footer { background: var(--dark); color: var(--cream); padding: 64px clamp(20px, 5vw, 80px) 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251,247,240,.08);
  margin-bottom: 28px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--pink-light); }
.footer-brand p { font-size: 0.875rem; color: rgba(251,247,240,.55); line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251,247,240,.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--pink-light); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,247,240,.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(251,247,240,.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(251,247,240,.28);
}
.footer-bottom a { color: rgba(251,247,240,.28); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink-light); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(251,247,240,.85);
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial-venue {
  font-weight: 400;
  color: rgba(251,247,240,.45);
  font-size: 0.78rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* WhatsApp float button */
.wa-float{position:fixed;bottom:24px;right:24px;z-index:9999;background:#25D366;border-radius:50%;width:56px;height:56px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,.35);text-decoration:none;transition:transform .2s,box-shadow .2s}
.wa-float:hover{transform:scale(1.12);box-shadow:0 6px 24px rgba(37,211,102,.5)}
.wa-float svg{width:32px;height:32px;fill:#fff}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(26,8,0,.12); }
.faq-item:first-child { border-top: 1px solid rgba(26,8,0,.12); }
.faq-q { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--dark); cursor: pointer; padding: 20px 40px 20px 0; list-style: none; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 300; color: var(--pink); }
details[open] .faq-q::after { content: '\2212'; }
.faq-a { padding: 0 0 20px; color: var(--dark); opacity: .8; line-height: 1.7; margin: 0; }
.faq-a a { color: var(--pink); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* Sister brands bar */
.footer-sister { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0 0; margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.footer-sister > span { font-size: .8rem; opacity: .45; white-space: nowrap; }
.sister-links { display: flex; flex-wrap: wrap; gap: 16px; }
.sister-links a { font-size: .8rem; opacity: .55; color: inherit; text-decoration: none; transition: opacity .2s; }
.sister-links a:hover { opacity: 1; }
