
/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #3A1F26;
  background: #FBF3F0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== DESIGN TOKENS (matches real logo: blush, burgundy, gold) ===== */
:root {
  --bg: #FBF3F0;
  --bg-alt: #F3E1DC;
  --ink: #3A1F26;
  --ink-soft: #8A5F63;
  --stone: #C9A0A0;
  --accent: #7A1F3D;
  --gold: #B9925A;
  --line: #EAD5CE;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(251, 243, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links { display: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent); }
.btn-book {
  display: none;
  background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: 4px; font-size: 14px;
  font-weight: 600; transition: opacity 0.2s ease;
}
.btn-book:hover { opacity: 0.88; }
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.mobile-active {
  display: flex; flex-direction: column; position: absolute;
  top: 100%; left: 0; width: 100%; background: var(--bg);
  border-bottom: 1px solid var(--line); padding: 20px; gap: 16px;
}
@media (min-width: 900px) {
  .nav-links { display: flex; gap: 26px; }
  .btn-book { display: block; }
  .hamburger { display: none; }
}


/* ===== HERO ===== */
.hero { padding: 130px 20px 60px; background: var(--bg); }
.hero-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--line); padding: 6px 14px; border-radius: 30px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700;
  line-height: 1.15; color: var(--ink); margin-bottom: 20px;
}
.hero-text p {
  font-size: 16px; color: var(--ink-soft); max-width: 420px; margin-bottom: 32px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary, .btn-secondary {
  padding: 14px 28px; border-radius: 4px; font-size: 15px;
  font-weight: 600; transition: all 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { opacity: 0.88; }
.btn-secondary { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-image img {
  width: 100%; border-radius: 6px; aspect-ratio: 4 / 5; object-fit: cover;
}
@media (min-width: 900px) {
  .hero { padding: 160px 20px 100px; }
  .hero-container { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-text { flex: 1; }
  .hero-image { flex: 1; }
  .hero-text h1 { font-size: 56px; }
}

/* ===== SHARED SECTION STYLES ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.section-container h2 {
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.section-subtitle { font-size: 15px; color: var(--ink-soft); margin-bottom: 40px; }

/* ===== SERVICES TEASER ===== */
.services-teaser { background: var(--bg-alt); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 24px; text-align: left;
}
.service-icon {
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--ink); margin-bottom: 6px;
}
.service-price {
  font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 10px;
}
.service-card p:last-child { font-size: 14px; color: var(--ink-soft); }
.link-more {
  display: inline-block; font-size: 14px; font-weight: 600; color: var(--accent);
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FEATURED WORK ===== */
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px;
}
.work-card { display: block; overflow: hidden; border-radius: 4px; }
.work-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.3s ease;
}
.work-card:hover img { transform: scale(1.05); }
@media (min-width: 700px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== WHY US ===== */
.why-us { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.why-card { text-align: left; padding: 24px 0; border-top: 1px solid var(--line); }
.why-icon { font-size: 22px; color: var(--accent); margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.why-card p { font-size: 14px; color: var(--ink-soft); max-width: 320px; }
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px;
}
.testimonial-card .quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px;
  color: var(--ink); line-height: 1.5; margin-bottom: 16px;
}
.testimonial-card .author { font-size: 13px; font-weight: 600; color: var(--accent); }
@media (min-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FINAL CTA (real photo background) ===== */
.final-cta {
  position: relative; min-height: 55vh;
  background: url('images/teaser-3.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.final-cta-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(58, 31, 38, 0.65);
}
.final-cta-content { position: relative; z-index: 2; text-align: center; padding: 20px; }
.eyebrow-light { color: #fff; }
.final-cta-content h2 {
  font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700;
  color: #fff; line-height: 1.2; margin: 16px 0 12px;
}
.final-cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.btn-cta {
  background: var(--accent); color: #fff; padding: 16px 34px; border-radius: 4px;
  font-size: 15px; font-weight: 600; transition: opacity 0.2s ease;
}
.btn-cta:hover { opacity: 0.85; }

/* ===== FOOTER ===== */
.footer { background: #2A1419; color: rgba(251, 243, 240, 0.6); padding: 60px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 0 0 40px; }
.footer-brand h3 {
  font-family: 'Playfair Display', serif; color: #fff; font-size: 18px;
  letter-spacing: 1px; margin-bottom: 10px;
}
.footer-links h4, .footer-contact h4 {
  color: #fff; font-size: 14px; margin-bottom: 14px;
}
.footer-links a, .footer-contact a {
  display: block; font-size: 14px; color: rgba(251, 243, 240, 0.6);
  margin-bottom: 10px; transition: color 0.2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; margin-top: 10px; }
.footer-social i { font-size: 18px; }
.footer-bottom {
  text-align: center; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}


/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 130px 20px 40px; background: var(--bg-alt); }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
  color: var(--ink); margin: 8px 0;
}

/* ===== PRICE LIST ===== */
.price-list { padding: 60px 0; }
.price-category { margin-bottom: 48px; }
.price-category h2 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.price-category h2 i { font-size: 20px; }
.price-row {
  display: flex; justify-content: space-between; padding: 14px 0;
  border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-soft);
}
.price-row span:last-child { font-weight: 600; color: var(--ink); }


/* ===== PRODUCTS FULL PAGE ===== */
.products-full { padding: 60px 0; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(58,31,38,0.08); }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card h3 {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; padding: 16px 16px 4px;
}
.product-card .price { font-size: 15px; color: var(--accent); font-weight: 600; padding: 0 16px 16px; }
.btn-view {
  display: block; text-align: center; padding: 12px; border-top: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink); transition: background 0.2s ease;
}
.btn-view:hover { background: var(--bg-alt); color: var(--accent); }
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }


/* ===== GALLERY GRID ===== */
.gallery-full { padding: 20px 0 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px;
  transition: opacity 0.2s ease;
}
.gallery-grid img:hover { opacity: 0.85; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== ABOUT ===== */
.about-full { padding: 20px 0 60px; }
.about-container { display: flex; flex-direction: column; gap: 32px; }
.about-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.about-text h2 {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  line-height: 1.2; margin: 12px 0 16px; color: var(--ink);
}
.about-text p { font-size: 15px; color: var(--ink-soft); max-width: 420px; }
@media (min-width: 900px) {
  .about-container { flex-direction: row; align-items: center; gap: 60px; }
  .about-image, .about-text { flex: 1; }
}

/* ===== VALUES ===== */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.why-card { text-align: left; padding: 24px 0; border-top: 1px solid var(--line); }
.why-icon { font-size: 22px; color: var(--accent); margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700;
  margin-bottom: 8px; color: var(--ink);
}
.why-card p { font-size: 14px; color: var(--ink-soft); max-width: 320px; }
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }


 /* ===== CONTACT PAGE ===== */
.contact-page { padding: 20px 0 60px; }
.contact-grid { display: flex; flex-direction: column; gap: 40px; }
.contact-details h2, .contact-hours h2 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--ink); margin-bottom: 20px;
}
.contact-item { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.contact-item strong { color: var(--ink); }
.contact-item a { color: var(--accent); }
.hours-list { display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between; font-size: 14px;
  color: var(--ink-soft); padding: 12px 0; border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .contact-grid { flex-direction: row; gap: 60px; }
  .contact-details, .contact-hours { flex: 1; }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LIGHTBOX (click photo to open large, smooth zoom-in) ===== */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, background 0.35s ease;
  padding: 20px;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.85);
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 6px;
  transform: scale(0.9);
  transition: transform 0.35s ease;
  object-fit: contain;
}
.lightbox.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  z-index: 3001;
}