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

:root {
  --wine: #5A0F1C;
  --wine-dark: #3D0A13;
  --gold: #C8A96A;
  --beige: #F5EFE6;
  --beige-dark: #EDE4D6;
  --text-dark: #2E2E2E;
  --text-mid: #5A5A5A;
  --white: #FFFFFF;
  
  --ff-h: 'Playfair Display', serif;
  --ff-body: 'Lato', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1.hero-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--wine);
  line-height: 1.1;
  margin-bottom: 1rem;
}
h2.section-title {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--wine);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
h3.card-title {
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 0.8rem;
}
.label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
  transition: width 0.8s ease;
}
.gold-line.center {
  margin: 1.2rem auto;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wine); color: var(--white);
  padding: 14px 28px; border-radius: 2px; text-decoration: none;
  font-family: var(--ff-body); font-weight: 500; font-size: 1rem;
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary:hover {
  background: var(--wine-dark); color: var(--white);
}

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--wine); color: var(--wine);
  background: transparent; padding: 14px 28px; border-radius: 2px;
  text-decoration: none; font-family: var(--ff-body); font-weight: 500; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover {
  background: var(--wine); color: var(--white);
}

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); background: transparent; border: none; outline: none;
  text-decoration: none; font-family: var(--ff-body); font-weight: 500; font-size: 1rem;
  cursor: pointer; transition: color 0.3s ease;
}
.btn-gold:hover {
  color: #D4BC8A; /* Lighter gold */
}

/* Base Sections */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; }
section { padding: 6rem 0; }
.section-alt { background: var(--beige-dark); }
.section-white { background: var(--white); }

/* Decoration */
.blockquote-testimonial {
  border-left: 2px solid var(--wine);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--ff-h);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.card {
  background: var(--white);
  padding: 2rem;
  border-bottom: 2px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(90, 15, 28, 0.08); /* shadow of wine */
}

.service-card {
  background: var(--beige);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(90, 15, 28, 0.08);
}
.service-number {
  font-family: var(--ff-h);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.service-icon {
  margin-bottom: 2rem;
  color: var(--gold);
}
.service-icon svg {
  width: 36px;
  height: 36px;
}
.service-img-box {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-box img {
  transform: scale(1.05);
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0; transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.3);
  padding: 1rem 0;
}
.navbar-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { text-decoration: none; }
.nav-brand-name {
  font-family: var(--ff-h); font-weight: 700; color: var(--wine);
  font-size: 1.2rem; display: block; line-height: 1.1;
}
.nav-brand-sub {
  font-family: var(--ff-body); font-weight: 700; color: var(--gold);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; display: block;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-dark);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links .nav-en {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
}
.nav-links .nav-en:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--wine); transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--ff-h); font-size: 1.5rem; color: var(--wine); text-decoration: none; }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; color: var(--wine); cursor: pointer; }

/* Footer */
.footer {
  background: #1A0508;
  border-top: 1px solid var(--gold);
  padding: 4rem 0 2rem;
  color: var(--white);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .nav-brand-name { color: var(--white); }
.footer .footer-desc { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-title {
  font-family: var(--ff-body); font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem; display: block;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000; animation: pulse 3s infinite;
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Specific Utilities */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 100px; padding-bottom: 4rem;
}
.hero-banner-wrap {
  width: 90vw; max-width: 1600px; position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: flex-end; min-height: 70vh;
}
.hero-banner-bg { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 30%, rgba(26, 5, 8, 0.85) 100%); pointer-events: none; }
.hero-banner-content { position: relative; z-index: 2; max-width: 550px; padding: 4rem; text-align: left; color: var(--white); margin-right: 2vw; }
.hero-banner-content .label { color: var(--gold); }
.hero-banner-content .hero-title { color: var(--white); margin-bottom: 1.5rem; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero-banner-content p { color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; font-size: 1.1rem; }
.btn-container { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-gold {
  display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #1A0508; padding: 14px 28px; border-radius: 2px; text-decoration: none; font-family: var(--ff-body); font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary-gold:hover { background: #D4BC8A; }
.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; border: 1.5px solid var(--gold); color: var(--gold); background: transparent; padding: 14px 28px; border-radius: 2px; text-decoration: none; font-family: var(--ff-body); font-weight: 500; font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: #1A0508; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.img-profile {
  position: relative;
  width: 100%; max-width: 520px; aspect-ratio: 4/5;
  background: var(--beige-dark);
  border-radius: 2px;
  overflow: hidden;
}
.img-profile::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(90,15,28,0.7) 0%, transparent 50%);
  pointer-events: none;
}
.img-profile-decoration {
  position: absolute; top: 20px; right: 20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  z-index: 1; pointer-events: none;
}

@media(max-width: 992px) {
  .hero-banner-wrap { justify-content: center; align-items: flex-end; }
  .hero-banner-overlay { background: linear-gradient(to top, rgba(26, 5, 8, 0.95) 0%, transparent 80%); }
  .hero-banner-content { margin-right: 0; padding: 2rem; max-width: 100%; text-align: center; }
  .hero-banner-content .label { justify-content: center; }
  .hero-banner-content .btn-container { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  h1.hero-title { font-size: 2.5rem; }
  h2.section-title { font-size: 2rem; }
}

/* Modal System */
.modal {
  display: none; 
  position: fixed; z-index: 2000; left: 0; top: 0;
  width: 100%; height: 100%; overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  opacity: 0; transition: opacity 0.3s ease;
}
.modal.show {
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
}
.modal-content {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.modal.show .modal-content {
  transform: translateY(0);
}
.modal-close {
  color: var(--text-mid);
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px; font-weight: bold; cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover { color: var(--wine); }

.btn-read-more {
  background: transparent;
  color: var(--wine);
  border: none;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
}
.btn-read-more:hover {
  color: var(--gold);
}
