/* ==========================================================================
   Verity Sense Studios — Stylesheet (Ghog-style design language)
   ========================================================================== */

:root {
  --accent: #c19158;
  --accent-dark: #a87b45;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #6b6b6b;
  --bg: #ffffff;
  --bg-alt: #f7f5f2;
  --border: #e8e3db;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --container: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: 38px; margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 16px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 34px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--outline { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn--outline:hover { background: var(--dark); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
.btn--outline-light:hover { background: #fff; color: var(--dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled, .site-header.is-solid {
  background: rgba(255,255,255,.97);
  padding: 14px 0;
  box-shadow: 0 2px 18px rgba(0,0,0,.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 38px; width: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
.is-scrolled .logo img, .is-solid .logo img { filter: brightness(0); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; z-index: 600; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: background .3s ease, transform .3s ease, opacity .3s ease; }
.is-scrolled .nav-toggle span, .is-solid .nav-toggle span { background: var(--dark); }

.main-nav ul { display: flex; align-items: center; gap: 36px; }
.main-nav a, .main-nav .drop-label {
  font-size: 14px; font-weight: 500; letter-spacing: .4px;
  color: #fff; padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .3s ease, border-color .3s ease;
  cursor: pointer;
}
.is-scrolled .main-nav a, .is-solid .main-nav a,
.is-scrolled .main-nav .drop-label, .is-solid .main-nav .drop-label { color: var(--dark); }
.main-nav a:hover, .main-nav .active > a { border-color: var(--accent); }

.has-dropdown { position: relative; }
.has-dropdown > .drop-label::after { content: '▾'; margin-left: 5px; font-size: 11px; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; min-width: 180px; padding: 10px 0;
  border-radius: var(--radius); box-shadow: 0 12px 30px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { color: var(--dark) !important; display: block; padding: 9px 22px; font-size: 13.5px; border: none !important; }
.dropdown a:hover { background: var(--bg-alt); color: var(--accent) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; color: #fff; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1); transform-origin: center;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; animation: heroZoom 7s ease-out forwards; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45)); }

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.hero-content h1 { color: #fff; font-size: 52px; max-width: 780px; margin-bottom: 16px; }
.hero-content .subtext { font-size: 16px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 34px; }
.hero-dots { position: absolute; bottom: 30px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); border: 0; cursor: pointer; padding: 0; transition: background .3s ease, transform .3s ease; }
.hero-dots button.is-active { background: #fff; transform: scale(1.2); }

.page-hero {
  position: relative; height: 46vh; min-height: 340px; color: #fff;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background-size: cover; background-position: center;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.page-hero--tall { height: 100vh; min-height: 560px; }
.page-hero--plain { background-color: var(--bg-alt); background-image: none !important; }
.page-hero--plain::after { display: none; }
.page-hero--plain .page-hero-content h1 { color: var(--dark); }
.page-hero--plain .page-hero-content span,
.page-hero--plain .page-hero-content .subtext { color: var(--text-light); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content span { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; opacity: .85; }
.page-hero-content h1 { color: #fff; font-size: 46px; margin-top: 10px; }
.page-hero-content .subtext { display: block; font-size: 14px; font-style: italic; margin-top: 12px; opacity: .9; }
.page-hero-content .hero-lede { font-family: var(--font-heading); font-weight: 400; font-size: 17px; color: #fff; margin-top: 12px; }

/* ---------- Galleries ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gallery-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-card .img-wrap { aspect-ratio: 4 / 5; overflow: hidden; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-card:hover img { transform: scale(1.07); }
.gallery-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; color: #fff;
}
.gallery-card .overlay h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.gallery-card .overlay .view-link {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; width: max-content;
}

.album-stack { display: flex; flex-direction: column; gap: 30px; }
.album-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.album-card img { width: 100%; max-height: 620px; object-fit: cover; transition: transform .6s ease; }
.album-card:hover img { transform: scale(1.03); }
.album-card .overlay {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 45%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff;
}
.album-card .overlay h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.album-card .overlay .view-link { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; width: max-content; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; }
.testi-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; font-size: 14px; }
.testi-card p.quote { color: var(--text); font-size: 15.5px; margin-bottom: 20px; }
.testi-card .name { font-weight: 600; font-size: 13.5px; color: var(--dark); text-transform: uppercase; letter-spacing: .5px; }

.testi-slider { max-width: 640px; margin: 0 auto; text-align: center; }
.testi-slide { display: none; }
.testi-slide.is-active { display: block; animation: testiFade .5s ease; }
@keyframes testiFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: 0; cursor: pointer; padding: 0; transition: background .3s ease, transform .3s ease; }
.testi-dots button.is-active { background: var(--accent); transform: scale(1.2); }

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-split img { border-radius: var(--radius); }
.about-split .eyebrow { margin-bottom: 12px; }
.about-split h2 { font-size: 36px; margin-bottom: 20px; }
.about-split p { color: var(--text-light); margin-bottom: 18px; }
.about-split--text-only { grid-template-columns: 1fr; max-width: 720px; text-align: center; }

.stat-section { padding: 64px 0; }
.stat-number { font-family: var(--font-body); font-weight: 700; font-size: 42px; color: var(--dark); line-height: 1; }
.stat-label { font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-top: 10px; }
.about-split--text-only .eyebrow { text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; cursor: pointer; padding: 22px 4px;
  font-family: var(--font-heading); font-size: 19px; text-align: left; color: var(--dark);
}
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform .25s ease; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 4px 22px; color: var(--text-light); font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing-band { background: var(--dark); color: #fff; padding: 90px 24px; text-align: center; }
.pricing-row { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.pricing-row .tier { padding: 0 30px; border-left: 1px solid rgba(255,255,255,.15); }
.pricing-row .tier:first-child { border-left: none; }
.pricing-row h3 { color: #fff; font-size: 19px; font-weight: 400; margin-bottom: 10px; }
.pricing-row .price { font-size: 14px; color: var(--accent); letter-spacing: .5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; }
.contact-info h2 { font-size: 32px; margin-bottom: 18px; }
.contact-info p { color: var(--text-light); margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-detail .ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.contact-detail .label { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-light); }
.contact-detail .value { font-size: 15px; color: var(--dark); font-weight: 500; }
.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 13px; margin-bottom: 7px; color: var(--dark); font-weight: 500; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 13px 14px; font-family: var(--font-body); font-size: 14.5px; background: #fff; color: var(--text);
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }
#formStatus { margin-top: 16px; font-size: 14px; }
#formStatus.success { color: #2f7d4f; }
#formStatus.error { color: #b3453a; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: #fff; text-align: center; padding: 90px 24px; }
.cta-band .eyebrow { color: var(--accent); }
.cta-band h2 { color: #fff; font-size: 38px; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
.footer-grid .logo img { height: 30px; filter: brightness(0); margin-bottom: 14px; }
.footer-grid p { color: var(--text-light); font-size: 14px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; color: var(--text-light); transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col .social-row a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-light); }
.back-to-top { color: var(--dark); font-weight: 500; }
.back-to-top:hover { color: var(--accent); }

.text-center { text-align: center; }

/* ---------- WhatsApp button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,.3); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .gallery-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr; gap: 26px; }
  .pricing-row .tier { border-left: none; border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; }
  .pricing-row .tier:first-child { border-top: none; padding-top: 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 30%; background: #fff;
    flex-direction: column; padding: 100px 32px 32px;
    transform: translateX(100%); transition: transform .35s ease;
    z-index: 550; box-shadow: -10px 0 30px rgba(0,0,0,.08);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .main-nav a, .main-nav .drop-label { color: var(--dark); font-size: 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding-left: 10px; margin-top: 10px; }
  .has-dropdown:hover .dropdown { display: block; }
  .hero-content h1 { font-size: 32px; }
  .gallery-grid, .testi-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-content h1 { font-size: 32px; }
  .whatsapp-fab { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}
