
/* YT Studio final consistency fixes */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
body { margin: 0; }
main { width: 100%; }
img { max-width: 100%; display: block; }

/* One identical header system for every page */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
  background: rgba(250, 249, 246, 0.96) !important;
  backdrop-filter: blur(18px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(120%) !important;
  border-bottom: 1px solid rgba(126, 117, 111, 0.22) !important;
  box-shadow: none !important;
  transition: background 420ms ease, border-color 420ms ease, box-shadow 420ms ease !important;
}
.site-header-inner {
  width: min(100%, 1440px) !important;
  margin: 0 auto !important;
  min-height: 92px !important;
  padding: 0 48px !important;
  display: grid !important;
  grid-template-columns: minmax(310px, 1fr) auto auto !important;
  align-items: center !important;
  gap: 36px !important;
}
.site-logo {
  font-family: 'Libre Caslon Text', Georgia, serif !important;
  font-size: clamp(31px, 3.1vw, 49px) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
  color: #181512 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: clamp(18px, 2vw, 31px) !important;
  white-space: nowrap !important;
}
.site-nav-link,
.site-mobile-link {
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #181512 !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent !important;
  padding: 9px 0 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.site-nav-link:hover,
.site-nav-link.is-active,
.site-mobile-link:hover,
.site-mobile-link.is-active {
  color: #181512 !important;
  border-bottom-color: #181512 !important;
}
.site-cta,
.site-mobile-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 154px !important;
  height: 52px !important;
  padding: 0 26px !important;
  background: #181512 !important;
  color: #ffffff !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.site-menu-button {
  display: none !important;
  background: transparent !important;
  border: 0 !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: #181512 !important;
}
.site-mobile-menu {
  border-top: 1px solid rgba(126, 117, 111, 0.18) !important;
  background: rgba(250, 249, 246, .98) !important;
  padding: 22px 28px 30px !important;
}
.site-mobile-menu[hidden] { display: none !important; }
.site-mobile-menu nav { display: grid !important; gap: 14px !important; }
.site-mobile-cta { margin-top: 12px !important; width: max-content !important; }

/* Home starts with the premium glass header only at the top */
body.home-page .site-header.is-transparent {
  background: rgba(24, 21, 18, 0.22) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: none !important;
}
body.home-page .site-header.is-transparent .site-logo,
body.home-page .site-header.is-transparent .site-nav-link,
body.home-page .site-header.is-transparent .site-menu-button {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42) !important;
}
body.home-page .site-header.is-transparent .site-nav-link:hover,
body.home-page .site-header.is-transparent .site-nav-link.is-active {
  border-bottom-color: rgba(255, 255, 255, 0.96) !important;
}
body.home-page .site-header.is-transparent .site-cta {
  background: rgba(24, 21, 18, 0.92) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* Internal pages always start below the fixed header. */
body:not(.home-page) main { padding-top: 92px !important; }
body.home-page main { padding-top: 0 !important; }
section { scroll-margin-top: 110px; }

/* Slow reveal effect for text, images, cards, and forms. */
.scroll-reveal,
.fade-in-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.scroll-reveal.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
main img.scroll-reveal { transform: translateY(18px) scale(1.015); }
main img.scroll-reveal.visible { transform: translateY(0) scale(1); }

@media (max-width: 1180px) {
  .site-header-inner {
    grid-template-columns: 1fr auto auto !important;
    padding: 0 32px !important;
    gap: 24px !important;
  }
  .site-nav { gap: 18px !important; }
  .site-logo { font-size: clamp(28px, 3vw, 38px) !important; }
}
@media (max-width: 980px) {
  .site-header-inner { min-height: 82px !important; padding: 0 24px !important; }
  .site-nav, .site-cta { display: none !important; }
  .site-menu-button { display: inline-flex !important; justify-self: end !important; }
  body:not(.home-page) main { padding-top: 82px !important; }
}
@media (max-width: 560px) {
  .site-logo { font-size: 28px !important; }
  .site-header-inner { min-height: 78px !important; padding: 0 18px !important; }
  body:not(.home-page) main { padding-top: 78px !important; }
  h1 { line-height: 1.06 !important; }
  h2 { line-height: 1.1 !important; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal, .fade-in-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Final YT Studio polish */
.site-logo {
  font-size: clamp(36px, 3.3vw, 54px) !important;
  letter-spacing: -0.045em !important;
}
body.contact-page main {
  padding-top: 150px !important;
}
body.contact-page .site-header + main {
  margin-top: 0 !important;
}
@media (max-width: 980px) {
  body.contact-page main { padding-top: 120px !important; }
}
@media (max-width: 560px) {
  .site-logo { font-size: 32px !important; }
  body.contact-page main { padding-top: 108px !important; }
}


/* Minimal YT Studio logo update */
.site-logo,
.footer-logo-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 13px !important;
  font-family: 'Manrope', Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.logo-mark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 54px !important;
  height: 54px !important;
  border: 1px solid currentColor !important;
  border-radius: 999px !important;
  font-family: 'Libre Caslon Text', Georgia, serif !important;
  font-size: 23px !important;
  line-height: 1 !important;
  letter-spacing: -0.08em !important;
  font-weight: 500 !important;
}
.logo-divider {
  width: 1px !important;
  height: 35px !important;
  background: currentColor !important;
  opacity: .28 !important;
}
.logo-text {
  font-family: 'Libre Caslon Text', Georgia, serif !important;
  font-size: clamp(30px, 2.7vw, 45px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
  font-weight: 500 !important;
}
.footer-logo-inline .logo-mark {
  width: 42px !important;
  height: 42px !important;
  font-size: 18px !important;
}
.footer-logo-inline .logo-divider {
  height: 28px !important;
}
.footer-logo-inline .logo-text {
  font-size: 30px !important;
}
body.home-page .site-header.is-transparent .logo-mark {
  background: rgba(255,255,255,0.08) !important;
}
@media (max-width: 1180px) {
  .site-header-inner { grid-template-columns: minmax(230px, 1fr) auto auto !important; }
  .site-logo { gap: 10px !important; }
  .logo-mark { width: 46px !important; height: 46px !important; font-size: 20px !important; }
  .logo-divider { height: 30px !important; }
  .logo-text { font-size: clamp(27px, 2.5vw, 36px) !important; }
}
@media (max-width: 560px) {
  .site-logo { gap: 9px !important; }
  .logo-mark { width: 40px !important; height: 40px !important; font-size: 18px !important; }
  .logo-divider { height: 26px !important; }
  .logo-text { font-size: 29px !important; }
}


/* Simple minimalist wordmark logo update */
.site-logo,
.footer-logo-inline {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 0 !important;
  font-family: 'Cormorant Garamond', 'Libre Caslon Text', Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 0.95 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.site-logo {
  font-size: clamp(38px, 3.2vw, 52px) !important;
}
.footer-logo-inline {
  font-size: 34px !important;
}
.logo-mark,
.logo-divider,
.logo-text {
  all: unset !important;
}
body.home-page .site-header.is-transparent .site-logo {
  color: rgba(255,255,255,0.98) !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.48) !important;
}
body:not(.home-page) .site-logo,
body.home-page .site-header:not(.is-transparent) .site-logo {
  color: #181512 !important;
  text-shadow: none !important;
}
@media (max-width: 1180px) {
  .site-header-inner { grid-template-columns: minmax(190px, 1fr) auto auto !important; }
  .site-logo { font-size: clamp(34px, 3vw, 43px) !important; }
}
@media (max-width: 560px) {
  .site-logo { font-size: 32px !important; letter-spacing: -0.03em !important; }
  .footer-logo-inline { font-size: 30px !important; }
}

/* Final logo refinement: simple, lighter, minimalist YT Studio wordmark */
.site-logo,
.footer-logo-inline {
  font-family: 'Libre Caslon Text', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.028em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: baseline !important;
}
.site-logo {
  font-size: clamp(30px, 2.25vw, 39px) !important;
}
.footer-logo-inline {
  font-size: 30px !important;
}
body.home-page .site-header.is-transparent .site-logo {
  color: rgba(255,255,255,0.94) !important;
  text-shadow: 0 1px 14px rgba(0,0,0,.34) !important;
}
body:not(.home-page) .site-logo,
body.home-page .site-header:not(.is-transparent) .site-logo {
  color: #181512 !important;
  text-shadow: none !important;
}
@media (max-width: 1180px) {
  .site-header-inner { grid-template-columns: minmax(160px, 1fr) auto auto !important; }
  .site-logo { font-size: clamp(28px, 2.8vw, 34px) !important; }
}
@media (max-width: 560px) {
  .site-logo { font-size: 28px !important; letter-spacing: -0.025em !important; }
  .footer-logo-inline { font-size: 27px !important; }
}


/* Final logo update: minimalist elegant YT Studio wordmark */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

.site-logo,
.footer-logo-inline {
  display: inline-block !important;
  font-family: 'Cormorant Garamond', 'Libre Caslon Text', Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.018em !important;
  word-spacing: 0.02em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.site-logo {
  font-size: clamp(24px, 2.1vw, 31px) !important;
  line-height: 1 !important;
}
.footer-logo-inline {
  font-size: clamp(24px, 2vw, 30px) !important;
  line-height: 1.05 !important;
}
.logo-mark,
.logo-divider,
.logo-text { display: none !important; }
body.home-page .site-header.is-transparent .site-logo {
  color: rgba(255,255,255,0.98) !important;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35) !important;
}
body:not(.home-page) .site-logo,
body.home-page .site-header:not(.is-transparent) .site-logo,
.footer-logo-inline {
  color: #181512 !important;
  text-shadow: none !important;
}
.site-header-inner {
  grid-template-columns: minmax(420px, 1fr) auto auto !important;
}
@media (max-width: 1280px) {
  .site-header-inner { grid-template-columns: minmax(360px, 1fr) auto auto !important; }
  .site-logo { font-size: clamp(23px, 2vw, 28px) !important; }
}
@media (max-width: 1180px) {
  .site-header-inner { grid-template-columns: minmax(320px, 1fr) auto auto !important; }
}
@media (max-width: 980px) {
  .site-logo { font-size: 26px !important; }
}
@media (max-width: 560px) {
  .site-logo { font-size: 24px !important; letter-spacing: -0.014em !important; }
  .footer-logo-inline { font-size: 25px !important; }
}


/* Hero readability improvement for the bright 15campo image */
body.home-page #home > .absolute.inset-0.z-0 img {
  opacity: 1 !important;
  filter: brightness(0.58) contrast(1.04) saturate(0.94) !important;
  transform: scale(1.05) !important;
}
body.home-page #home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.34) 34%, rgba(0,0,0,0.24) 62%, rgba(0,0,0,0.18) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.10) 38%, rgba(0,0,0,0.25));
}
body.home-page #home h1 {
  text-shadow: 0 4px 34px rgba(0,0,0,0.82), 0 1px 8px rgba(0,0,0,0.55) !important;
}
body.home-page #home a[href="contact.html"] {
  background: rgba(24,21,18,0.30) !important;
  border-color: rgba(255,255,255,0.85) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,0.20) !important;
}
body.home-page #home a[href="contact.html"]:hover {
  background: rgba(255,255,255,0.95) !important;
  color: #181512 !important;
}


/* Final hero balance: keep 15campo bright while making text readable */
body.home-page #home > .absolute.inset-0.z-0 img {
  opacity: 1 !important;
  filter: brightness(0.96) contrast(1.02) saturate(1.02) !important;
  transform: scale(1.03) !important;
}
body.home-page #home .hero-soft-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.05) 38%, rgba(0,0,0,0.12)) !important;
}
body.home-page #home::before {
  display: none !important;
  content: none !important;
}
body.home-page #home .relative.z-10 {
  padding: 30px 38px !important;
  border-radius: 2px !important;
  background: radial-gradient(circle at center, rgba(24,21,18,0.28), rgba(24,21,18,0.16) 52%, rgba(24,21,18,0.04) 78%, rgba(24,21,18,0) 100%) !important;
}
body.home-page #home h1 {
  text-shadow: 0 5px 26px rgba(0,0,0,0.72), 0 2px 8px rgba(0,0,0,0.62), 0 0 1px rgba(0,0,0,0.9) !important;
}
body.home-page #home a[href="contact.html"] {
  background: rgba(24,21,18,0.36) !important;
  border-color: rgba(255,255,255,0.95) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18) !important;
}


/* Final uploaded logo image system */
.site-logo.logo-image-link,
.footer-logo-inline.footer-logo-image {
  font-size: 0 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  width: 148px !important;
  height: 50px !important;
  padding: 0 !important;
  overflow: visible !important;
}
.site-logo.logo-image-link .logo-img,
.footer-logo-inline.footer-logo-image img {
  display: block !important;
  width: 148px !important;
  height: auto !important;
  object-fit: contain !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}
.site-logo.logo-image-link .logo-img {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: opacity 320ms ease !important;
}
.site-logo.logo-image-link .logo-img-black { opacity: 1 !important; }
.site-logo.logo-image-link .logo-img-white { opacity: 0 !important; }
body.home-page .site-header.is-transparent .site-logo.logo-image-link .logo-img-black { opacity: 0 !important; }
body.home-page .site-header.is-transparent .site-logo.logo-image-link .logo-img-white { opacity: 1 !important; }
.site-header-inner {
  grid-template-columns: minmax(250px, 1fr) auto auto !important;
}
.footer-logo-inline.footer-logo-image {
  width: 148px !important;
  height: 50px !important;
}
.footer-logo-inline.footer-logo-image img {
  width: 148px !important;
}
@media (max-width: 1180px) {
  .site-header-inner { grid-template-columns: minmax(210px, 1fr) auto auto !important; }
  .site-logo.logo-image-link,
  .footer-logo-inline.footer-logo-image { width: 136px !important; height: 45px !important; }
  .site-logo.logo-image-link .logo-img,
  .footer-logo-inline.footer-logo-image img { width: 136px !important; }
}
@media (max-width: 560px) {
  .site-logo.logo-image-link,
  .footer-logo-inline.footer-logo-image { width: 124px !important; height: 41px !important; }
  .site-logo.logo-image-link .logo-img,
  .footer-logo-inline.footer-logo-image img { width: 124px !important; }
}


/* Latest hero refinement: keep photo beautiful, no visible dark rectangle behind text */
body.home-page #home > .absolute.inset-0.z-0 img {
  opacity: 1 !important;
  filter: brightness(1.02) contrast(1.02) saturate(1.02) !important;
  transform: scale(1.03) !important;
}
body.home-page #home .hero-soft-overlay {
  background:
    linear-gradient(to bottom, rgba(24,21,18,0.14) 0%, rgba(24,21,18,0.04) 28%, rgba(24,21,18,0.08) 100%),
    radial-gradient(ellipse at center, rgba(24,21,18,0.18) 0%, rgba(24,21,18,0.10) 42%, rgba(24,21,18,0.00) 72%) !important;
}
body.home-page #home::before {
  display: none !important;
  content: none !important;
}
body.home-page #home .relative.z-10 {
  background: transparent !important;
  padding: 0 24px !important;
  border-radius: 0 !important;
}
body.home-page #home h1 {
  text-shadow:
    0 3px 18px rgba(0,0,0,0.62),
    0 1px 5px rgba(0,0,0,0.55),
    0 0 1px rgba(0,0,0,0.95) !important;
}
body.home-page #home a[href="contact.html"] {
  background: rgba(24,21,18,0.26) !important;
  border-color: rgba(255,255,255,0.92) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16) !important;
}
body.home-page #home a[href="contact.html"]:hover {
  background: rgba(255,255,255,0.94) !important;
  color: #181512 !important;
}

/* Hero subtext readability fix: keep image bright, make the small line readable */
body.home-page #home p {
  color: rgba(255,255,255,0.98) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.55 !important;
  text-shadow:
    0 3px 14px rgba(0,0,0,0.78),
    0 1px 5px rgba(0,0,0,0.72),
    0 0 1px rgba(0,0,0,0.95) !important;
  background: rgba(24,21,18,0.20) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  padding: 8px 18px !important;
  backdrop-filter: blur(2px) !important;
}
@media (max-width: 767px) {
  body.home-page #home p {
    padding: 8px 12px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}

/* Guided renovation brief */
.guided-brief {
  border-top: 1px solid rgba(126, 117, 111, 0.35);
  padding-top: 42px;
}
.brief-progress-wrap { margin-bottom: 42px; }
.brief-progress { height: 1px; background: rgba(126,117,111,.28); overflow: hidden; }
.brief-progress-bar { height: 1px; width: 0%; background: #181512; transition: width .45s ease; }
.brief-question-card { min-height: 360px; transition: opacity .28s ease, transform .28s ease; }
.brief-question-card.is-changing { opacity: 0; transform: translateY(8px); }
.brief-kicker, .brief-label {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: .15em;
  font-weight: 600;
  text-transform: uppercase;
  color: #7e756f;
  margin-bottom: 10px;
}
.brief-question-title {
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  color: #181512;
  max-width: 820px;
  margin-bottom: 34px;
}
.brief-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.brief-option {
  text-align: left;
  border: 1px solid rgba(126,117,111,.32);
  background: transparent;
  color: #4d4540;
  padding: 18px 20px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}
.brief-option:hover, .brief-option.is-selected { border-color: #181512; color: #181512; background: rgba(239,238,235,.55); }
.brief-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(126,117,111,.45);
  padding: 9px 0;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #181512;
  outline: none;
}
.brief-input:focus { border-bottom-color: #181512; box-shadow: none; }
.brief-controls { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(126,117,111,.24); }
.brief-primary, .brief-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: .1em;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #181512;
  padding: 15px 28px;
  transition: all .25s ease;
}
.brief-primary { background: #181512; color: #fff; }
.brief-primary:hover { background: transparent; color: #181512; }
.brief-secondary { background: transparent; color: #181512; }
.brief-secondary:hover:not(:disabled) { background: rgba(239,238,235,.65); }
.brief-secondary:disabled { opacity: .35; cursor: not-allowed; }
.brief-link { font-family: Manrope, sans-serif; font-size: 13px; color: #4d4540; text-decoration: underline; text-underline-offset: 4px; }
.brief-review { border-top: 1px solid rgba(126,117,111,.35); padding-top: 28px; margin-bottom: 28px; }
.brief-review dl { display: grid; grid-template-columns: 180px 1fr; gap: 12px 24px; }
.brief-review dt { font-family: Manrope, sans-serif; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: #7e756f; }
.brief-review dd { font-family: Manrope, sans-serif; font-size: 16px; color: #181512; }
.brief-success { border-top: 1px solid rgba(126,117,111,.35); padding-top: 42px; min-height: 320px; }
@media (max-width: 767px) {
  .brief-options { grid-template-columns: 1fr; }
  .brief-question-card { min-height: 420px; }
  .brief-controls { flex-direction: column-reverse; }
  .brief-primary, .brief-secondary { width: 100%; }
  .brief-review dl { grid-template-columns: 1fr; }
}


/* Image protection: discourage direct saving/copying through browser right-click and drag. */
img, picture, .protected-image-zone, .lightbox, .gallery-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
img {
  -webkit-user-drag: none;
  user-drag: none;
}


/* Final footer alignment polish */
.site-footer {
  width: 100%;
  border-top: 1px solid rgba(126,117,111,.28);
  background: #f4f3f1;
  padding: 96px 0 48px;
}
.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, .7fr) minmax(180px, .7fr);
  gap: 64px;
  align-items: start;
}
.site-footer-logo {
  display: inline-block;
  font-family: 'Libre Caslon Text', Georgia, serif;
  font-size: 34px;
  line-height: 1;
  color: #181512;
  text-decoration: none;
  margin-bottom: 76px;
}
.site-footer-brand p {
  max-width: 390px;
  color: #5f5750;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.site-footer-label {
  font-family: Manrope, sans-serif;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #4d4540;
  margin-bottom: 28px;
}
.site-footer-nav, .site-footer-connect {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer-nav a, .site-footer-connect a {
  font-family: Manrope, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #5f5750;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer-nav a:hover, .site-footer-connect a:hover { color: #181512; }
.contact-message-help {
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #7e756f;
  margin: 8px 0 14px;
  max-width: 760px;
}
.contact-message-field {
  border: 1px solid rgba(126,117,111,.38) !important;
  background: rgba(255,255,255,.45) !important;
  padding: 18px 20px !important;
  line-height: 1.6 !important;
  min-height: 220px !important;
}
.contact-message-field:focus {
  border-color: #181512 !important;
  background: #fff !important;
}
@media (max-width: 767px) {
  .site-footer { padding: 72px 0 36px; }
  .site-footer-inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .site-footer-logo { margin-bottom: 28px; }
}


/* Global image watermark overlay */
.yt-watermark-parent {
  position: relative;
}

.yt-watermark-parent::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url('assets/watermark/yt-studio-watermark.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0.4;
}

.yt-watermark-parent > img,
.yt-watermark-parent picture img {
  position: relative;
  z-index: 1;
}


/* Mobile/desktop scroll reliability */
html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}
html, body {
  min-height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}
body {
  -webkit-overflow-scrolling: touch;
}
.site-mobile-panel {
  overscroll-behavior: contain;
}

/* Normal mobile scrolling fix */
@media (max-width: 767px) {
  html,
  body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body.home-page,
  body.home-page main {
    height: auto !important;
    min-height: 100% !important;
    overflow: visible !important;
  }

  body.home-page #home {
    min-height: 100svh !important;
    height: auto !important;
    overflow: hidden !important;
  }

  body.home-page #home > .absolute.inset-0.z-0,
  body.home-page #home .hero-soft-overlay,
  body.home-page #home .animate-bounce {
    pointer-events: none !important;
  }
}
