/* ============================================================================
   CHARBEL KFOURY HAIR DESIGNER : Stylesheet
   Premium · Mobile-first · Black / Gold / White / Beige / Nude / Soft Brown
   ============================================================================ */

/* ---------- Design tokens (edit colors here in one place) ---------- */
:root {
  --black:      #0e0e0e;
  --black-soft: #1a1a1a;
  --gold:       #c9a24b;   /* main gold accent */
  --gold-soft:  #e3c987;
  --gold-deep:  #a67c2e;
  --white:      #ffffff;
  --beige:      #f6f0e6;   /* light section background */
  --nude:       #efe6da;
  --brown:      #6b584a;   /* soft brown text */
  --brown-deep: #4a3c32;
  --ink:        #2a2521;   /* main body text */
  --muted:      #8a8178;   /* secondary text */
  --line:       #e7ddcf;   /* hairline borders */

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 10px 30px rgba(40, 30, 15, 0.10);
  --shadow-lg:  0 20px 50px rgba(40, 30, 15, 0.16);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1160px;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;            /* large, readable base text */
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
  box-shadow: 0 8px 22px rgba(201, 162, 75, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 28px rgba(201, 162, 75, 0.5); }

.btn-outline-light { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--black); }

.btn-ghost-light { border-color: transparent; color: var(--white); background: rgba(255,255,255,.12); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }

.btn-outline-dark { border-color: var(--gold); color: var(--brown-deep); background: transparent; }
.btn-outline-dark:hover { background: var(--gold); color: var(--black); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  transition: background .3s ease;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; flex-direction: column; line-height: 1; color: var(--white); }
.brand-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .03em; }
.brand-sub { font-size: .68rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-soft); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-link { color: rgba(255,255,255,.86); font-size: .98rem; letter-spacing: .02em; position: relative; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta { color: var(--black); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; }
.hamburger span { width: 26px; height: 2.5px; background: var(--gold-soft); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* DESKTOP / LAPTOP background: landscape salon photo filling the hero.
     background-color is a dark fallback shown only if the image is missing. */
  background-color: #0e0e0e;
  background-image: url("../assets/images/hero/salon-hero-bw.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  padding-top: var(--header-h);
}

/* Dark overlay (z-index 1) so the white & gold text stays readable */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(14,14,14,.55), rgba(14,14,14,.72));
}

.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 30px; padding-bottom: 60px; }
.hero-eyebrow { color: var(--gold-soft); letter-spacing: .25em; text-transform: uppercase; font-size: .8rem; margin-bottom: 18px; }
.hero-title { font-size: clamp(2.7rem, 9vw, 5rem); font-weight: 700; letter-spacing: .01em; }
.hero-title span { color: var(--gold-soft); font-style: italic; font-weight: 500; }
.hero-tagline { font-size: clamp(1.15rem, 4vw, 1.5rem); margin-top: 18px; color: #f3ead9; font-family: var(--font-serif); }
.hero-desc { font-size: 1.05rem; margin-top: 14px; color: rgba(255,255,255,.82); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--gold-soft); font-size: 1.6rem; z-index: 2;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* MOBILE hero: override ONLY the image with the dedicated vertical photo.
   Everything else (cover, center, overlay) is inherited from the base .hero. */
@media (max-width: 768px) {
  .hero {
    background-image: url("../assets/images/hero/salon-hero-mobile.png");
  }
}

/* ---------- Trust ---------- */
.trust { background: var(--black-soft); padding: 50px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { text-align: center; color: var(--white); padding: 18px 14px; border: 1px solid rgba(201,162,75,.22); border-radius: var(--radius); background: rgba(255,255,255,.02); }
.trust-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-card h3 { font-size: 1.15rem; color: var(--gold-soft); margin-bottom: 6px; }
.trust-card p { font-size: .92rem; color: rgba(255,255,255,.7); }

/* ---------- Generic section ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { color: var(--gold-deep); letter-spacing: .25em; text-transform: uppercase; font-size: .78rem; font-weight: 600; margin-bottom: 12px; }
.eyebrow.light { color: var(--gold-soft); }
.section-title { font-size: clamp(2rem, 6vw, 3rem); color: var(--brown-deep); }
.section-title.light { color: var(--white); }
.section-sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.section-sub.light { color: rgba(255,255,255,.75); }

/* ---------- Services ---------- */
.services { background: var(--white); }
.service-group-title { text-align: center; font-size: 1.6rem; color: var(--gold-deep); margin: 14px 0 26px; position: relative; }
.service-group-title::after { content: ""; display: block; width: 60px; height: 2px; background: var(--gold); margin: 12px auto 0; }
.service-group-title:not(:first-of-type) { margin-top: 56px; }

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

.service-card {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;                 /* keep image corners rounded */
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.service-card:hover .service-media img { transform: scale(1.06); }

/* Service image (cropped nicely, gradient fallback beneath) */
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nude), var(--beige));
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

.service-body { padding: 18px 16px 22px; }
.service-card h4 { font-size: 1.18rem; color: var(--brown-deep); margin-bottom: 6px; }
.service-card p { font-size: .92rem; color: var(--muted); }

/* "Example visuals" note */
.example-note {
  margin-top: 14px;
  display: inline-block;
  font-size: .85rem;
  color: var(--gold-deep);
  background: rgba(201,162,75,.10);
  border: 1px solid rgba(201,162,75,.35);
  border-radius: 50px;
  padding: 6px 16px;
}
.section-sub.light + .example-note { color: var(--gold-soft); background: rgba(201,162,75,.16); }

.center-cta { text-align: center; margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.center-cta.left { justify-content: flex-start; margin-top: 26px; }

/* ---------- Prices ---------- */
.prices { background: var(--beige); }
.price-card { max-width: 720px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 34px; }
.price-list li { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 1.08rem; }
.price-list li:last-child { border-bottom: 0; }
.price-name { color: var(--brown-deep); font-weight: 500; }
.price-name em { color: var(--muted); font-style: italic; font-weight: 400; font-size: .9em; }
.price-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.price-val { color: var(--gold-deep); font-weight: 600; font-size: 1.12rem; white-space: nowrap; }
.price-note { margin-top: 22px; color: var(--muted); font-size: .92rem; font-style: italic; text-align: center; }

/* ---------- Offers ---------- */
.offers { background: var(--black); }
.offers-grid { grid-template-columns: repeat(3, 1fr); }
.offer-card {
  position: relative;
  background: linear-gradient(160deg, #1e1a14, #14110c);
  border: 1px solid rgba(201,162,75,.3);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  color: var(--white);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.5); }
.offer-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--black);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.offer-card h3 { font-size: 1.5rem; color: var(--gold-soft); margin-bottom: 10px; padding-right: 70px; }
.offer-card p { color: rgba(255,255,255,.78); font-size: .98rem; margin-bottom: 22px; flex: 1; }
.offer-card .btn { width: 100%; }

/* ---------- Loyalty ---------- */
.loyalty { background: var(--nude); }
.loyalty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.loyalty-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow); }
.loyalty-icon { font-size: 2.4rem; margin-bottom: 12px; }
.loyalty-card h4 { font-size: 1.3rem; color: var(--brown-deep); margin-bottom: 8px; }
.loyalty-card p { color: var(--muted); font-size: .94rem; }
.loyalty-note { text-align: center; margin-top: 36px; font-size: 1.05rem; color: var(--brown); background: var(--white); border: 1px dashed var(--gold); border-radius: 50px; padding: 14px 24px; display: inline-block; position: relative; left: 50%; transform: translateX(-50%); }

/* ---------- Booking ---------- */
.booking { background: var(--beige); }
.booking-wrap { max-width: 820px; }
.booking-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row[hidden] { display: none; }   /* let the hidden attribute win over display:grid */
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-size: .95rem; font-weight: 500; color: var(--brown-deep); margin-bottom: 7px; }
.field b { color: var(--gold-deep); }
.field small { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fdfbf7;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.12); }

.form-message { margin-top: 18px; text-align: center; font-size: 1rem; font-weight: 500; min-height: 1.4em; }
.form-message.success { color: #2e7d4f; }
.form-message.error { color: #d9534f; }

/* Availability note (no backend yet, slots aren't blocked automatically) */
.booking-note {
  margin: 4px 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #fdf3e3;
  border: 1px solid #e7c98a;
  color: #8a6d1f;
  font-size: .96rem;
  font-weight: 500;
  text-align: center;
}

/* Cancel / Reschedule block */
.cancel-block { margin-top: 22px; }
.cancel-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 6px 0 18px;
  color: var(--muted); font-size: .9rem; letter-spacing: .04em;
}
.cancel-divider::before, .cancel-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.cancel-form { margin-top: 18px; }

/* Live estimate (duration + finish time) */
.booking-estimate {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, #221b11, #14100a);
  border: 1px solid rgba(201,162,75,.4);
  color: var(--white);
}
.estimate-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 7px 0;
  font-size: 1.02rem;
}
.estimate-row + .estimate-row { border-top: 1px dashed rgba(201,162,75,.25); }
.estimate-row span { color: rgba(255,255,255,.8); }
.estimate-row strong { color: var(--gold-soft); font-family: var(--font-serif); font-size: 1.2rem; }
.estimate-hint { margin-top: 10px; font-size: .82rem; color: rgba(255,255,255,.55); font-style: italic; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  /* Gradient fallback shown beneath the image */
  background: linear-gradient(135deg, var(--nude), var(--beige));
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(14,14,14,.82));
  color: var(--white); font-family: var(--font-serif); font-size: 1.05rem;
  padding: 26px 14px 12px; text-align: center;
}
/* Placeholder visuals are defined once in the consolidated block below. */

/* ---------- About ---------- */
.about { background: var(--beige); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--nude), var(--brown)); position: relative; }
/* Meet the Designer portrait: crop from the top so the face shows (not legs).
   If "center top" still cuts oddly, change to: object-position: center 15%; */
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text p { color: var(--brown); margin-top: 16px; }
.about-text .section-title { text-align: left; }
.about-text .eyebrow { text-align: left; }

/* ---------- Team ---------- */
.team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--nude), var(--brown));
  margin-bottom: 16px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .4s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { font-size: 1.35rem; color: var(--brown-deep); }
.team-role { color: var(--gold-deep); font-size: .95rem; letter-spacing: .04em; margin-top: 2px; }
.team-desc { color: var(--muted); font-size: .9rem; margin-top: 8px; line-height: 1.5; }
/* Spacing when a second team group title follows the first grid */
.team .service-group-title:not(:first-of-type) { margin-top: 52px; }

/* ============================================================================
   PREMIUM IMAGE PLACEHOLDERS
   Shown automatically (via js/script.js) whenever a real photo file is not yet
   present, so the site never shows a broken-image icon. Luxury black + gold
   tile with the service / team / category name written inside.
   Replace the local images in assets/images/... to make these disappear.
   ============================================================================ */
.service-media.is-placeholder,
.team-photo.is-placeholder,
.gallery-item.is-placeholder,
.about-photo.is-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 36%, rgba(201,162,75,.12), transparent 62%),
    linear-gradient(155deg, #221b11 0%, #2e2416 52%, #14100a 100%);
  box-shadow: inset 0 0 0 1px rgba(201,162,75,.40), inset 0 0 0 8px rgba(201,162,75,.05);
}
.is-placeholder > img { display: none !important; }   /* hide the missing image */

/* Service / team / about: show the name in elegant gold serif */
.service-media.is-placeholder::before,
.team-photo.is-placeholder::before,
.about-photo.is-placeholder::before {
  content: attr(data-fallback);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: .02em;
  line-height: 1.25;
}
.about-photo.is-placeholder::before { font-size: 1.9rem; }

/* Small luxury wordmark under the name */
.service-media.is-placeholder::after,
.team-photo.is-placeholder::after,
.about-photo.is-placeholder::after {
  content: "✦ Charbel Kfoury ✦";
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(201,162,75,.72);
}

/* Gallery: the caption already names the category, so the tile shows a monogram */
.gallery-item.is-placeholder::before {
  content: "CK";
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: .06em;
}
.gallery-item.is-placeholder::after {
  content: "✦ Charbel Kfoury ✦";
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(201,162,75,.72);
}

/* Gallery caption sub-label ("· Photo coming soon") */
.gallery-item figcaption small { font-family: var(--font-sans); font-size: .72rem; opacity: .85; letter-spacing: .03em; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 1.12rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--brown-deep); }
.ci-icon { font-size: 1.3rem; }
.contact-list a:hover { color: var(--gold-deep); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand { font-size: 1.7rem; color: var(--white); }
.footer-sub { color: var(--gold-soft); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin: 4px 0 14px; }
.footer-col h4 { color: var(--gold-soft); font-size: 1.2rem; margin-bottom: 14px; }
.footer-col p { font-size: .95rem; }
.footer-contact li { padding: 6px 0; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding: 22px 0; text-align: center; font-size: .88rem; color: rgba(255,255,255,.5); }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,8,5,.92);
  display: none; align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { color: var(--gold-soft); font-family: var(--font-serif); font-size: 1.3rem; margin-top: 14px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: 0; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }

/* ---------- Reveal-on-scroll animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================================
   RESPONSIVE : Mobile-first adjustments
   ============================================================================ */

/* Tablets */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .loyalty-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .section { padding: 60px 0; }

  /* Mobile nav becomes a slide-down panel */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14,14,14,.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,162,75,.2);
    padding: 8px 22px 22px;
    transform: translateY(-130%);
    transition: transform .35s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 15px 4px; font-size: 1.1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 14px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .offers-grid { grid-template-columns: 1fr; }
  .loyalty-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .price-card { padding: 28px 20px; }
  .booking-form { padding: 26px 18px; }

  .hero-actions .btn { flex: 1 1 100%; }    /* full-width stacked CTAs on phones */
  .center-cta .btn { flex: 1 1 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .service-card { padding: 20px 14px; }
  .service-card h4 { font-size: 1.1rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .cards-grid { grid-template-columns: 1fr; }
  .trust-grid, .loyalty-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.2rem; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
