/* ================================================================
   ELLY BARBERSHOP — PORTUGAL
   Custom styles loaded after Bootstrap.
   ================================================================ */

:root {
  --elly-ink: #090b0a;
  --elly-ink-2: #0f1210;
  --elly-panel: #151916;
  --elly-panel-2: #1b201c;

  --elly-paper: #f2efe8;
  --elly-muted: #a3a8a3;
  --elly-muted-dark: #737a74;

  --elly-gold: #c9a24d;
  --elly-gold-bright: #e0bd6b;
  --elly-gold-soft: rgba(201, 162, 77, 0.16);

  --elly-green: #39f26f;

  --elly-line: rgba(242, 239, 232, 0.12);
  --elly-line-gold: rgba(201, 162, 77, 0.28);

  --elly-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);

  --elly-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --elly-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ================================================================
   DOCUMENT
   ================================================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--elly-ink);
  color: var(--elly-paper);
  font-family: var(--elly-body);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.offcanvas-open {
  padding-right: 0 !important;
}

::selection {
  background: var(--elly-gold);
  color: var(--elly-ink);
}

:focus-visible {
  outline: 2px solid var(--elly-green) !important;
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 3000;
  padding: 0.7rem 1rem;
  background: var(--elly-paper);
  color: var(--elly-ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */

.section {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.section-dark {
  background: var(--elly-ink);
}

.section-panel {
  background: var(--elly-panel);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  color: var(--elly-gold-bright);
  font-family: var(--elly-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  background: transparent url("../assets/razor.png") center / contain no-repeat;
  content: "";
  filter: invert(72%) sepia(45%) saturate(729%) hue-rotate(358deg) brightness(91%) contrast(85%);
}

.section-title {
  margin-bottom: 1.8rem;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-title span {
  color: var(--elly-gold);
}

.section-intro {
  max-width: 41rem;
  margin-bottom: 1.25rem;
  color: #d8d9d5;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.body-copy,
.section-side-copy {
  color: var(--elly-muted);
}

.section-side-copy {
  max-width: 28rem;
  margin: 0;
  font-size: 0.94rem;
}

.pattern-hex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='84' viewBox='0 0 96 84'%3E%3Cpath d='M24 1h48l23 41-23 41H24L1 42z' fill='none' stroke='%23c9a24d' stroke-opacity='.08'/%3E%3C/svg%3E");
  background-size: 96px 84px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.icon-gold {
  filter: invert(72%) sepia(45%) saturate(729%) hue-rotate(358deg) brightness(91%) contrast(85%);
}

/* ================================================================
   BUTTONS AND LINKS
   ================================================================ */

.btn {
  border-radius: 0;
  font-family: var(--elly-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-brand,
.btn-outline-brand {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-brand {
  border: 1px solid var(--elly-gold);
  background: var(--elly-gold);
  color: var(--elly-ink);
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: var(--elly-gold-bright);
  background: var(--elly-gold-bright);
  color: var(--elly-ink);
  transform: translateY(-2px);
}

.btn-outline-brand {
  border: 1px solid var(--elly-line-gold);
  background: transparent;
  color: var(--elly-paper);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: var(--elly-gold);
  background: var(--elly-gold-soft);
  color: var(--elly-gold-bright);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--elly-gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.text-link:hover {
  color: var(--elly-gold-bright);
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

/* ================================================================
   HEADER AND NAVIGATION
   ================================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--elly-line);
  background: rgba(9, 11, 10, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header .navbar {
  min-height: 5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--elly-paper) !important;
  font-family: var(--elly-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark span {
  color: var(--elly-gold);
}

.site-header .nav-link {
  position: relative;
  padding-inline: 0.8rem !important;
  color: #d1d4d0;
  font-family: var(--elly-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header .nav-link::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.35rem;
  left: 0.8rem;
  height: 1px;
  background: var(--elly-gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--elly-gold-bright);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  transform: scaleX(1);
}

.menu-lines {
  display: flex;
  width: 1.7rem;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-lines i {
  width: 100%;
  height: 1px;
  background: var(--elly-paper);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--elly-line);
  color: var(--elly-muted);
  font-family: var(--elly-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  opacity: 0.88;
}

.language-switcher a {
  color: var(--elly-muted);
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus,
.language-switcher a.is-active {
  color: var(--elly-gold-bright);
}

/* ================================================================
   MOBILE OFFCANVAS
   ================================================================ */

.offcanvas-elly {
  --bs-offcanvas-width: min(88vw, 390px);
  border-left: 1px solid var(--elly-line-gold);
  background: var(--elly-ink-2);
  color: var(--elly-paper);
}

.offcanvas-elly .offcanvas-header {
  min-height: 5rem;
  border-bottom: 1px solid var(--elly-line);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.mobile-nav a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--elly-line);
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--elly-gold-bright);
}

.language-switcher-mobile {
  width: 100%;
  justify-content: center;
  margin: 1.5rem 0 2rem;
  padding-block: 0.8rem;
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #050605;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 32%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.83) 38%, rgba(5, 6, 5, 0.25) 72%, rgba(5, 6, 5, 0.5) 100%),
    linear-gradient(0deg, rgba(5, 6, 5, 0.96) 0%, transparent 50%, rgba(5, 6, 5, 0.28) 100%);
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(201, 162, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 77, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  max-width: 9ch;
  margin: 0;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: clamp(4.6rem, 11vw, 10.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero-title span {
  display: inline-block;
  color: var(--elly-gold);
}

.hero-lead {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: #d2d5d1;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-note {
  width: min(100%, 19rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--elly-line);
  background: rgba(9, 11, 10, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-note-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  object-fit: contain;
}

.hero-note-copy {
  min-width: 0;
}

.hero-note-copy span {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--elly-gold-bright);
  font-family: var(--elly-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.hero-note-copy p {
  margin: 0;
  color: var(--elly-paper);
  font-size: 0.82rem;
  line-height: 1.45;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1320px) / 2 + 1rem));
  bottom: 4.25rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(242, 239, 232, 0.58);
  font-family: var(--elly-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.scroll-cue span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(to bottom, var(--elly-gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.scroll-cue:hover {
  color: var(--elly-gold-bright);
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.72);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 0.2s; }
.hero-reveal:nth-child(2) { animation-delay: 0.35s; }
.hero-reveal:nth-child(3) { animation-delay: 0.5s; }
.hero-reveal:nth-child(4) { animation-delay: 0.65s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keeps the note clear of the vertical scroll cue on wide screens. */
@media (min-width: 1200px) {
  .hero-note {
    margin-right: 4.75rem;
  }
}

/* ================================================================
   MOVING SERVICE STRIP
   ================================================================ */

.service-strip {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--elly-line-gold);
  background: var(--elly-ink-2);
}

.service-strip-track {
  display: flex;
  width: max-content;
  animation: stripMove 26s linear infinite;
  will-change: transform;
}

.service-strip-group {
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 0.95rem 1.25rem;
  color: rgba(224, 189, 107, 0.76);
  font-family: var(--elly-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.service-strip i {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background: transparent url("../assets/hairdressing-scissors.png") center / contain no-repeat;
  opacity: 0.72;
  filter: invert(72%) sepia(45%) saturate(729%) hue-rotate(358deg) brightness(91%) contrast(85%);
}

.service-strip:hover .service-strip-track {
  animation-play-state: paused;
}

@keyframes stripMove {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ================================================================
   CONCEPT IMAGE
   ================================================================ */

.image-composition {
  position: relative;
  width: 100%;
  max-width: 34rem;
}

.image-composition-main {
  aspect-ratio: 4 / 5;
}

.image-composition-main img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  box-shadow: var(--elly-shadow);
}

.image-frame {
  position: absolute;
  top: -1.1rem;
  left: -1.1rem;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 1px solid var(--elly-line-gold);
}

.image-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(57, 242, 111, 0.35);
  background: rgba(9, 11, 10, 0.94);
  color: var(--elly-green);
  box-shadow: 0 0 24px rgba(57, 242, 111, 0.12);
  font-family: var(--elly-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.brand-quote {
  max-width: 34rem;
  margin: 2rem 0 0;
  padding: 0.1rem 0 0.1rem 1.25rem;
  border-left: 2px solid var(--elly-gold);
  color: #d6d8d4;
  font-family: var(--elly-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.45;
}

/* ================================================================
   SERVICE CARDS
   ================================================================ */

.service-card {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid var(--elly-line);
  background: var(--elly-ink-2);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-card::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid var(--elly-line-gold);
  border-radius: 50%;
  content: "";
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  border-color: var(--elly-line-gold);
  background: var(--elly-panel-2);
  transform: translateY(-5px);
}

.service-card:hover::after {
  border-color: rgba(201, 162, 77, 0.52);
  transform: scale(1.08);
}

.service-card-featured {
  border-color: rgba(201, 162, 77, 0.45);
  background: linear-gradient(145deg, rgba(201, 162, 77, 0.1), var(--elly-ink-2) 62%);
}

.service-number {
  position: relative;
  z-index: 1;
  margin-bottom: 2.75rem;
  color: var(--elly-gold);
  font-family: var(--elly-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.service-card h3 {
  max-width: 11ch;
  margin: 0 0 1rem;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 2rem;
  color: var(--elly-muted);
  font-size: 0.92rem;
}

.service-tag {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--elly-gold-bright);
  font-family: var(--elly-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.services-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 1.6rem 0;
  border-block: 1px solid var(--elly-line);
}

.services-bottom p {
  margin: 0;
  color: var(--elly-muted);
  font-size: 0.92rem;
}

.services-bottom-title {
  color: var(--elly-paper) !important;
  font-family: var(--elly-display);
  font-size: 1.55rem !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ================================================================
   EXPERIENCE AND STUDIO COLLAGE
   ================================================================ */

#espaco {
  overflow: hidden;
}

.experience-list {
  margin-top: 2.5rem;
}

.experience-item {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--elly-line);
}

.experience-item:last-child {
  border-bottom: 1px solid var(--elly-line);
}

.experience-item > span {
  color: var(--elly-gold);
  font-family: var(--elly-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.experience-item h3 {
  margin: 0 0 0.35rem;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-item p {
  margin: 0;
  color: var(--elly-muted);
  font-size: 0.9rem;
}

.studio-collage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: 4rem 28rem 8rem;
  width: 100%;
  min-height: 40rem;
}

.studio-main {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: var(--elly-shadow);
}

.studio-detail {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  width: calc(100% + 3rem);
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center 35%;
  border: 0.55rem solid var(--elly-ink);
  box-shadow: var(--elly-shadow);
}

.studio-stamp {
  position: absolute;
  top: 1.5rem;
  left: calc(44% - 3.5rem);
  z-index: 3;
  width: 7rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid var(--elly-line-gold);
  border-radius: 50%;
  background: rgba(9, 11, 10, 0.92);
  color: var(--elly-gold-bright);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
  font-family: var(--elly-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

/* ================================================================
   GALLERY
   ================================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 18rem 18rem;
  gap: 0.85rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--elly-ink-2);
  color: var(--elly-paper);
  text-align: left;
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 62%);
  content: "";
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.gallery-card span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.05);
  transform: scale(1.055);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 0.82;
}

.gallery-modal .modal-content {
  border: 1px solid var(--elly-line-gold);
  border-radius: 0;
  background: var(--elly-ink-2);
  color: var(--elly-paper);
}

.gallery-modal .modal-header {
  border-bottom: 1px solid var(--elly-line);
}

.gallery-modal .modal-title {
  font-family: var(--elly-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050605;
}

/* ================================================================
   BOOKING CALL TO ACTION
   ================================================================ */

.booking-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 10rem);
  background: var(--elly-ink);
}

.booking-media,
.booking-overlay {
  position: absolute;
  inset: 0;
}

.booking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(0.18);
}

.booking-overlay {
  background: rgba(5, 6, 5, 0.79);
  box-shadow: inset 0 0 160px rgba(0, 0, 0, 0.95);
}

.booking-title {
  margin: 0;
  color: var(--elly-paper);
  font-family: var(--elly-display);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.booking-section p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  color: #d1d4d0;
  font-size: 1.05rem;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.booking-section small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(242, 239, 232, 0.55);
  font-size: 0.72rem;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--elly-gold);
  background: #050605;
  color: var(--elly-muted);
}

.footer-brand {
  margin-bottom: 1.4rem;
  font-size: 2rem;
}

.site-footer p {
  max-width: 29rem;
  margin-bottom: 1.4rem;
}

.footer-social {
  color: var(--elly-gold-bright);
  font-family: var(--elly-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer h2 {
  margin-bottom: 1.2rem;
  color: var(--elly-gold-bright);
  font-family: var(--elly-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.site-footer li a {
  color: var(--elly-muted);
  text-decoration: none;
}

.site-footer li a:hover {
  color: var(--elly-paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--elly-line);
  color: var(--elly-muted-dark);
  font-family: var(--elly-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--elly-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--elly-gold-bright);
}

/* ================================================================
   SCROLL REVEALS
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: clamp(4.5rem, 10vw, 8rem);
  }

  .scroll-cue {
    display: none;
  }

  .service-card {
    min-height: 20rem;
  }

  .studio-collage {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .studio-detail {
    width: calc(100% + 2rem);
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    min-height: 4.65rem;
  }

  .hero-media img {
    object-position: 62% 30%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.9), rgba(5, 6, 5, 0.48)),
      linear-gradient(0deg, rgba(5, 6, 5, 0.97) 0%, transparent 60%, rgba(5, 6, 5, 0.35) 100%);
  }

  .image-composition {
    margin-inline: auto;
  }

  .service-strip-group {
    min-width: max-content;
  }

  .service-strip span {
    padding-inline: 1rem;
  }

  .studio-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 30rem 18rem;
    min-height: 48rem;
  }

  .studio-main {
    grid-column: 1;
    grid-row: 1;
    width: 88%;
    height: 30rem;
    justify-self: end;
    object-position: center 25%;
  }

  .studio-detail {
    grid-column: 1;
    grid-row: 2;
    width: 58%;
    height: 18rem;
    align-self: start;
    justify-self: start;
    border-width: 0.5rem;
    transform: translateY(-4rem);
  }

  .studio-stamp {
    top: 1rem;
    left: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 21rem 17rem 17rem;
  }

  .gallery-card-tall {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding-block: 5.2rem;
  }

  .brand-mark {
    font-size: 1.28rem;
  }

  .hero-title {
    max-width: 8.5ch;
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero-lead {
    max-width: 31rem;
  }

  .hero-actions .btn,
  .booking-actions .btn,
  .services-bottom .btn {
    width: 100%;
  }

  .image-frame {
    display: none;
  }

  .image-label {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .services-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .studio-collage {
    grid-template-rows: 25rem 16rem;
    min-height: 41rem;
  }

  .studio-main {
    width: 100%;
    height: 25rem;
    object-position: center 24%;
  }

  .studio-detail {
    width: 68%;
    height: 16rem;
    border-width: 0.35rem;
    transform: translateY(-3rem);
  }

  .studio-stamp {
    top: 0.85rem;
    left: 0.85rem;
    width: 5.6rem;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-card {
    width: 100%;
    height: 18rem;
    margin-bottom: 0.8rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.23em;
  }

  .eyebrow::before {
    width: 1.25rem;
    height: 1.25rem;
    flex-basis: 1.25rem;
  }

  .section-title {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .service-card {
    min-height: 18.5rem;
  }

  .studio-collage {
    grid-template-rows: 22rem 14rem;
    min-height: 36rem;
  }

  .studio-main {
    height: 22rem;
  }

  .studio-detail {
    width: 72%;
    height: 14rem;
    transform: translateY(-2.5rem);
  }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }

  .service-strip-track {
    animation: none;
  }
}
