/* Photo upload drop zone — appended styles */
.form__hint { font-weight: 400; font-size: 0.88rem; color: var(--muted); margin-left: 0.4rem; text-transform: none; letter-spacing: 0; }

/* ---------- Drop zone ---------- */
.drop-zone {
  border: 2px dashed var(--line);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.drop-zone:hover, .drop-zone:focus-visible { border-color: var(--navy); background: #f0f0f8; outline: none; }
.drop-zone.is-over { border-color: var(--red); background: #fff5f6; }
.drop-zone__input { display: none; }
.drop-zone__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.4rem 1rem;
  text-align: center;
  color: var(--muted);
  pointer-events: none;
}
.drop-zone__body svg { color: var(--navy); opacity: 0.5; }
.drop-zone__body strong { color: var(--navy-ink); font-size: 1rem; }
.drop-zone__body p { font-size: 0.95rem; margin: 0; }
.drop-zone__sub { font-size: 0.82rem !important; color: #999; }
.drop-zone__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.7rem;
}
.photo-thumb {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-thumb__rm {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.photo-thumb__rm:hover { background: var(--red); }

/* Admin panel — enquiry photo thumbnails */
.enq__photos { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:0.7rem; }
.enq__photos a { display:block; width:72px; height:72px; border-radius:7px; overflow:hidden; border:1.5px solid var(--line); flex-shrink:0; }
.enq__photos img { width:100%; height:100%; object-fit:cover; }

/* ---------- Announcement banner ---------- */
.site-banner { padding: 0.75rem 0; text-align: center; position: relative; }
.site-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  position: relative;
  padding-right: 2.2rem;
}
.site-banner p { margin: 0; font-weight: 600; font-size: 0.95rem; }
.site-banner a { text-decoration: underline; font-weight: 700; }
.site-banner--info { background: #e8f1fb; color: #0b3d66; }
.site-banner--info a { color: #0b3d66; }
.site-banner--warning { background: #fff4d6; color: #7a5b0d; }
.site-banner--warning a { color: #7a5b0d; }
.site-banner--promo { background: var(--red); color: #fff; }
.site-banner--promo a { color: #fff; }
.site-banner__close {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.65;
  padding: 0 0.4rem;
}
.site-banner__close:hover { opacity: 1; }
.site-banner.is-hidden { display: none; }

/* ---------- Admin: design tab preset swatches ---------- */
.preset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.9rem; margin-top: 0.8rem; }
.preset-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.15s ease;
  text-align: left;
}
.preset-card:hover { transform: translateY(-2px); }
.preset-card.is-active { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0,0,102,0.12); }
.preset-card__dots { display: flex; gap: 0.4rem; margin-bottom: 0.6rem; }
.preset-card__dot { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.1); }
.preset-card__label { font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 1rem; color: var(--navy); display: block; }
.preset-card__font { font-size: 0.82rem; color: var(--muted); }

.design-manual { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; align-items: end; margin-top: 0.6rem; }
.design-manual label { margin-top: 0; }
.color-input-row { display: flex; align-items: center; gap: 0.6rem; }
.color-input-row input[type="color"] {
  width: 44px; height: 40px; border: 1.5px solid var(--line); border-radius: 8px; padding: 2px; cursor: pointer; background: #fff;
}
.color-input-row input[type="text"] { flex: 1; }
select.select-field {
  width: 100%; font-family: "Barlow", sans-serif; font-size: 0.98rem; padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--line); border-radius: 9px; background: var(--paper);
}

.banner-preview-wrap { border: 1.5px dashed var(--line); border-radius: 10px; overflow: hidden; margin-top: 0.9rem; }
.banner-preview-label { font-size: 0.82rem; color: var(--muted); padding: 0.4rem 0.8rem 0; text-transform: uppercase; letter-spacing: 0.05em; font-family: "Barlow Condensed", sans-serif; font-weight: 600; }

/* ---------- Testimonials section (separate simple quote cards) ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.testi-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.8rem 1.5rem 1.4rem;
  position: relative;
  margin: 0;
}
.testi-card__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.25;
  position: absolute;
  top: 0.4rem;
  left: 1.1rem;
}
.testi-card__text {
  position: relative;
  font-size: 1.02rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.3rem;
}
.testi-card__foot { display: flex; align-items: center; gap: 0.7rem; }
.testi-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card__foot strong { display: block; color: var(--navy); font-size: 0.98rem; }
.testi-card__foot span { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 820px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- Before/after: video support ---------- */
.ba__stage video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__beforewrap video { width: auto; height: 100%; max-width: none; }
.ba__expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(6,6,43,0.72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ba__expand:hover { background: var(--red); transform: scale(1.06); }
.ba__expand svg { margin-left: 2px; }

/* ---------- Gallery section: grid + tiles ---------- */
.gallery__subhead {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gtile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy-deep);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gtile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gtile img, .gtile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gtile__play {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(6,6,43,0.55);
  color: #fff;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: background 0.2s ease;
}
.gtile:hover .gtile__play { background: var(--red); }
.gtile__play svg { margin-left: 2px; }
.gtile__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.8rem 0.5rem;
  background: linear-gradient(0deg, rgba(6,6,43,0.82), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

/* ---------- Gallery section: slider (light theme, for >6 items) ---------- */
.gslider-wrap { position: relative; }
.gslider__nav {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}
.gslider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.gslider__btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.gslider__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gslider__track::-webkit-scrollbar { display: none; }
.gslider__track .gtile { flex: 0 0 min(280px, 78%); scroll-snap-align: start; }

/* ---------- Lightbox (fullscreen media viewer) ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,6,43,0.92);
  align-items: center;
  justify-content: center;
  padding: 3rem 1.2rem;
}
.lightbox.is-open { display: flex; }
.lightbox__body { max-width: min(1100px, 94vw); max-height: 88vh; width: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox__body img, .lightbox__body video {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ---------- Admin: media lists (gallery photos/videos, before/after pairs) ---------- */
.media-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1rem; }
.media-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 0.6rem 0.8rem;
}
.media-row__thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper);
}
.media-row__thumb img, .media-row__thumb video { width: 100%; height: 100%; object-fit: cover; }
.media-row__pair { display: flex; gap: 0.4rem; flex-shrink: 0; }
.media-row__body { flex: 1; min-width: 0; }
.media-row__cap { font-size: 0.92rem; color: var(--ink); }
.media-row__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  background: #fdeaee;
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  margin-bottom: 0.2rem;
}
.media-add-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 0.9rem; margin-top: 0.5rem; }
.media-add-form > div { display: flex; flex-direction: column; gap: 0.3rem; }
.media-add-form label { margin: 0; }
.media-add-form input[type=file] { font-size: 0.85rem; }
.media-add-form input[type=text] { min-width: 200px; }

