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

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

:root {
  --primary: #b45454;
  --primary-dark: #9c3c3c;
  --primary-deep: #7e2e2e;
  --primary-soft: #cc6c54;
  --gold: #e4b46c;
  --gold-soft: #cc9c54;
  --olive: #b49c6c;
  --olive-deep: #846c3c;
  --cream: #fce4b4;
  --cream-light: #f7efd8;
  --cream-deep: #e4cc9c;
  --text-dark: #3d2a20;
  --text-muted: #7a5a48;
  --white: #fffdf6;
  --shadow: rgba(124, 46, 46, 0.12);
  --shadow-md: rgba(124, 46, 46, 0.2);
  --grad-brand: linear-gradient(135deg, #b45454 0%, #cc6c54 50%, #e4b46c 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 228, 180, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 84, 84, 0.12);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
  background: rgba(252, 228, 180, 0.92);
  box-shadow: 0 4px 30px var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(228, 180, 108, 0.35), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(204, 108, 84, 0.28), transparent 60%),
    linear-gradient(165deg, #fce4b4 0%, #e4cc9c 45%, #d9b987 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(124, 46, 46, 0.06) 1px, transparent 1.4px);
  background-size: 26px 26px;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}

.blob-1 {
  width: 460px;
  height: 460px;
  top: -90px;
  right: -60px;
  background: radial-gradient(circle at 30% 30%, #e4b46c, #cc6c54);
  animation: blob-drift-1 16s ease-in-out infinite;
}

.blob-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -70px;
  background: radial-gradient(circle at 60% 40%, #cc6c54, #9c3c3c);
  animation: blob-drift-2 20s ease-in-out infinite;
}

.blob-3 {
  width: 280px;
  height: 280px;
  top: 55%;
  left: 60%;
  background: radial-gradient(circle at 50% 50%, #b49c6c, #b45454);
  animation: blob-drift-3 24s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: hero-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-block;
  padding: 9px 26px;
  background: rgba(255, 253, 246, 0.6);
  border: 1px solid rgba(180, 84, 84, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 26px;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 20px rgba(124, 46, 46, 0.06);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 0 rgba(255, 253, 246, 0.5);
}

.hero-title span {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(180, 84, 84, 0.4);
  animation: btn-glow 3.5s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(180, 84, 84, 0.5);
}

.btn-outline {
  background: rgba(255, 253, 246, 0.5);
  color: var(--primary-dark);
  border: 2px solid rgba(180, 84, 84, 0.5);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(124, 46, 46, 0.4);
  border-radius: 20px;
  position: relative;
}

.mouse .wheel {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--primary);
  animation: wheel-scroll 1.8s ease-in-out infinite;
}

/* ── SECTION ── */
.section {
  padding: 110px 0;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(228, 180, 108, 0.14), transparent 60%),
    linear-gradient(160deg, #f6e9c7 0%, #ead8ae 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

.section-divider {
  width: 76px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
  margin: 22px auto 0;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  opacity: 0.6;
  animation: divider-sweep 3s ease-in-out infinite;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.about-card {
  position: relative;
  background: rgba(255, 253, 246, 0.85);
  border-radius: 20px;
  padding: 40px 34px;
  border: 1px solid rgba(180, 84, 84, 0.1);
  box-shadow: 0 10px 40px var(--shadow);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px var(--shadow-md);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  background: var(--grad-brand);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(180, 84, 84, 0.3);
  animation: float 5s ease-in-out infinite;
}

.about-card h3 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.about-card p,
.about-card li {
  color: var(--text-muted);
  line-height: 1.85;
}

.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}

.about-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  animation: sparkle 3s ease-in-out infinite;
}

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(255, 253, 246, 0.85);
  border-radius: 20px;
  padding: 34px 20px;
  text-align: center;
  border: 1px solid rgba(180, 84, 84, 0.1);
  box-shadow: 0 8px 30px var(--shadow);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px var(--shadow-md);
}

.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card .label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.4px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: linear-gradient(135deg, #e8caa0, #d9b987);
  border: 1px solid rgba(180, 84, 84, 0.08);
  box-shadow: 0 8px 28px var(--shadow);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 45px var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(126, 46, 46, 0.65), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.92rem;
  gap: 10px;
  font-weight: 400;
}

.icon-placeholder {
  font-size: 2.8rem;
  opacity: 0.55;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 42, 32, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: scale(0.92);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 22px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.contact-card {
  background: rgba(255, 253, 246, 0.85);
  border-radius: 20px;
  padding: 38px 30px;
  text-align: center;
  border: 1px solid rgba(180, 84, 84, 0.1);
  box-shadow: 0 10px 36px var(--shadow);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px var(--shadow-md);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--grad-brand);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(180, 84, 84, 0.3);
  animation: float 5s ease-in-out infinite;
}

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.contact-card a {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.contact-card a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #7e2e2e 0%, #9c3c3c 60%, #b45454 100%);
  color: rgba(255, 253, 246, 0.75);
  padding: 48px 0 26px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e4b46c, transparent);
  animation: footer-sheen 4s ease-in-out infinite;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.footer p {
  font-size: 0.9rem;
}

.footer .heart {
  display: inline-block;
  color: #f7a08a;
  animation: heartbeat 1.6s ease-in-out infinite;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 253, 246, 0.65);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(180, 84, 84, 0.4); }
  50% { box-shadow: 0 8px 34px rgba(228, 180, 108, 0.55); }
}

@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 40px) scale(1.12); }
  66% { transform: translate(30px, -30px) scale(0.94); }
}

@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(70px, -50px) scale(1.1); }
  70% { transform: translate(-40px, 20px) scale(0.92); }
}

@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.15); }
}

@keyframes wheel-scroll {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes divider-sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8) rotate(20deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
}

@keyframes footer-sheen {
  0%, 100% { background-position: 0 0; filter: brightness(1); }
  50% { filter: brightness(1.6); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(252, 228, 180, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 18px 24px;
    gap: 4px;
    transform: translateY(-140%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 1px solid rgba(180, 84, 84, 0.12);
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; display: block; }
  .nav-links a::after { left: 16px; right: 16px; }

  .hero { min-height: 90vh; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  .footer .container { flex-direction: column; text-align: center; }

  .lightbox-nav { width: 38px; height: 38px; font-size: 1rem; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
