@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============ RESET & BASE ============ */
:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-secondary: #161616;
  --fg: #fafafa;
  --fg-muted: #a3a3a3;
  --fg-dim: #555;
  --primary: #c9a227;
  --primary-hover: #b8911f;
  --primary-fg: #111;
  --border: #222222;
  --radius: 1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.625;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { max-width: 68ch; }

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-alt { background: var(--bg-secondary); }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.site-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.site-nav { display: flex; gap: 2.5rem; align-items: center; }
.site-nav a {
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(250,250,250,0.75);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.site-nav a:hover, .site-nav a.active { color: var(--primary); }
.site-nav a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--fg); }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-nav {
  display: none; flex-direction: column; gap: 1.5rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: rgba(250,250,250,0.8); transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; transition: all 0.2s;
  text-align: center; justify-content: center; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--primary-hover); transform: scale(0.99); }
.btn-outline { background: transparent; border: 1px solid rgba(201,162,39,0.35); color: var(--fg); }
.btn-outline:hover { background: rgba(201,162,39,0.1); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ============ CARDS ============ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.card-hover { transition: box-shadow 0.3s, border-color 0.3s; }
.card-hover:hover { box-shadow: 0 0 40px rgba(201,162,39,0.08); border-color: rgba(201,162,39,0.2); }

/* ============ ICON BOX ============ */
.icon-box {
  width: 3rem; height: 3rem;
  background: rgba(201,162,39,0.1);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box svg { width: 1.3rem; height: 1.3rem; color: var(--primary); }
.icon-box-lg { width: 3.5rem; height: 3.5rem; }
.icon-box-lg svg { width: 1.6rem; height: 1.6rem; }

/* ============ STARS ============ */
.stars { display: flex; gap: 0.25rem; }
.star { width: 1rem; height: 1rem; fill: var(--primary); color: var(--primary); }
.star-lg { width: 1.25rem; height: 1.25rem; }

/* ============ BADGE ============ */
.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; border-radius: 9999px;
  border: 1px solid rgba(201,162,39,0.3);
  background: rgba(201,162,39,0.08);
  font-size: 0.85rem; font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero { align-items: center; padding-bottom: 0; }
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.15) contrast(1.1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.6) 50%, transparent 100%);
}
@media (min-width: 768px) {
  .hero-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.25) 100%);
  }
}
.hero-content { position: relative; z-index: 10; padding-top: 8rem; padding-bottom: 8rem; }
.hero-text { max-width: 48rem; }
.hero-badge { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.25rem; color: var(--fg-muted); margin-top: 1rem; max-width: 40rem; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 480px) { .hero-actions { flex-direction: row; } }

/* ============ WHY CHOOSE RON ============ */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.differentiators { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 480px) { .differentiators { grid-template-columns: 1fr; } }
.diff-item { display: flex; gap: 1rem; align-items: flex-start; }

/* Mosaic Gallery */
.gallery-mosaic { position: relative; height: 520px; width: 100%; }
@media (min-width: 768px) { .gallery-mosaic { height: 620px; } }
.gallery-mosaic img {
  position: absolute; object-fit: cover;
  border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: z-index 0s, transform 0.4s;
}
.gallery-mosaic img:hover { transform: scale(1.02); z-index: 50 !important; }
.mosaic-1 { left: 0; top: 0; width: 55%; height: 50%; z-index: 10; }
.mosaic-2 { right: 0; top: 8%; width: 55%; height: 44%; z-index: 20; border: 5px solid var(--bg); }
.mosaic-3 { left: 4%; bottom: 0; width: 48%; height: 44%; z-index: 30; border: 5px solid var(--bg); }
.mosaic-4 { right: 3%; bottom: 4%; width: 44%; height: 38%; z-index: 20; }
.mosaic-5 { left: 22%; top: 28%; width: 50%; height: 40%; z-index: 40; border: 5px solid var(--bg); box-shadow: 0 0 50px rgba(0,0,0,0.6); }
.mosaic-badge {
  position: absolute; bottom: -1rem; left: -1rem; z-index: 60;
  display: none;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  box-shadow: 0 0 30px rgba(201,162,39,0.12);
  flex-direction: row; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .mosaic-badge { display: flex; } }

/* ============ TESTIMONIALS ============ */
.testimonial-card { padding: 2.5rem; display: flex; flex-direction: column; }

/* ============ INSTAGRAM ============ */
.insta-placeholder { padding: 6rem 2rem; text-align: center; width: 100%; max-width: 64rem; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-secondary); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); display: block; margin-bottom: 1rem; }
.footer-desc { color: rgba(250,250,250,0.65); font-size: 0.95rem; line-height: 1.7; max-width: 100%; }
.footer-location { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 500; margin-top: 1rem; font-size: 0.9rem; }
.footer-heading { font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(250,250,250,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.footer-contact-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: rgba(250,250,250,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.footer-contact-item a { color: rgba(250,250,250,0.65); transition: color 0.2s; font-size: 0.95rem; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: var(--fg-dim); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: var(--fg-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--primary); }

/* ============ STICKY BOOK BUTTON ============ */
.sticky-book {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 50; width: 90%; max-width: 340px;
}
.sticky-book a {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; background: var(--primary); color: var(--primary-fg);
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  padding: 1rem 1.5rem; border-radius: 1rem 1rem 0 0;
  border: 1px solid rgba(201,162,39,0.4); border-bottom: none;
  box-shadow: 0 -8px 30px rgba(201,162,39,0.15);
  transition: all 0.2s; letter-spacing: 0.02em;
}
.sticky-book a:hover { background: var(--primary-hover); box-shadow: 0 -12px 40px rgba(201,162,39,0.25); }
.sticky-book svg { width: 1.1rem; height: 1.1rem; }
@media (min-width: 768px) {
  .sticky-book { left: auto; right: 2rem; transform: none; max-width: 260px; }
}

/* ============ ABOUT PAGE ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image-wrap { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image-wrap { order: 1; } }
.about-copy { order: 1; }
@media (min-width: 1024px) { .about-copy { order: 2; } }
.about-img-frame { aspect-ratio: 3/4; overflow: hidden; border-radius: 1.25rem; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-card {
  display: none;
  position: absolute; right: -2rem; top: 25%;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
  box-shadow: 0 0 30px rgba(201,162,39,0.1);
  max-width: 220px;
}
@media (min-width: 768px) { .about-quote-card { display: block; } }
.diff-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.diff-card { padding: 2rem; }

/* ============ SERVICES PAGE ============ */
.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.service-card-header { flex: 0; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.service-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(250,250,250,0.85); }
.service-features svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: var(--primary); color: var(--primary-fg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}

/* ============ GALLERY PAGE ============ */
.drink-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.drink-card {}
.drink-img { aspect-ratio: 1/1; overflow: hidden; }
.drink-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.drink-card:hover .drink-img img { transform: scale(1.05); }
.event-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.event-card { overflow: hidden; }
.event-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.event-card:hover .event-img-wrap img { transform: scale(1.08); }
.event-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transition: opacity 0.3s;
}
.event-card:hover .event-overlay { opacity: 1; }

/* ============ CONTACT PAGE ============ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 2fr 1fr; } }
.contact-form-wrap {}
.contact-sidebar {}
.form-field { margin-bottom: 1.75rem; }
.form-label { display: block; font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--fg-muted); margin-bottom: 0.6rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 0.5rem; color: var(--fg);
  padding: 0.85rem 1rem; font-family: 'Outfit', sans-serif; font-size: 1rem;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(163,163,163,0.45); }
.form-textarea { resize: none; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a3a3a3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-select option { background: var(--bg-card); }
.form-error { display: block; color: #f87171; font-size: 0.82rem; margin-top: 0.4rem; min-height: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 0 1.5rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-row-3 { display: grid; grid-template-columns: 1fr; gap: 0 1.5rem; }
@media (min-width: 640px) { .form-row-3 { grid-template-columns: repeat(3, 1fr); } }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { padding: 2rem; }

/* ============ RESPONSIVE FIXES ============ */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
}
