/**
 * Escultor demo — Garage Web Tech proprietary styles.
 */
:root {
  --esc-bg: #f6f3ec;
  --esc-bg-deep: #eae4d8;
  --esc-ink: #161411;
  --esc-ink-soft: #3d3832;
  --esc-muted: #6e665c;
  --esc-line: rgba(22, 20, 17, 0.12);
  --esc-accent: #7a5c3a;
  --esc-accent-soft: rgba(122, 92, 58, 0.14);
  --esc-white: #fdfcfa;
  --esc-font-display: "Cormorant Garamond", Georgia, serif;
  --esc-font-ui: "Outfit", system-ui, sans-serif;
  --esc-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}
html { scroll-behavior: smooth; }
body.esc {
  margin: 0;
  font-family: var(--esc-font-ui);
  font-size: 1.05rem;
  color: var(--esc-ink-soft);
  background: var(--esc-bg);
  line-height: 1.65;
}
body.esc h1, body.esc h2, body.esc h3, body.esc .esc-display {
  font-family: var(--esc-font-display);
  font-weight: 500;
  color: var(--esc-ink);
  letter-spacing: 0.02em;
}
.esc-skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 11000;
  padding: 0.5rem 1rem;
  background: var(--esc-ink);
  color: var(--esc-bg);
  transform: translateY(-200%);
  transition: transform 0.2s var(--esc-ease);
}
.esc-skip:focus { transform: translateY(0); }
.esc-header {
  position: sticky;
  top: var(--gwt-site-navbar-offset, 0px);
  z-index: 900;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--esc-ease), box-shadow 0.25s var(--esc-ease);
}
.esc-header.is-scrolled {
  border-bottom-color: var(--esc-line);
  box-shadow: 0 8px 32px rgba(22, 20, 17, 0.06);
}
.esc-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media (min-width: 992px) {
  .esc-header__inner { padding-top: 1.5rem; padding-bottom: 1.25rem; }
}
.esc-logo {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.esc-logo__name {
  font-family: var(--esc-font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--esc-ink);
}
.esc-logo__tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--esc-muted);
}
.esc-nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.75rem;
}
.esc-nav a {
  text-decoration: none;
  color: var(--esc-muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s var(--esc-ease);
}
.esc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--esc-accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--esc-ease);
}
.esc-nav a:hover, .esc-nav a.is-active { color: var(--esc-ink); }
.esc-nav a:hover::after, .esc-nav a.is-active::after { transform: scaleX(1); }
.esc-burger {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: var(--esc-ink);
}
.esc-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.esc-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
}
.esc-menu-panel:not([hidden]) { pointer-events: auto; }
.esc-menu-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 17, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--esc-ease);
}
.esc-menu-panel:not([hidden]) .esc-menu-panel__backdrop { opacity: 1; }
.esc-menu-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--esc-white);
  box-shadow: -24px 0 48px rgba(22, 20, 17, 0.12);
  padding: 4rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--esc-ease);
}
.esc-menu-panel:not([hidden]) .esc-menu-panel__sheet { transform: translateX(0); }
.esc-menu-panel__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--esc-muted);
  cursor: pointer;
}
.esc-menu-panel__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
}
.esc-menu-panel__nav a {
  font-family: var(--esc-font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  text-decoration: none;
  color: var(--esc-ink);
  padding: 0.5rem 0;
}
.esc-hero-full {
  position: relative;
  min-height: calc(100vh - var(--gwt-site-navbar-offset, 0px));
  min-height: calc(100dvh - var(--gwt-site-navbar-offset, 0px));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  background: var(--esc-ink);
}
.esc-hero-full__media { position: absolute; inset: 0; z-index: 0; }
.esc-hero-full__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.92);
}
.esc-hero-full__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22,20,17,0.2) 0%, rgba(22,20,17,0.75) 55%, rgba(22,20,17,0.92) 100%);
}
.esc-hero-full__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 48rem;
  color: var(--esc-bg);
}
.esc-hero-full__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.esc-hero-full__title {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--esc-white);
  font-weight: 500;
}
.esc-hero-full__lead {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.esc-hero-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.esc-hero-full__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(253, 252, 250, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: esc-float 3s ease-in-out infinite;
}
@keyframes esc-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .esc-hero-full__scroll { animation: none; }
}
.esc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background 0.25s var(--esc-ease), color 0.25s var(--esc-ease), border-color 0.25s var(--esc-ease);
}
.esc-btn--light {
  background: var(--esc-white);
  color: var(--esc-ink);
  border-color: var(--esc-white);
}
.esc-btn--light:hover { background: transparent; color: var(--esc-white); }
.esc-btn--ghost {
  background: transparent;
  color: var(--esc-white);
  border-color: rgba(253, 252, 250, 0.45);
}
.esc-btn--ghost:hover {
  border-color: var(--esc-white);
  background: rgba(253, 252, 250, 0.08);
}
.esc-btn--primary {
  background: var(--esc-ink);
  color: var(--esc-bg);
  border-color: var(--esc-ink);
}
.esc-btn--primary:hover {
  background: var(--esc-accent);
  border-color: var(--esc-accent);
  color: var(--esc-white);
}
.esc-btn--outline-dark {
  background: transparent;
  color: var(--esc-ink);
  border-color: var(--esc-ink);
}
.esc-btn--outline-dark:hover {
  background: var(--esc-ink);
  color: var(--esc-bg);
}
.esc-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.esc-section--tight {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.esc-section--surface { background: var(--esc-white); }
.esc-section--deep { background: var(--esc-bg-deep); }
.esc-section--dark {
  background: var(--esc-ink);
  color: rgba(246, 243, 236, 0.88);
}
.esc-section--dark h2, .esc-section--dark h3 { color: var(--esc-white); }
.esc-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--esc-muted);
  margin-bottom: 0.75rem;
}
.esc-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  max-width: 20ch;
}
.esc-prose-narrow { max-width: 38rem; }
.esc-prose-narrow p:last-child { margin-bottom: 0; }
.esc-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .esc-tile-grid { grid-template-columns: repeat(4, 1fr); }
}
.esc-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--esc-ink);
}
.esc-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.7s var(--esc-ease), opacity 0.4s;
}
.esc-tile a:hover img { transform: scale(1.04); opacity: 1; }
.esc-tile__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(22, 20, 17, 0.85));
  color: var(--esc-white);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s var(--esc-ease);
}
.esc-tile a:hover .esc-tile__cap { opacity: 1; transform: translateY(0); }
.esc-card-work {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--esc-white);
  border: 1px solid var(--esc-line);
  overflow: hidden;
  transition: box-shadow 0.35s var(--esc-ease), transform 0.35s var(--esc-ease);
}
.esc-card-work:hover {
  box-shadow: 0 20px 50px rgba(22, 20, 17, 0.1);
  transform: translateY(-3px);
}
.esc-card-work__img { aspect-ratio: 4 / 5; overflow: hidden; }
.esc-card-work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--esc-ease);
}
.esc-card-work:hover .esc-card-work__img img { transform: scale(1.03); }
.esc-card-work__body { padding: 1.25rem 1.35rem 1.5rem; }
.esc-card-work__title {
  font-family: var(--esc-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--esc-ink);
}
.esc-card-work__meta {
  font-size: 0.8rem;
  color: var(--esc-muted);
  letter-spacing: 0.04em;
}
.esc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.esc-filter-btn {
  border: 1px solid var(--esc-line);
  background: var(--esc-white);
  color: var(--esc-muted);
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.esc-filter-btn:hover, .esc-filter-btn.is-active {
  background: var(--esc-ink);
  color: var(--esc-bg);
  border-color: var(--esc-ink);
}
.esc-masonry { column-count: 2; column-gap: 0; }
@media (max-width: 575.98px) { .esc-masonry { column-count: 1; } }
.esc-masonry__item {
  break-inside: avoid;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.esc-masonry__item a { display: block; text-decoration: none; color: inherit; }
.esc-masonry__item img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  transition: transform 0.65s var(--esc-ease), filter 0.4s;
  filter: brightness(1);
}
.esc-masonry__item a:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.esc-masonry__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 17, 0.35);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  transition: opacity 0.35s var(--esc-ease);
  color: var(--esc-white);
}
.esc-masonry__item a:hover .esc-masonry__overlay { opacity: 1; }
.esc-masonry__overlay h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--esc-white);
  margin-bottom: 0.35rem;
}
.esc-masonry__overlay span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}
.esc-page-hero {
  padding: clamp(3rem, 10vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  background: var(--esc-bg-deep);
  border-bottom: 1px solid var(--esc-line);
}
.esc-page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}
.esc-page-hero p { max-width: 36rem; color: var(--esc-muted); margin: 0; }
.esc-detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: min(85vh, 900px);
  background: var(--esc-ink);
}
@media (min-width: 992px) {
  .esc-detail-hero {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: min(88vh, 920px);
  }
}
.esc-detail-hero__visual { position: relative; min-height: 50vh; }
.esc-detail-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.esc-detail-hero__panel {
  background: var(--esc-white);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.esc-detail-hero__panel .esc-eyebrow { color: var(--esc-accent); }
.esc-detail-meta {
  font-size: 0.85rem;
  color: var(--esc-muted);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.esc-detail-body { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.esc-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.esc-thumb-row a, .esc-thumb-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--esc-line);
}
.esc-about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .esc-about-split { grid-template-columns: 1fr 0.9fr; gap: 4rem; }
}
.esc-about-split__figure { margin: 0; position: relative; }
.esc-about-split__figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--esc-line);
}
.esc-quote {
  font-family: var(--esc-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--esc-ink);
  border-left: 3px solid var(--esc-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.esc-ex-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--esc-white);
  border: 1px solid var(--esc-line);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.35s var(--esc-ease);
}
@media (min-width: 768px) {
  .esc-ex-card { grid-template-columns: 0.42fr 0.58fr; }
}
.esc-ex-card:hover { box-shadow: 0 16px 40px rgba(22, 20, 17, 0.08); }
.esc-ex-card__media { min-height: 200px; position: relative; }
.esc-ex-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}
.esc-ex-card__body {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
}
.esc-ex-card__kind {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--esc-accent);
  margin-bottom: 0.5rem;
}
.esc-ex-card__body h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.esc-ex-card__dates {
  font-size: 0.85rem;
  color: var(--esc-muted);
  margin-bottom: 0.75rem;
}
.esc-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .esc-contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
  }
}
.esc-aside {
  background: var(--esc-bg-deep);
  border: 1px solid var(--esc-line);
  padding: 2rem;
}
.esc-aside h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--esc-muted);
  margin-bottom: 1rem;
}
.esc-form .form-control, .esc-form .form-select {
  border-radius: 0;
  border-color: var(--esc-line);
  padding: 0.65rem 0.85rem;
}
.esc-form .form-control:focus, .esc-form .form-select:focus {
  border-color: var(--esc-accent);
  box-shadow: 0 0 0 0.15rem var(--esc-accent-soft);
}
.esc-cta-band {
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.esc-cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
}
.esc-cta-band p {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  opacity: 0.88;
}
.esc-footer {
  padding: 3.5rem 0;
  border-top: 1px solid var(--esc-line);
  background: var(--esc-white);
}
.esc-footer__mark {
  font-family: var(--esc-font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--esc-ink);
  margin-bottom: 0.75rem;
}
.esc-footer__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--esc-muted);
  margin-bottom: 0.75rem;
}
.esc-footer__links { list-style: none; padding: 0; margin: 0; }
.esc-footer__links a {
  color: var(--esc-ink-soft);
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0;
}
.esc-footer__links a:hover { color: var(--esc-accent); }
.esc-footer__text { color: var(--esc-muted); }
.esc-gwt-strip {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  background: #1a1d24;
  color: rgba(255, 255, 255, 0.82);
}
.esc-gwt-btn {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.esc-gwt-btn--primary { background: #b8f020; color: #0f1a08; }
.esc-gwt-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
[data-esc-hidden="1"] { display: none !important; }
.esc-manifesto {
  font-family: var(--esc-font-display);
  color: var(--esc-ink);
}
.esc-ex-teaser {
  border-color: var(--esc-line) !important;
}
.esc-ex-teaser__kind {
  letter-spacing: 0.2em;
  color: var(--esc-accent);
}
.esc-ex-teaser__title {
  font-family: var(--esc-font-display);
}
.esc-font-display {
  font-family: var(--esc-font-display);
}
.esc-contact-hero__ratio {
  max-height: 360px;
}
.esc-contact-hero__ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.esc-contact-hero .esc-page-hero {
  background: var(--esc-bg-deep);
}

