/* ============================================
   RAPHAEL OBOT PHOTOGRAPHY — STYLESHEET
   ============================================ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #FFFFFF;
  --cream:      #FAF9F6;
  --grey-light: #E8E8E8;
  --grey:       #AEAEAE;
  --dark:       #4A4A4A;
  --black:      #1A1A1A;
  --brown:      #B8A896;
  --brown-lt:   #D4CAC0;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', sans-serif;

  --nav-h: 80px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 2px; }

/* ═══════════════════════════════════════════
   NAVIGATION (shared across all pages)
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--grey-light); }

/* Logo: image + text side by side */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
}
.nav-logo-text span { color: var(--brown); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--black);
  color: var(--black) !important;
  transition: background 0.25s, color 0.25s;
}
.nav-book:hover { background: var(--black); color: var(--white) !important; }
.nav-book::after { display: none !important; }

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile dropdown nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 32px 5vw;
  z-index: 850;
  border-bottom: 1px solid var(--grey-light);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
  color: var(--black);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-dark  { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--brown); }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-brown { background: var(--brown); color: var(--white); }
.btn-brown:hover { background: #9e8e7c; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--brown);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   PAGE HERO (portfolio / pricing / contact)
═══════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 5vw 60px;
  text-align: center;
  background: var(--white);
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--brown); }
.page-hero-sub {
  font-size: 13px;
  color: var(--dark);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   HORIZONTAL GALLERY (portfolio strips)
═══════════════════════════════════════════ */
.portfolio-strip,
.corporate-strip {
  padding: 60px 0 80px 5vw;
  overflow: hidden;
  background: var(--white);
}
.portfolio-strip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.portfolio-strip-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--brown);
}

.h-gallery {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-right: 5vw;
  padding-bottom: 12px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--brown) var(--cream);
}
.h-gallery:active { cursor: grabbing; }
.h-gallery::-webkit-scrollbar { height: 2px; }
.h-gallery::-webkit-scrollbar-track { background: var(--cream); }
.h-gallery::-webkit-scrollbar-thumb { background: var(--brown); }

.h-gallery-item {
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}
.h-gallery-item img {
  height: 380px;
  width: auto;
  min-width: 260px;
  max-width: 380px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
  display: block;
}
.h-gallery-item:hover img { transform: scale(1.04); }

.h-gallery-item .item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
  cursor: pointer;
}
.h-gallery-item:hover .item-overlay { background: rgba(26,26,26,0.45); }

.item-overlay-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
}
.h-gallery-item:hover .item-overlay-content {
  opacity: 1;
  transform: translateY(0);
}
.item-overlay-content h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.item-overlay-content p {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.zoom-icon {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.h-gallery-item:hover .zoom-icon { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none; border: none;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  background: none;
  border: none;
  padding: 16px;
  transition: opacity 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════ */
.pricing-section {
  padding: 80px 5vw;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid var(--grey-light);
  padding: 48px 36px;
  background: var(--white);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}
.pricing-card.featured { background: var(--black); border-color: var(--black); }
.pricing-card.featured * { color: var(--white); }
.featured-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--brown);
  color: var(--white) !important;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.pricing-tier {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}
.pricing-card.featured .pricing-tier { color: var(--brown-lt); }
.pricing-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
  line-height: 0;
  margin-right: 2px;
}
.pricing-price-note {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.pricing-card.featured .pricing-price-note { color: rgba(255,255,255,0.4); }
.pricing-divider { height: 1px; background: var(--grey-light); margin-bottom: 32px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }
.pricing-features { margin-bottom: 40px; }
.pricing-features li {
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--grey-light);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.pricing-features li::before {
  content: '—';
  color: var(--brown);
  font-size: 12px;
  flex-shrink: 0;
}
.pricing-cta { width: 100%; text-align: center; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--grey-light); padding: 20px 0; }
.faq-q {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon { font-size: 18px; color: var(--brown); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-wrap {
  padding: calc(var(--nav-h) + 80px) 5vw 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-info p {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 48px;
}
.contact-details { margin-bottom: 48px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-text { font-size: 13px; color: var(--dark); }
.contact-detail-text strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.wa-btn:hover { background: #1fba58; }

/* Form */
.contact-form-wrap { background: var(--cream); padding: 48px; }
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brown); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B8A896' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-note { font-size: 11px; color: var(--grey); margin-top: 16px; }

.form-success { display: none; text-align: center; padding: 48px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 40px; color: var(--brown); margin-bottom: 16px; }
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}
.form-success p { font-size: 13px; color: var(--dark); }

/* ═══════════════════════════════════════════
   FOOTER (shared across all pages)
═══════════════════════════════════════════ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 5vw 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.footer-brand h3 span { color: var(--brown); }
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }
.social-links { display: flex; gap: 20px; }
.social-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.social-links a:hover { color: var(--brown); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo-img { height: 38px; }

  .h-gallery-item img { height: 280px; min-width: 200px; max-width: 280px; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero { padding-top: calc(var(--nav-h) + 48px); }
}

@media (max-width: 480px) {
  .nav-logo-text { display: none; }
  .nav-logo-img { height: 40px; }
  .pricing-card { padding: 36px 24px; }
  .contact-wrap { padding-left: 4vw; padding-right: 4vw; }
  .social-links { gap: 14px; }
  .footer-bottom p { font-size: 10px; }
}
