/* ── SELF-HOSTED FONTS ── */
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: normal; font-weight: 300; src: url('../fonts/cormorant-v24-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: italic; font-weight: 300; src: url('../fonts/cormorant-v24-latin-300italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: normal; font-weight: 400; src: url('../fonts/cormorant-v24-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: italic; font-weight: 400; src: url('../fonts/cormorant-v24-latin-italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: normal; font-weight: 500; src: url('../fonts/cormorant-v24-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Cormorant'; font-style: italic; font-weight: 500; src: url('../fonts/cormorant-v24-latin-500italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'EB Garamond'; font-style: normal; font-weight: 400; src: url('../fonts/eb-garamond-v32-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'EB Garamond'; font-style: italic; font-weight: 400; src: url('../fonts/eb-garamond-v32-latin-italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'EB Garamond'; font-style: normal; font-weight: 500; src: url('../fonts/eb-garamond-v32-latin-500.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'EB Garamond'; font-style: italic; font-weight: 500; src: url('../fonts/eb-garamond-v32-latin-500italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 300; src: url('../fonts/inter-v20-latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 400; src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Inter'; font-style: normal; font-weight: 500; src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'); }

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

:root {
  --gold:       #C79A5F;
  --slate:      #6A6A6A;
  --periwinkle: #C5D3EE;
  --pink:       #F4B0CC;
  --white:      #F8F8F6;
  --offwhite:   #F0EFEC;
  --black:      #111110;
  --font-head:  'Cormorant', serif;
  --font-body:  'EB Garamond', serif;
  --font-label: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

/* ── UTILITIES ── */
.label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: #fff; }
.btn-filled { background: var(--gold); color: #fff; }
.btn-filled:hover { background: #b3894f; border-color: #b3894f; }

/* ── BEFORE & AFTER GALLERY (shared across index + service pages) ── */
.ba-mount { display: block; }

.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid rgba(199,154,95,0.3);
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.ba-tabs::-webkit-scrollbar { display: none; }

.ba-tab {
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--slate);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-tab.active { background: var(--gold); color: #fff; }

.ba-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: safe center;
  gap: 16px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.ba-empty {
  text-align: center;
  color: var(--muted, #888);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  padding: 40px 20px;
  font-size: 1.15rem;
  line-height: 1.6;
}
.ba-empty a {
  color: var(--gold);
  text-decoration: underline;
}

.ba-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  user-select: none;
  aspect-ratio: 4/5;
  flex: 0 0 280px;
  min-width: 220px;
}

.ba-card .ba-after,
.ba-card .ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-card .ba-before img,
.ba-card .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  background: var(--offwhite);
}

.ba-card .ba-before,
.ba-card .ba-after { background: var(--offwhite); }

.ba-card .ba-after {
  clip-path: inset(0 0 0 50%);
  z-index: 1;
}

.ba-card .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--gold);
  z-index: 2;
  pointer-events: none;
}

.ba-card .ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #fff;
  cursor: ew-resize;
}

.ba-card .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M7 4l-5 6 5 6M13 4l5 6-5 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ba-card .ba-label-before,
.ba-card .ba-label-after {
  position: absolute;
  bottom: 44px;
  font-family: var(--font-label);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 3px 8px;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.ba-card .ba-label-before { left: 10px; }
.ba-card .ba-label-after  { right: 10px; z-index: 3; }

.ba-card-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(248,248,246,0.88);
  padding: 4px 10px;
  white-space: nowrap;
  z-index: 4;
}

.ba-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--offwhite);
}

@media (max-width: 900px) {
  .ba-tabs {
    width: 100%;
    overflow-x: visible;
    justify-content: stretch;
  }
  .ba-tab {
    flex: 1;
    white-space: normal;
    text-align: center;
    padding: 10px 8px;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }
  .ba-grid { gap: 12px; }
  .ba-card { flex: 0 0 260px; }
}

/* ── CONTACT SECTION (shared across index + service pages) ── */
#contact {
  background: var(--black);
  color: var(--white);
  padding: 100px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 40px;
}

.contact-headline em {
  font-style: italic;
  color: var(--gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item .label {
  color: rgba(248,248,246,0.45);
  margin-bottom: 8px;
}

.contact-item p, .contact-item a {
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--white);
  letter-spacing: 0.025em;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  #contact { padding: 64px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
