/* ============================================
   DOG GONE ART PHOTOGRAPHY — Static Rebuild
   v2: Visual parity with live site (July 2026)
   ============================================ */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  font-family: 'Lato', sans-serif; 
  background: #fff; 
  color: #222; 
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #1E3A5F; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2em; color: #111; }
h1 { font-size: clamp(2rem, 5vw, 2.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 1.875rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; color: #333; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 750px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 110px 0; }
.section-light { background: #F7F8FA; }
.section-white { background: #FFFFFF; padding: 160px 0; }
.section-experience { padding-top: 120px; padding-bottom: 80px; }
.section-dark { background: #111111; color: #fff; padding: 100px 0; }
.section-cream { background: #FAF9F6; }
.section-grey { background: #F7F8FA; }


/* ===== BLOG POST (WordPress parity) ===== */
.blog-page { background: #F2F2F2; }
.blog-post-wrap {
  max-width: 800px; margin: 0 auto; padding: 60px 40px;
  background: #fff; border-radius: 0;
}
.blog-post-meta {
  font-family: 'Lato', sans-serif; font-size: 0.85rem; color: #888;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #eee;
}
.blog-post-meta a { color: #888; }
.blog-post-body {
  font-family: 'Lato', sans-serif; font-size: 1.05rem; line-height: 1.8; color: #444;
}
.blog-post-body h2 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a1a1a;
  margin: 36px 0 16px; font-weight: 700;
}
.blog-post-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #1a1a1a;
  margin: 28px 0 12px; font-weight: 700;
}
.blog-post-body p { margin-bottom: 1.2rem; font-family: 'Lato', sans-serif; color: #444; }
.blog-post-body ul { margin: 16px 0 24px 20px; list-style: disc; }
.blog-post-body li { margin-bottom: 8px; font-family: 'Lato', sans-serif; color: #444; }
.blog-post-body img { margin: 24px auto; max-width: 100%; height: auto; }
.blog-post-body hr { border: none; border-top: 1px solid #eee; margin: 36px 0; }
.blog-post-body strong { color: #1a1a1a; }
.blog-post-body em { font-style: italic; }
.blog-post-body a { color: #C9A96E; text-decoration: underline; }
.blog-sidebar {
  background: #f8f8f8; padding: 30px; margin-top: 40px; border-top: 3px solid #C9A96E;
}
.blog-sidebar h4 {
  font-family: 'Lato', sans-serif; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 2px; color: #888; margin-bottom: 16px; font-weight: 700;
}
.blog-sidebar a {
  display: block; font-family: 'Lato', sans-serif; font-size: 0.95rem;
  color: #333; padding: 8px 0; border-bottom: 1px solid #eee; transition: color 0.2s;
}
.blog-sidebar a:hover { color: #C9A96E; }

.blog-nav {
  display: flex; justify-content: space-between; gap: 30px;
  margin-top: 40px; padding-top: 30px; border-top: 1px solid #eee;
}
.blog-nav-prev, .blog-nav-next {
  font-family: 'Lato', sans-serif; font-size: 0.95rem; color: #333;
  text-decoration: none; line-height: 1.5; max-width: 45%;
}
.blog-nav-prev span, .blog-nav-next span {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: #C9A96E; display: block; margin-bottom: 4px; font-weight: 700;
}
.blog-nav-next { text-align: right; }
.blog-nav-prev.placeholder, .blog-nav-next.placeholder { visibility: hidden; }
@media (max-width: 600px) {
  .blog-nav { flex-direction: column; gap: 20px; }
  .blog-nav-next { text-align: left; }
}

@media (max-width: 768px) {
  .blog-post-wrap { padding: 40px 24px; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 80px;
}
.site-logo { justify-self: start; }
.site-logo img { height: 52px; width: auto; display: block; }
@media (max-width: 968px) { .site-logo img { height: 40px; } .hero h1 { font-size: 42px; } .section-header h2 { font-size: 34px; } .quote-block h2 { font-size: 36px; } .cta-banner h2 { font-size: 36px; } .feature-text h2 { font-size: 30px; } .guarantee-section h2 { font-size: 30px; } .testimonials h2 { font-size: 30px; } }

.nav-menu { display: flex; align-items: center; gap: 28px; justify-self: center; }
.nav-menu a {
  font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1.5px; color: #333;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: #C9A96E; }
.nav-menu a.nav-active { color: #C9A96E; }
.nav-menu-row2 a.nav-active { color: #C9A96E; }

.nav-cta {
  background: #C9A96E; color: #111 !important;
  padding: 10px 24px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.72rem; font-weight: 700;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s ease;
  justify-self: end;
}
.nav-cta:hover { background: #b8985a; color: #111; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: #1E3A5F; }

/* ===== HERO — CENTERED TEXT ===== */
.hero {
  position: relative; min-height: calc(75vh - 60px); display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: top center;
  margin-top: 80px;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.60);
}
.hero-content { position: relative; z-index: 2; max-width: 1140px; padding: 40px 40px 40px; text-align: center; }
.hero-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: rgba(255,255,255,0.65); margin-bottom: 49px; font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 58px; font-weight: 700; line-height: 1.2em; color: #fff; margin-bottom: 39px; text-align: center; }
.hero p { font-family: 'Lato', sans-serif; font-size: 19px; font-weight: 400; line-height: 1.8em; color: rgba(255,255,255,0.82); margin-bottom: 66px; text-align: center; }
.hero .btn { margin-bottom: 0; padding: 12px 24px; font-size: 12px; letter-spacing: 2px; border-radius: 3px; }
.hero-trust {
  font-size: 0.8rem; color: rgba(255,255,255,0.7); 
  letter-spacing: 0.5px; margin-top: 16px;
}
.hero-trust .stars { color: #C9A96E; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px;
  background: #C9A96E; color: #fff;
  font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  border: none; cursor: pointer; transition: all 0.3s ease;
  border-radius: 8px;
}
.btn:hover { background: #b8985a; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid #C9A96E; color: #C9A96E; }
.btn-outline:hover { background: #C9A96E; color: #fff; }
.btn-navy { background: #1E3A5F; }
.btn-navy:hover { background: #16294a; color: #fff; }
.btn-white { background: #fff; color: #111; }
.btn-white:hover { background: #E5E7EB; color: #111; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 20px 0; font-size: 0.8rem; color: #888; background: none; }
.breadcrumb a { color: #C9A96E; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 115px; }
.section-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
  color: #1E3A5F; margin-bottom: 34px; font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.section-header h2 { margin-bottom: 42px; font-size: 44px; }
.section-header p { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.8em; color: #6B7280; }
.feature-text h2 { font-size: 38px; margin-bottom: 40px; }
.feature-text p { font-family: 'Lato', sans-serif; font-size: 17px; font-weight: 400; line-height: 1.8em; color: #6B7280; margin-bottom: 40px; }
.feature-text p:last-of-type { margin-bottom: 55px; }

/* ===== STEP CARDS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; }
.step-number {
  font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700;
  color: #1E3A5F; opacity: 1; margin-bottom: 55px; line-height: 1.2em;
}
.step-number::after {
  content: ''; display: block; width: 25%; height: 2px;
  background: #1E3A5F; margin: 35px auto 0; margin-bottom: 0;
}
.step-card h3 { margin-bottom: 27px; font-size: 19px; font-weight: 700; line-height: 1.2em; color: #111; }
.step-card p { color: #6B7280; font-size: 15px; line-height: 1.8em; font-family: 'Lato', sans-serif; }
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== FEATURE BLOCKS ===== */
.feature-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 10px; align-items: center; }
.feature-image img { border-radius: 7px; max-width: 90%; box-shadow: 0 8px 20px rgba(0,0,0,0.40); }
.feature-text h3 { margin-bottom: 16px; }
.feature-text p { color: #555; margin-bottom: 40px; }

/* ===== QUOTE BLOCK ===== */
.quote-block { text-align: center; max-width: 880px; margin: 0 auto; padding: 40px; }
.quote-block h2 { margin-bottom: 24px; font-size: 46px; color: #fff; }
.quote-block p { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.8em; color: #A8B3C1; margin-bottom: 60px; }

/* ===== TESTIMONIALS — LIGHT GREY BG, DARK TEXT, SERIF ===== */
.testimonials { background: #F0F2F5; color: #222; padding: 120px 0; }
.testimonials h2 { color: #111; text-align: center; margin-bottom: 12px; font-size: 38px; }
.google-reviews-badge { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 40px; }
.google-reviews-badge .google-logo { display: flex; align-items: center; gap: 6px; font-size: 18px; font-weight: 700; font-family: 'Arial', sans-serif; }
.google-reviews-badge .google-logo span:nth-child(1) { color: #4285F4; }
.google-reviews-badge .google-logo span:nth-child(2) { color: #EA4335; }
.google-reviews-badge .google-logo span:nth-child(3) { color: #FBBC05; }
.google-reviews-badge .google-logo span:nth-child(4) { color: #4285F4; }
.google-reviews-badge .google-logo span:nth-child(5) { color: #34A853; }
.google-reviews-badge .google-logo span:nth-child(6) { color: #EA4335; }
.google-reviews-badge .review-score { font-size: 14px; color: #6B7280; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.google-reviews-badge .review-score .stars { display: flex; gap: 1px; }
.google-reviews-badge .review-score .stars svg { width: 14px; height: 14px; fill: #FBBC05; }
.google-reviews-badge .google-link { font-size: 12px; color: #4285F4; text-decoration: none; margin-left: 8px; }
.google-reviews-badge .google-link:hover { text-decoration: underline; }
#testimonial-container { width: 100%; max-width: 1000px; margin: 0 auto; }
.testimonial-viewport { overflow: hidden; width: 100%; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide { flex: 0 0 100%; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 340px; padding: 0 60px; }
.testimonial-slide .testimonial-stars { color: #C9A96E; font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.testimonial-slide .testimonial-text { font-size: 19px; font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.5em; margin-bottom: 24px; color: #333; max-width: 780px; }
.testimonial-slide .testimonial-author { font-size: 13px; color: #6B7280; font-family: 'Playfair Display', serif; font-weight: 700; }

/* ===== WALL ART OPTIONS ===== */
.options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.option-card { background: none; padding: 0; border: none; box-shadow: none; }
.option-card h3 { color: #1E3A5F; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #ddd; }
.option-card p { color: #555; font-size: 0.95rem; }

/* ===== GALLERY ===== */
/* Mosaic Gallery — Masonry */
.mosaic-gallery {
  width: 100%;
}
.masonry-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.masonry-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mosaic-item {
  overflow: hidden;
  border-radius: 0;
  position: relative;
  cursor: pointer;
}
.mosaic-item img {
  width: 100%; height: auto; display: block;
  transition: filter 0.3s ease, transform 1.2s ease, opacity 1.2s ease;
  /* Scroll zoom-in animation */
  transform: scale(0.85);
  opacity: 0;
}
.mosaic-item.is-visible img {
  transform: scale(1);
  opacity: 1;
}
.mosaic-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.3s ease;
  pointer-events: none;
}
.mosaic-item:hover::after { background: rgba(0,0,0,0.35); }
.mosaic-item:hover img { filter: brightness(0.85); transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 88vh; object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  background: none; border: none; font-size: 40px; color: #fff;
  cursor: pointer; z-index: 10001; line-height: 1;
  transition: color 0.2s ease; opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; color: #C9A96E; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 48px; color: #fff;
  cursor: pointer; z-index: 10001; line-height: 1;
  opacity: 0.6; transition: opacity 0.2s ease, color 0.2s ease;
  padding: 20px;
}
.lightbox-nav:hover { opacity: 1; color: #C9A96E; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 14px; font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
}

/* ===== SHOP ===== */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.shop-hero { padding: 120px 0 40px; text-align: center; background: #fff; }
.shop-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #1E3A5F; margin-bottom: 12px; }
.shop-hero p { color: #555; }
.product-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.3s ease; }
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.product-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.product-info { padding: 24px; text-align: center; }
.product-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-meta { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.product-price { font-size: 1.4rem; color: #1E3A5F; font-weight: 700; margin-bottom: 16px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: 4px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: #555; margin-bottom: 16px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-card { text-align: center; }
.how-card h3 { margin-bottom: 12px; }
.how-card p { color: #555; font-size: 0.95rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { color: #1E3A5F; margin-bottom: 16px; }
.contact-info p { color: #555; margin-bottom: 12px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail .label { font-weight: 700; min-width: 120px; color: #1E3A5F; }
.contact-form { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px;
  font-family: 'Lato', sans-serif; font-size: 1rem; background: #FAFAFA;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #C9A96E; background: #fff; }

/* ===== GIFT VOUCHERS ===== */
.giftup-container { max-width: 600px; margin: 0 auto; padding: 40px 0; text-align: center; }

/* ===== CTA BANNER — DARK CHARCOAL ===== */
.cta-banner { background: #111111; color: #fff; text-align: center; padding: 110px 0; }
.cta-banner .container { max-width: 75%; }
.cta-eyebrow { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 48px; }
.cta-banner h2 { color: #fff; margin-bottom: 44px; font-size: 48px; }
.cta-banner p { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.5em; color: #A8B3C1; margin-bottom: 88px; }

/* ===== GUARANTEE SECTION ===== */
.guarantee-section { background: #fff; text-align: center; padding: 120px 0; }
.guarantee-section .container-narrow { max-width: 700px; }
.guarantee-section h2 { margin-bottom: 32px; font-size: 38px; }
.guarantee-section p { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.8em; color: #6B7280; }
.guarantee-section p { color: #6B7280; font-size: 18px; line-height: 1.8em; margin-bottom: 36px; }

/* ===== FAQ — ACCORDION STYLE ===== */
.faq-section { background: #F8F8F8; padding: 120px 0; }
.faq-grid { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0e0e0; padding: 20px 0; }
.faq-item h3 { font-size: 1.1rem; color: #222; margin-bottom: 0; cursor: pointer; display: flex; align-items: center; gap: 12px; font-family: 'Lato', sans-serif; font-weight: 700; }
.faq-item h3::before { content: '+'; font-size: 1.3rem; color: #222; font-weight: 400; }
.faq-item.open h3::before { content: '\2212'; }
.faq-item p { color: #555; font-size: 0.95rem; margin-top: 12px; display: none; }
.faq-item.open p { display: block; }

/* ===== REVIEW LINK ===== */
.review-link {
  display: inline-block; padding: 12px 28px; background: #254B7C; color: #fff;
  border-radius: 2px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin: 20px 0; transition: background 0.2s ease;
}
.review-link:hover { background: #1a3a5c; color: #fff; }

/* ===== EXPLORE LINKS ===== */
.explore-heading { text-align: center; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 60px; font-weight: 700; }
.explore-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.explore-link {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1px; color: #1a2b47; font-weight: 700;
  transition: gap 0.2s ease;
}
.explore-link:hover { gap: 12px; color: #C9A96E; }

/* ===== FOOTER ===== */
.site-footer { background: #222222; color: #999; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 12px; color: #999; }
.footer-brand .phone { color: #C9A96E; font-size: 1.1rem; }
.footer-brand .email { color: #C9A96E; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; font-family: 'Lato', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: #999; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: #C9A96E; }
.footer-cta-box { background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.2); padding: 24px; border-radius: 4px; margin-bottom: 20px; }
.footer-cta-box p { font-size: 0.9rem; margin-bottom: 16px; color: #ccc; }
.footer-cta-box .btn { background: #1E3A5F; color: #fff; }
.footer-cta-box .btn:hover { background: #152D4A; color: #fff; }

.footer-bottom { border-top: 1px solid #333; padding-top: 24px; text-align: center; font-size: 0.8rem; color: #666; }
.footer-bottom a { color: #C9A96E; }

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; background: #1E3A5F; color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  opacity: 0; pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #152D4A; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }

/* ===== BLOG POSTS ===== */
.blog-content h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 16px; color: #1E3A5F; }
.blog-content h3 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; color: #1E3A5F; }
.blog-content p { color: #333; margin-bottom: 1.2rem; font-size: 1.05rem; }
.blog-content ul { margin-bottom: 1.2rem; padding-left: 24px; }
.blog-content ul li { margin-bottom: 8px; color: #333; list-style: disc; }
.blog-content hr { border: none; border-top: 1px solid #e2e8f0; margin: 40px 0; }
.blog-content strong { color: #1E3A5F; }
.blog-content a { color: #C9A96E; text-decoration: underline; }

/* ===== PREPARE PAGE ===== */
.prepare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prepare-item { display: flex; gap: 20px; align-items: flex-start; }
.prepare-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: #C9A96E; min-width: 50px; }
.prepare-item h3 { margin-bottom: 8px; }
.prepare-item p { color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #fff; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); gap: 20px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .steps-grid, .steps-grid-4 { grid-template-columns: 1fr; }
  .feature-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-wrapper { gap: 10px; }  .masonry-col { gap: 10px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 70px 0; }
  .mosaic-gallery, .shop-grid { grid-template-columns: 1fr; }  .masonry-wrapper { flex-direction: column; gap: 10px; }  .masonry-col { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 90px 24px; }
  .hero h1 { font-size: 30px; } .section-header h2 { font-size: 26px; } .quote-block h2 { font-size: 28px; } .cta-banner h2 { font-size: 28px; } .feature-text h2 { font-size: 24px; } .guarantee-section h2 { font-size: 24px; } .testimonials h2 { font-size: 24px; } .step-number { font-size: 44px; }
  .options-grid { grid-template-columns: 1fr; }
  .prepare-grid { grid-template-columns: 1fr; }
  .explore-links { flex-direction: column; align-items: center; gap: 16px; }
}

/* ===== v2 ADDITIONAL FIXES ===== */

/* Trust bar below hero — separate black bar */
.hero-trust-bar {
  background: #111111; color: rgba(255,255,255,0.6); text-align: center;
  padding: 22px 24px; font-size: 11px; text-transform: uppercase;
  letter-spacing: 3px; font-family: 'Lato', sans-serif; font-weight: 700;
}
.hero-trust-bar .stars { color: #C9A96E; font-size: 12px; }

/* Nav second row — for GIFT VOUCHERS */
.nav-menu-row2 {
  display: flex; justify-content: center; gap: 32px;
  padding-top: 4px;
}
.nav-menu-row2 a {
  font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1.5px; color: #333;
  transition: color 0.2s ease;
}
.nav-menu-row2 a:hover { color: #C9A96E; }

/* White outline button for dark backgrounds */
.btn-outline-white {
  background: transparent; color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55); border-radius: 3px;
  padding: 12px 24px; font-family: 'Lato', sans-serif; font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}
.btn-outline-white:hover { background: #111111; color: #FFFFFF; }

/* Testimonial pagination indicators */
.testimonial-pagination {
  display: flex; justify-content: center; gap: 4px; margin-bottom: 16px;
}
.testimonial-pagination svg {
  width: 18px; height: 18px; fill: #C9A96E;
}

/* Step card divider line */


/* FAQ first item open by default */
.faq-item.open p { display: block; }

/* CTA banner outline button */
.cta-banner .btn-outline-white {
  background: #FFFFFF; color: #111111; border: none;
}
.cta-banner .btn-outline-white:hover { background: #E5E7EB; color: #111; }
.cta-banner .btn { letter-spacing: 2px; padding: 12px 24px; font-size: 12px; }

/* ===== NAV TWO-ROW STRUCTURE ===== */
.nav-menu-wrap {
  justify-self: center;
  text-align: center;
}
.nav-menu-wrap .nav-menu {
  justify-content: center; gap: 28px;
}
.nav-menu-wrap .nav-menu-row2 {
  padding-top: 6px;
}
/* On mobile, show full menu in dropdown */
@media (max-width: 968px) {
  .nav-menu-wrap { display: none; }
  .nav-menu-wrap.open {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: #fff; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); gap: 16px;
    text-align: center;
  }
  .nav-menu-wrap.open .nav-menu { flex-direction: column; gap: 16px; }
  .nav-menu-wrap.open .nav-menu-row2 { padding-top: 0; }
}

/* ===== ACTIVE NAV STATE ===== */
.nav-menu a.nav-active {
  color: #C9A96E;
  font-weight: 700;
}

/* Review avatars and nav */
.review-author-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; background: #1E3A5F; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-family: 'Playfair Display', serif; }
.review-date { font-size: 12px; color: #9CA3AF; font-family: 'Lato', sans-serif; }
.review-nav { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.review-nav-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: #D9D9D9; cursor: pointer; padding: 0; transition: background 0.2s ease; }
.review-nav-dot.active { background: #C9A96E; }
.review-nav-dot:hover { background: #C9A96E; }
/* Review navigation arrows */
.testimonial-nav-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testimonial-arrow { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex-shrink: 0; transition: opacity 0.2s ease; opacity: 0.7; }
.testimonial-arrow:hover { opacity: 1; }
.testimonial-arrow svg { width: 36px; height: 36px; fill: none; stroke: #C9A96E; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-arrow:disabled { opacity: 0.25; cursor: default; }

