/* Cloud Grey Studio — shared stylesheet */

:root {
  --grey-900: #2b2b2b;
  --grey-700: #4a4a4a;
  --grey-500: #6f6f6f;
  --grey-300: #969696;
  --grey-100: #e4e2dd; /* brand colour */
  --off-white: #e4e2dd; /* brand colour */
  --white: #ffffff;
  --accent: #a98f6b; /* warm neutral accent */
  --max-width: 1120px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--grey-900);
  background: var(--off-white);
  line-height: 1.6;
}

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

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

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

/* Header / nav */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  text-align: center;
  line-height: 1.18;
}

.logo .logo-top {
  display: block;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey-900);
}

.logo .logo-bottom {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey-300);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-700);
  transition: color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--grey-900);
  border-bottom: 2px solid var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--grey-900);
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--grey-900);
  color: var(--white);
}

.btn-primary:hover { background: var(--accent); }

.btn-outline {
  background: transparent;
  border-color: var(--grey-900);
  color: var(--grey-900);
}

.btn-outline:hover {
  background: var(--grey-900);
  color: var(--white);
}

.btn-small { padding: 10px 20px; font-size: 0.8rem; }

/* Hero */

.hero {
  background: linear-gradient(160deg, var(--grey-100), var(--off-white));
  padding: 100px 0 80px;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--grey-700);
  font-size: 1.05rem;
}

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

/* Sections */

section { padding: 80px 0; }

section.alt { background: var(--white); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--grey-300);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }

.section-header p { color: var(--grey-700); }

/* Cards / grids */

.grid {
  display: grid;
  gap: 28px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-100);
}

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }

.card p { color: var(--grey-700); font-size: 0.95rem; }

/* Pricing / booking */

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card .price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-300);
  font-weight: 700;
}

.price-card h3 { font-size: 1.05rem; line-height: 1.35; }

.price-card .price { font-size: 1.6rem; font-weight: 700; color: var(--grey-900); }

.price-card.has-photo-bg {
  position: relative;
  overflow: hidden;
}

.price-card .card-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  z-index: 0;
}

.price-card.has-photo-bg > *:not(.card-bg-layer) {
  position: relative;
  z-index: 1;
}

.price-group { margin-bottom: 56px; }

.price-group h3.group-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-500);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--grey-100);
  padding-bottom: 10px;
}

/* Info strip */

.info-strip {
  background: var(--grey-900);
  color: var(--white);
  padding: 48px 0;
}

.info-strip .grid-3 { text-align: center; }

.info-strip h4 {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--grey-300);
  margin-bottom: 8px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-details .item { margin-bottom: 26px; }

.contact-details h4 {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--grey-300);
  margin-bottom: 6px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-100);
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 16px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-100);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form .btn { margin-top: 22px; width: 100%; }

.social-links { display: flex; gap: 16px; margin-top: 10px; }

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-links a:hover { background: var(--grey-900); color: var(--white); border-color: var(--grey-900); }

/* Footer */

footer.site-footer {
  background: var(--grey-900);
  color: var(--grey-100);
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

footer.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

footer.site-footer h4 {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--grey-300);
}

footer.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  color: var(--grey-500);
  font-size: 0.8rem;
  text-align: center;
}

/* Hero with background photo */

.hero-photo {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: left;
  padding: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,20,20,0.62) 0%, rgba(20,20,20,0.38) 45%, rgba(20,20,20,0.12) 100%);
}

.hero-photo .container { position: relative; z-index: 2; }

.hero-photo .eyebrow { color: var(--grey-100); }
.hero-photo h1 { color: var(--white); margin: 0 0 20px; max-width: 640px; }
.hero-photo p { color: rgba(255,255,255,0.92); max-width: 520px; margin: 0 0 32px; }
.hero-photo .hero-actions { justify-content: flex-start; }

/* Trust badge */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.trust-badge .stars { color: #f2c94c; letter-spacing: 2px; }

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--grey-700);
  text-align: center;
}

.trust-bar .stars { color: #d9a441; letter-spacing: 1px; }

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid .tall { grid-row: span 2; }

/* Photo slider — single row, auto-scrolling, uncropped images */

.photo-slider-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.photo-slider-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: photo-slide 16s linear infinite;
  animation-delay: 0s;
}

/* Shorter image sets (e.g. homepage studio gallery) need a shorter duration
   so the visual speed (px/sec) matches longer sliders like the brand gallery */
.photo-slider-track.speed-half {
  animation-duration: 8s;
}

.photo-slider-track img {
  height: 320px;
  width: auto;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

.photo-slider-wrap:hover .photo-slider-track {
  animation-play-state: paused;
}

@keyframes photo-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .photo-slider-track img { height: 220px; }
  .photo-slider-track { animation-duration: 12s; }
  .photo-slider-track.speed-half { animation-duration: 6s; }
}

/* Testimonials */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.testimonial-card .stars { color: #d9a441; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.testimonial-card p.quote { font-size: 0.95rem; color: var(--grey-900); margin-bottom: 14px; font-style: italic; }
.testimonial-card .name { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey-500); font-weight: 700; }

/* Sticky mobile CTA */

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 12px 16px;
  gap: 10px;
}

.sticky-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.sticky-mobile-cta .btn-primary { background: var(--grey-900); color: var(--white); }
.sticky-mobile-cta .btn-whatsapp { background: #25D366; color: var(--white); }

/* Promo popup */

.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.promo-popup-overlay.visible { opacity: 1; }

.promo-popup {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.promo-popup-overlay.visible .promo-popup {
  transform: translateY(0) scale(1);
}

.promo-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--grey-700);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.promo-popup-close:hover {
  background: var(--grey-900);
  color: var(--white);
}

.promo-popup-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.promo-popup-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--grey-900);
}

@media (max-width: 480px) {
  .promo-popup { padding: 36px 22px 26px; }
  .promo-popup-text { font-size: 1rem; }
}

/* Responsive */

@media (max-width: 860px) {
  .grid-3, .grid-4, .grid-2, .contact-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .hero-photo { min-height: 520px; text-align: center; }
  .hero-photo .container { display: flex; flex-direction: column; align-items: center; }
  .hero-photo h1, .hero-photo p { max-width: 100%; }
  .hero-photo .hero-actions { justify-content: center; }
  body { padding-bottom: 70px; }
  .sticky-mobile-cta { display: flex; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    display: none;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .testimonial-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .price-card h3 { font-size: 0.95rem; }
}
