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

:root {
  --dark:       #1a1a1a;
  --dark-mid:   #252525;
  --cream:      #f8f5f0;
  --teal:       #1e6b7b;
  --teal-light: #2a8799;
  --gold:       #5a5a5a;
  --gold-light: #3d3d3d;
  --star:       #fadb80;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.72);
  --nav-h:      80px;
  --btn-h:      50px;
  --btn-min-w:  220px;
  --btn-pad-x:  2.1rem;
  --btn-radius: 999px;
  --btn-border: 1px;
  --btn-fs:     12px;
  --btn-fw:     600;
  --btn-ls:     0.16em;
}

html { scroll-behavior: smooth; }

.container {
  max-width: 1400px!important;
  margin: 0 auto;
  padding: 0 15px;
}

html {
  overflow-x: hidden;
}
body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ================================================
   NAVBAR
================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: height 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  height: 66px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
	padding: 0 15px;
  margin: 0 auto;
}

/* Logo */
.nav__logo {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 50px;
  width: auto;
  transition: height 0.35s ease;
}
.nav.scrolled .nav__logo img {
  height: 42px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav__links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #5a5a5a;
  transition: width 0.3s ease;
}
.nav__links a:hover { color: #1a1a1a; }
.nav__links a:hover::after { width: 100%; }

/* Phone + CTA group */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.nav__phone {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s;
}
.nav__phone:hover { color: #1a1a1a; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #5a5a5a;
  border: var(--btn-border) solid #5a5a5a;
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: var(--btn-radius);
  transition: background 0.3s, color 0.3s;
}
.nav__cta svg { flex-shrink: 0; transition: transform 0.3s; }
.nav__cta:hover { background: #3d3d3d; }
.nav__cta:hover svg { transform: translate(2px, -2px); }
.nav.scrolled .nav__cta { color: #fff; background: #5a5a5a; }
.nav.scrolled .nav__cta:hover { background: #3d3d3d; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #5a5a5a;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s;
}
.nav__mobile a:hover { color: #1a1a1a; }
.nav__mobile .nav__mobile-book {
  font-family: 'Raleway', sans-serif;
  font-size: var(--btn-fs);
  font-weight: var(--btn-fw);
  letter-spacing: var(--btn-ls);
  text-transform: uppercase;
  color: #fff !important;
  background: #5a5a5a;
  border: var(--btn-border) solid #5a5a5a;
  border-radius: var(--btn-radius);
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background photo */
.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  animation: heroKenBurns 8s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.07); }
  to   { transform: scale(1.00); }
}

/* Slider dots */
.hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2rem;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.hero__dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* Multi-layer overlay for mood and readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.50) 0%,
      rgba(10,10,10,0.42) 40%,
      rgba(10,10,10,0.65) 100%
    );
}

/* Vignette edges */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Content wrapper */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 3%;
  width: 100%;
  max-width: 100%;
}

/* City tag */
.hero__city {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;      /* compensate letter-spacing centering */
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 0.4s forwards;
}

/* Big name */
.hero__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1;
  color: #fff;
	text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 1.1s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}

/* Script row */
.hero__script-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 1.6rem 0 1.8rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.95s forwards;
}
.hero__line {
  flex: 1;
  max-width: 100px;
  height: 1px;
}
.hero__line--l { background: linear-gradient(to right,  transparent, rgba(255,255,255,0.7) 80%); }
.hero__line--r { background: linear-gradient(to left,   transparent, rgba(255,255,255,0.7) 80%); }
.hero__script {
  font-family: 'Playball', cursive;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

/* Tagline */
.hero__tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 1.15s forwards;
}

/* Buttons */
.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease 1.35s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 var(--btn-pad-x);
  min-height: var(--btn-h);
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  border: var(--btn-border) solid transparent;
}
.btn--gold {
  background: #fff;
  color: #5a5a5a;
  border-color: #fff;
}
.btn--gold:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}
.btn--outline {
  background: rgba(255,255,255,0.51);
  color: #fff;
  border-color: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.65);
}
.btn--dark {
  background: #5a5a5a;
  color: #fff;
  border-color: #5a5a5a;
}
.btn--dark:hover {
  background: #3d3d3d;
  border-color: #3d3d3d;
}

/* Unified button font weight across template and plugin buttons */
.btn,
.nav__cta,
.nav__mobile .nav__mobile-book,
.filter-btn,
.gallery__load-btn,
.retouch__book-btn,
.rev-tab,
.form-submit,
.cookie__btn,
.reviews__link,
.srv-card__btn,
.contact__form-shortcode .wpcf7-submit:not(.form-submit),
.contact__form-shortcode button:not(.form-submit),
.contact__form-shortcode input[type='submit']:not(.form-submit) {
  font-weight: var(--btn-fw) !important;
  text-transform: uppercase !important;
  font-size: var(--btn-fs) !important;
  min-width: var(--btn-min-w) !important;
  justify-content: center !important;
}


/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s ease 2.3s forwards;
}
.hero__scroll-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero__scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2.8s ease-in-out infinite;
}

/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1.08) translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; }
  .hero__city, .hero__name, .hero__script-row, .hero__tagline,
  .hero__btns, .hero__scroll { animation: none; opacity: 1; transform: none; }
  .hero__scroll-bar { animation: none; }
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 220px; }
}

@media (max-width: 1100px) {
  .nav__phone { display: none; }
}

@media (max-width: 480px) {
  .hero__city { font-size: 0.875rem; letter-spacing: 0.35em; }
  .hero__tagline { font-size: 0.875rem; letter-spacing: 0.22em; }
}

/* ================================================
   SHARED SECTION UTILITIES
================================================ */
.section-label {
  font-family: 'Playball', cursive;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.1em;
  color: #5a5a5a;
  line-height: 1.15;
}
.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================
   GALLERY SECTION
================================================ */
.gallery {
  background: var(--cream);
  padding: 7rem 0;
}
.gallery__head {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery__head .section-divider { margin: 1.4rem auto; }

/* Filter buttons */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  color: #888888;
  background: transparent;
  border: var(--btn-border) solid rgba(136,136,136,0.35);
  padding: 0 22px;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: var(--btn-h);
	min-width: auto!important;
}
.filter-btn:hover { border-color: #5a5a5a; color: #5a5a5a; }
.filter-btn.active {
  background: #5a5a5a;
  border-color: #5a5a5a;
  color: #fff;
}

/* ── Gallery grid: repeating 9-cell pattern ──────────────────────────────
   Row 1: [wide 2col] [1col] [1col]
   Row 2: [1col] [1col] [wide 2col]
   Row 3: [wide 2col] [1col] [1col]  → repeats
   wide positions (0-indexed in each 9-block): 0, 5, 6
   aspect-ratios keep row heights equal:
     narrow  3/4  →  h = 4/3 × w
     wide    3/2  →  h = 2/3 × (2w+gap) ≈ 4/3 × w
──────────────────────────────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;

}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: opacity 0.35s ease;
}
.gallery__item.g-wide {
  grid-column: span 2;
  aspect-ratio: 3/2;
}
.gallery__item.hidden,
.gallery__item.load-hidden {
  display: none;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}
.gallery__item:hover .gallery__item__overlay {
  background: rgba(10,10,10,0.35);
}
.gallery__item__overlay svg {
  width: 36px; height: 36px;
  stroke: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item:hover .gallery__item__overlay svg {
  opacity: 1;
  transform: scale(1);
}
/* Mobile: simple 2-col equal grid */
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item,
  .gallery__item.g-wide { grid-column: span 1; aspect-ratio: 3/4; }
	.filter-btn {
    flex: auto;
		  padding: 0 16px;
			min-height: 40px;

	}
}

/* Gallery Load More */
.gallery__load {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery__load-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  color: #5a5a5a;
  border: var(--btn-border) solid #bab8b5;
  padding: 0 var(--btn-pad-x);
  min-height: var(--btn-h);
  border-radius: var(--btn-radius);
  transition: background 0.25s ease, color 0.25s ease;
}
.gallery__load-btn:hover { background: #5a5a5a; color: #fff; }

/* Gallery responsive */
/* gallery responsive — column count handled by JS masonry */

/* ================================================
   LIGHTBOX
================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5,5,5,0.96);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open { display: flex; }

.lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.lightbox__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 501;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__close svg { width: 20px; height: 20px; stroke: #fff; }

.lightbox__arrow {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  z-index: 501;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.18); }
.lightbox__arrow svg { width: 22px; height: 22px; stroke: #fff; }
.lightbox__arrow--prev { left: 1.2rem; }
.lightbox__arrow--next { right: 1.2rem; }

.lightbox__counter {
  position: fixed;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
}

/* ================================================
   SERVICES SECTION
================================================ */
.services {
  background: #fafafa;
  padding: 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}

/* Heading cell */
.services__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.25rem;
  background: #fafafa;
}
.services__sub {
  order: 3;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.9rem, 2.3vw, 2.6rem);
  color: #5a5a5a;
  line-height: 1.05;
  margin: 0;
}
.services__intro .section-title {
  order: 1;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  letter-spacing: 0.12em;
  color: #5a5a5a;
  margin: 0;
}
.services__intro .section-divider {
  order: 2;
  margin: 0.8rem auto 0.65rem;
}

/* Empty / logo cells */
.services__empty {
  background: #fafafa;
}
.services__logo-cell {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__logo-cell img {
  width: 180px;
  height: auto;
  filter: brightness(0);
}

/* Cards */
.srv-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #111;
}
.srv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.srv-card:hover img { transform: scale(1.08); }

.srv-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.2) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.srv-card:hover .srv-card__overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.12) 100%);
}

.srv-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.5rem;
  z-index: 2;
}
.srv-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.srv-card__desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}

.srv-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}
.srv-card__btn svg { flex-shrink: 0; transition: transform 0.25s; }
.srv-card__btn:hover svg { transform: translate(2px,-2px); }

/* ================================================
   RETOUCHING / BEFORE-AFTER
================================================ */
.retouch {
  background: #fafafa;
  padding: 7rem 0;
}
.retouch__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.retouch__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.retouch__header .section-divider { margin: 1.2rem auto; }
.retouch__subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(90,90,90,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.retouch__book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background: #5a5a5a;
  border: var(--btn-border) solid #5a5a5a;
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  border-radius: var(--btn-radius);
  transition: background 0.3s, color 0.3s;
}
.retouch__book-btn:hover { background: #3d3d3d; }
.retouch__book-btn svg { flex-shrink: 0; transition: transform 0.3s; }
.retouch__book-btn:hover svg { transform: translate(2px, -2px); }

/* Grid of sliders */
.retouch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 3rem;
}
.retouch__grid .ba-slider:nth-child(4),
.retouch__grid .ba-slider:nth-child(5) {
  grid-column: span 1;
}

/* Before/After slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 3/4;
  background: #000;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}
/* "After" image sits on top, clipped */
.ba-after-img {
  clip-path: inset(0 calc(100% - var(--ba, 50%)) 0 0);
  z-index: 2;
}
/* Handle line */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba, 50%);
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ba-handle__line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,0.9);
}
.ba-handle__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ba-handle__btn svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
}
/* Labels */
.ba-label {
  position: absolute;
  bottom: 1rem;
  z-index: 5;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 32px;
  color: #1a1a1a;
}
.ba-label--before {
  left: 0.75rem;
  background: rgba(255,255,255,0.55);
}
.ba-label--after {
  right: 0.75rem;
  background: #fff;
}


/* Services responsive */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .srv-card { aspect-ratio: 4/5; }
  .services__logo-cell { display: none; }
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services__grid > * {
    min-width: 0;
  }
  .services__intro {
    aspect-ratio: 1/1;
  }
  .services__empty { display: none; }
  .srv-card {
    aspect-ratio: 1/1;
    height: auto;
  }
  .srv-card__desc { display: none; }
}
@media (max-width: 480px) {
  .services__intro { padding: 2rem 1.25rem; }
  .services__intro .section-title {
    font-size: clamp(2.1rem, 11vw, 2.7rem);
  }
  .services__sub {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
  .retouch__grid { grid-template-columns: 1fr; gap: 4px; }
  .ba-slider { aspect-ratio: 4/5; }
}

/* ================================================
   ABOUT SECTION
================================================ */
.about {
  background: var(--cream);
  padding: 7rem 0;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Photo side */
.about__photo-wrap {
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
}
.about__photo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #5a5a5a;
  pointer-events: none;
  z-index: 0;
}
.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Text side */
.about__bio {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.4rem;
}
.about__bio + .about__bio { margin-top: 0; }

.about__signature {
  font-family: 'Playball', cursive;
  font-size: 2.6rem;
  color: #5a5a5a;
  margin: 1.8rem 0 2.5rem;
  display: block;
}

/* Perks grid */
.about__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  margin-top: 2.5rem;
}
.about__perk {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.about__perk-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(40,45,44,0.59);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about__perk-icon svg {
  width: 18px;
  height: 18px;
  stroke: #5a5a5a;
}
.about__perk-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 2px;
}
.about__perk-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #777;
  line-height: 1.5;
}

/* About responsive */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__photo-wrap {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .about { padding: 5rem 0; }
  .about__perks { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4/3; }

}

/* ================================================
   REVIEWS
================================================ */
.reviews {
  background: #fafafa;
  padding: 7rem 0;
}
.reviews__head { text-align: center; margin-bottom: 1.5rem; }
.reviews__head .section-divider { margin: 1.4rem auto; }

/* Review tabs */
.reviews__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid #bebebe;
  border-radius: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.rev-tab {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  color: #5a5a5a;
  background: transparent;
  border: none;
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x);
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  border-right: var(--btn-border) solid #bebebe;
}
.rev-tab:last-child { border-right: none; }
.rev-tab:hover { background: rgba(90,90,90,0.05); color: #1a1a1a; }
.rev-tab.active { background: rgba(90,90,90,0.08); color: #1a1a1a; }
.rev-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.rev-tab img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Rating summary */
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.rev-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rev-score__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #5a5a5a;
  line-height: 1;
}
.rev-score__info { display: flex; flex-direction: column; gap: 0.3rem; }
.rev-score__stars { display: flex; gap: 3px; }
.rev-score__stars svg { width: 14px; height: 14px; fill: var(--star); }
.rev-score__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5a5a;
}
.rev-score__divider {
  width: 1px;
  height: 48px;
  background: rgba(90,90,90,0.18);
}

.reviews__grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(90,90,90,0.07);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 21px rgba(90,90,90,0.27);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(90,90,90,0.16);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(90,90,90,0.34);
}

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg { width: 15px; height: 15px; fill: var(--star); }

.review-card__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(90,90,90,0.72);
  flex: 1;
}
.review-card__text::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #5a5a5a; line-height: 0; vertical-align: -0.5rem; margin-right: 3px; }

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(90,90,90,0.07);
}
.review-card__name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #5a5a5a;
}
.review-card__source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.25rem 0.65rem;
  border-radius: 18px;
  text-decoration: none;
}
.review-card__source img {
  display: block;
  height: 13px;
  width: auto;
}

.review-card__source--thumbtack img {
  height: 16px;
}

.review-card__source--google,
.review-card__source--thumbtack { color: #5a5a5a; border: 1px solid rgba(90,90,90,0.4); }

.review-card.rev-hidden { display: none; }

/* Links row */
.reviews__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5a5a;
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(90,90,90,0.25);
  transition: color 0.2s, border-color 0.2s;
}
.reviews__link:hover { color: #1a1a1a; border-color: rgba(90,90,90,0.6); }
.reviews__link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 900px)  {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px)  {
.reviews__tabs{
	display: none;
}
  .reviews-swiper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .reviews-swiper .reviews__grid {
    display: flex;
    gap: 0;
  }
  .reviews-swiper .swiper-wrapper {
    align-items: stretch;
  }
  .reviews-swiper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    display: flex;
  }
  .reviews-swiper .review-card {
    height: auto;
    min-height: 100%;
    box-shadow: none;
  }
  .reviews-swiper .review-card:hover {
    transform: none;
    box-shadow: none;
  }
  .reviews-swiper__pagination {
    position: static !important;
    margin-top: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    text-align: center;
    line-height: 1;
  }
  .reviews-swiper__pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 4px !important;
    background: rgba(90,90,90,0.35);
    opacity: 1;
  }
  .reviews-swiper__pagination .swiper-pagination-bullet-active {
    background: #5a5a5a;
  }
}

@media (max-width: 560px)  {
  .rev-tab {
    font-size: 0.875rem;
  }
  .rev-tab:first-child {
    font-size: 14px;
  }
  .reviews__rating {
    display: none;
  }
}

/* ================================================
   AREAS
================================================ */
.areas {
  background: var(--cream);
  padding: 7rem 0;
}
.areas__head { text-align: center; margin-bottom: 4rem; }
.areas__head .section-divider { margin: 1.4rem auto; }

.areas__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.areas__map {
  width: 100%;
  aspect-ratio: 643/523;
  border: 0;
  display: block;
  filter: grayscale(20%);
}
.areas__list-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.078em;
  line-height: 1.47;
  color: #666666;
  margin-bottom: 1.5rem;
}
.areas__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.areas__list li {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.445;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.areas__list li::before {
  content: '';
  width: 5px; height: 5px;
  background: #666666;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 900px) { .areas__inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .areas__list { grid-template-columns: 1fr; } }

/* ================================================
   CONTACT
================================================ */
.contact {
  position: relative;
  background-color: #fafafa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 3rem 0;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}
.contact[style*='background-image']::before {
  background: rgba(15,10,5,0.58);
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 3.75rem;
  align-items: start;
}
.contact__info .section-divider { margin: 1.4rem 0; }
.contact__desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666666;
  margin-bottom: 2.5rem;
}
.contact__details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact__detail { display: flex; align-items: center; gap: 1rem; }
.contact__detail-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(90,90,90,0.4);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 17px; height: 17px; stroke: #5a5a5a; }
.contact__detail-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a5a5a;
}
.contact__detail-text a { color: #5a5a5a; text-decoration: none; transition: color 0.3s; }
.contact__detail-text a:hover { color: #1a1a1a; }

/* Form card */
.contact__form {
  background: #fff;
  border-radius: 2px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__form-head { display: flex; flex-direction: column; gap: 0.5rem; }
.contact__form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.375rem);
  color: #5a5a5a;
  letter-spacing: 0.051em;
  line-height: 1.15;
}
.contact__form-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #5d5d5d;
}

/* Icon-based form fields */
.form-fields { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }

.form-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(40,45,44,0.15);
  transition: border-color 0.25s;
}
.form-field:focus-within { border-bottom-color: #5a5a5a; }
.form-field__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.form-field input,
.form-field select,
.form-field textarea {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  min-height: 36px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #b0b0b0; }
.form-field select { cursor: pointer; color: #b0b0b0; }
.form-field select.has-value { color: #1a1a1a; }
.form-field select option { color: #1a1a1a; background: #fff; }
.form-field--select { position: relative; }
.form-field__caret { width: 16px; height: 16px; flex-shrink: 0; pointer-events: none; }
.form-field--textarea { align-items: flex-start; }
.form-field--textarea .form-field__icon { margin-top: 4px; }
.form-field textarea { min-height: 72px; resize: none; line-height: 1.6; }
.form-req {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #c5884a;
  flex-shrink: 0;
  line-height: 1;
}

.form-submit {
  background: #5a5a5a;
  color: #fff;
  border: var(--btn-border) solid #5a5a5a;
  border-radius: var(--btn-radius);
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  padding: 0 var(--btn-pad-x);
  min-height: var(--btn-h);
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.form-submit:hover { background: #3d3d3d; }
.form-msg {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  margin-top: -0.5rem;
  display: none;
}
.form-msg.success { color: #3a7d44; display: block; }
.form-msg.error   { color: #c0392b; display: block; }

@media (max-width: 960px)  { .contact__inner { grid-template-columns: 1fr; gap: 3rem;      padding: 2.5rem 16px;} }
@media (max-width: 560px)  { .form-row { grid-template-columns: 1fr; } }

/* ================================================
   FOOTER
================================================ */
.footer {
  background: #fff;
  padding: 3rem 0;
  border-top: 1px solid rgba(90,90,90,0.06);
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0);
}
.footer__copy {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #5a5a5a;
  text-align: center;
}
.footer__socials { display: flex; gap: 1rem; align-items: center; }
.footer__social {
  width: 38px; height: 38px;
  border: 1px solid rgba(90,90,90,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #5a5a5a;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.footer__social:hover { border-color: #5a5a5a; color: #1a1a1a; }
.footer__social svg { width: 16px; height: 16px; }
.footer__social--image {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(90,90,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer__social-icon {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.footer__social--image:hover {
  border-color: #5a5a5a;
}
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ================================================
   FLOATING PHONE BUTTON
================================================ */
.float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #5a5a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s;
}
.float-btn.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.float-btn:hover { background: #3d3d3d; }
@media (max-width: 768px) {
  .gallery,
  .retouch,
  .about,
  .reviews,
  .areas {
    padding: 4rem 0;
  }

  .float-btn { width: 60px; height: 60px; bottom: 1.5rem; right: 1.5rem; }
  .float-btn svg { width: 20px; height: 20px; }
	.contact {
		padding: 0;
	}
}

/* ================================================
   COOKIE BANNER
================================================ */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 140;
  background: #fff;
  border-top: 1px solid rgba(90,90,90,0.1);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie.show { transform: translateY(0); }
.cookie__text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #666;
  flex: 1;
  min-width: 220px;
}
.cookie__text a { color: #5a5a5a; text-decoration: underline; }
.cookie__btn {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--btn-fw);
  font-size: var(--btn-fs);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  background: #5a5a5a;
  color: #fff;
  border: var(--btn-border) solid #5a5a5a;
  border-radius: var(--btn-radius);
  padding: 0 var(--btn-pad-x);
  cursor: pointer;
  white-space: nowrap;
  min-height: var(--btn-h);
}

/* WordPress shortcodes inside photographer layout */
.reviews__shortcode {
  margin-top: 2rem;
}

.contact__form-shortcode .wpcf7,
.contact__form-shortcode form {
  width: 100%;
}

.contact__form-shortcode .wpcf7-form p {
  margin: 0;
}

.contact__form-shortcode .wpcf7-form br {
  display: none;
}

.contact__form-shortcode .form-field > p {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.contact__form-shortcode .form-field--textarea > p {
  align-items: flex-start;
}

.contact__form-shortcode .form-field .wpcf7-form-control-wrap {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.contact__form-shortcode .form-field .wpcf7-form-control {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  min-height: 36px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact__form-shortcode .form-field textarea.wpcf7-form-control {
  min-height: 72px;
  resize: none;
  line-height: 1.6;
}

.contact__form-shortcode .form-field .wpcf7-form-control::placeholder {
  color: #b0b0b0;
}

.contact__form-shortcode .form-field select.wpcf7-form-control {
  cursor: pointer;
  color: #b0b0b0;
}

.contact__form-shortcode .form-field select.wpcf7-form-control option {
  color: #1a1a1a;
  background: #fff;
}

.contact__form-shortcode .form-field .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #c0392b;
}

.contact__form-shortcode .wpcf7-response-output {
  margin: 0.9rem 0 0;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
}

.contact__form-shortcode .wpcf7:not(.sent) .wpcf7-response-output {
  color: #c0392b;
}

.contact__form-shortcode .wpcf7.sent .wpcf7-response-output {
  color: #3a7d44;
}

.contact__form-shortcode .wpcf7-form-control:not(.form-submit):not(.wpcf7-submit):not([type='submit']) {
  width: 100%;
}

.contact__form-shortcode .wpcf7-submit:not(.form-submit),
.contact__form-shortcode button:not(.form-submit),
.contact__form-shortcode input[type='submit']:not(.form-submit) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  border-radius: var(--btn-radius);
  border: var(--btn-border) solid #5a5a5a;
  background: #5a5a5a;
  color: #ffffff;
  padding: 0 var(--btn-pad-x);
  font-family: 'Raleway', sans-serif;
  font-size: var(--btn-fs);
  font-weight: var(--btn-fw);
  letter-spacing: var(--btn-ls);
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.contact__form-shortcode .wpcf7-spinner {
  margin: 0.5rem 0 0;
}
