/* Remix: Adaptacija Stanova — vanilla styles (replaces prior Tailwind build) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --font-sans: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
  --color-gold: #c6a361;
  --color-gold-dark: #a68b52;
  --color-luxury-black: #0a0a0a;
  --color-luxury-gray: #141414;
  --color-luxury-white: #ededed;
  --header-offset-md: 2rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--color-luxury-black);
  color: var(--color-luxury-white);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background: var(--color-luxury-black);
  color: var(--color-luxury-white);
}

::selection {
  background: color-mix(in srgb, var(--color-gold) 30%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.app {
  min-height: 100vh;
  background: var(--color-luxury-black);
  color: var(--color-luxury-white);
  font-family: var(--font-sans);
}

/* —— Editorial sidebar —— */
.editorial-rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 40;
  background: var(--color-luxury-black);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}

@media (min-width: 1280px) {
  .editorial-rail {
    display: flex;
  }
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 700;
}

.rail-dots {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rail-dots span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #fff;
}

.rail-dots span:nth-child(2),
.rail-dots span:nth-child(3) {
  background: rgba(255, 255, 255, 0.2);
}

.rail-num {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.4;
}

/* —— Top bar —— */
.top-bar {
  display: none;
  background: var(--color-luxury-black);
  color: #fff;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
  position: relative;
  margin-left: 0;
}

@media (min-width: 1280px) {
  .top-bar {
    margin-left: 4rem;
  }
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
  .top-bar-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .top-bar-inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1280px) {
  .top-bar-inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.top-bar-left,
.top-bar-right,
.icon-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-left {
  gap: 3rem;
}

.top-bar .text-label-caps {
  font-size: 0.875rem;
  opacity: 1;
}

/* —— Nav —— */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.5s;
  background: transparent;
  padding: 1.5rem 0;
}

@media (min-width: 1280px) {
  .nav-wrap {
    left: 4rem;
    width: calc(100% - 4rem);
  }
}

@media (min-width: 768px) {
  .nav-wrap {
    top: 2rem;
  }

  .nav-wrap.nav--scrolled {
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
  }
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.brand {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-style: italic;
  font-family: var(--font-serif);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand {
    font-size: 3.75rem;
  }
}

.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.2s;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-gold);
}

.nav-link.is-active {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-icon-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 640px) {
  .nav-icon-links {
    display: flex;
  }
}

.nav-icon-links a {
  padding: 0.25rem;
  opacity: 0.6;
  transition: color 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-links a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.btn-menu {
  display: flex;
  padding: 0.25rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}

/* —— Mobile menu —— */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--color-luxury-black);
  padding: 8rem 2rem 2rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  text-align: right;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-style: italic;
  font-weight: 300;
}

.mobile-link.is-active {
  color: var(--color-gold);
}

.mobile-cta {
  padding-top: 5rem;
  text-align: right;
}

.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  color: var(--color-gold);
}

.mobile-phone span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
}

/* —— Main column —— */
.main-col {
  margin-left: 0;
}

@media (min-width: 1280px) {
  .main-col {
    margin-left: 4rem;
  }
}

/* —— Typography utilities —— */
.text-label-caps {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.8;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 7.5rem);
  line-height: 0.85;
  font-weight: 300;
  letter-spacing: -0.04em;
  font-style: italic;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* —— Views —— */
.view {
  display: none;
  animation: fadeIn 0.4s ease;
}

.view.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* —— Hero —— */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: crosshair;
}

.hero .hero-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero .hero-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 1s;
}

.hero.hero--hovered .hero-after img {
  filter: brightness(1.1);
}

.hero-before-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  border-right: 1px solid color-mix(in srgb, var(--color-gold) 40%, transparent);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s ease;
}

.hero.hero--hovered .hero-before-layer {
  clip-path: inset(0 50% 0 0);
}

.hero-before-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.4) contrast(1.25);
}

.hero-before-label {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.hero-before-label span {
  text-transform: uppercase;
  letter-spacing: 1em;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 3rem);
  opacity: 0.3;
}

.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.6) 0%,
    transparent 50%,
    transparent
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  pointer-events: none;
}

.hero-content .pointer-auto {
  pointer-events: auto;
}

.hero-content-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content-inner {
    padding: 0 5rem;
  }
}

.hero-badge {
  display: inline-block;
  border: none;
  padding: 0.375rem 1rem 0.375rem 1rem;
  border-radius: 0.125rem;
  margin-bottom: 1rem;
}

.hero-badge .text-label-caps {
  color: var(--color-gold);
  opacity: 1;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.hero-title-wrap {
  display: block;
  margin-bottom: 1.5rem;
}

.hero-title-glass {
  display: inline-block;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

@media (min-width: 768px) {
  .hero-title-glass {
    padding: 1.5rem;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}

.hero-title .italic {
  font-style: italic;
  margin-left: 2rem;
  opacity: 0.9;
}

.hero-quote {
  max-width: 24rem;
  margin-left: 1.5rem;
  border-left: 1px solid var(--color-gold);
  padding: 1rem 0 1rem 1.5rem;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0.375rem 0.375rem 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.hero-quote p {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
  .hero-quote p {
    font-size: 1.125rem;
  }
}

.btn-ghost {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding-bottom: 0.25rem;
  background: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

/* —— Sections —— */
.section {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 10rem 5rem;
  }
}

.section-label {
  color: var(--color-gold);
  margin-bottom: 2rem;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Featured / gallery cards (before/after) */
.reveal-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.reveal-card .after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
  transition: filter 0.7s;
}

.reveal-card:hover .after {
  filter: grayscale(0) brightness(1);
}

.reveal-card .before-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.reveal-card:hover .before-wrap {
  clip-path: inset(0 0% 0 0);
}

.reveal-card .before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5) contrast(1.25);
}

.before-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
}

.reveal-card .grad {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: linear-gradient(to top, #000, transparent, transparent);
}

.reveal-card .caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 30;
}

.caption .cat {
  color: var(--color-gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.caption h3 {
  font-size: 2.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  margin: 0;
}

.section-cta {
  margin-top: 5rem;
  text-align: center;
}

.btn-link-row {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-link-row:hover {
  color: var(--color-gold);
}

.btn-link-row svg {
  transition: transform 0.2s;
}

.btn-link-row:hover svg {
  transform: rotate(45deg);
}

/* Testimonials band */
.band {
  background: var(--color-luxury-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.t-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
}

.t-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.t-card-head img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--color-gold) 30%, transparent);
}

.t-card-name {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.25rem 0;
}

.t-stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
}

.t-stars svg {
  width: 10px;
  height: 10px;
  fill: var(--color-gold);
  color: var(--color-gold);
}

.t-card p {
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* About */
.about-view {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-view {
    padding: 10rem 1.5rem;
  }
}

.about-lead {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0 0 3rem 0;
}

@media (min-width: 768px) {
  .about-lead {
    font-size: 1.5rem;
  }
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* Gallery filters */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.filter-btn {
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: #fff;
  color: #fff;
}

.filter-btn.is-active {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
}

/* Gallery grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(12, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .gallery-item.col-12 {
    grid-column: span 12;
  }
  .gallery-item.col-6 {
    grid-column: span 6;
  }
}

.gallery-item .aspect {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-item .aspect {
    height: 600px;
  }
}

.gallery-item .after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5);
  transition: filter 0.7s;
}

.gallery-item:hover .after {
  filter: grayscale(0) brightness(1);
}

.gallery-item .before-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.gallery-item:hover .before-wrap {
  clip-path: inset(0 0% 0 0);
}

.gallery-item .before-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5) contrast(1.25);
}

.gallery-hover-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1.5rem;
  border: 1px solid color-mix(in srgb, var(--color-gold) 30%, transparent);
  pointer-events: none;
}

.gallery-item:hover .gallery-hover-cta {
  opacity: 1;
}

.gallery-hover-cta span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--color-gold);
  font-weight: 700;
}

.gallery-item .g-grad {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to top, #000, transparent, transparent);
  opacity: 0.8;
  transition: opacity 0.2s;
}

@media (min-width: 1024px) {
  .gallery-item .g-grad {
    opacity: 0.6;
  }
  .gallery-item:hover .g-grad {
    opacity: 1;
  }
}

.gallery-item .g-cap {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 20;
}

/* Contact */
.contact-view {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .contact-view {
    padding: 10rem 5rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.contact-block h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-size: 0.75rem;
  margin: 0 0 1rem 0;
}

.contact-block p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
}

.contact-phone {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.contact-email {
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  color: rgba(255, 255, 255, 0.6);
}

.contact-address {
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.map-wrap {
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  filter: grayscale(1);
  transition: filter 1s;
  overflow: hidden;
}

.map-wrap:hover {
  filter: grayscale(0);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials full page */
.testi-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.t-card-lg {
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: color-mix(in srgb, var(--color-luxury-gray) 30%, transparent);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: border-color 0.2s;
}

.t-card-lg:hover {
  border-color: color-mix(in srgb, var(--color-gold) 20%, transparent);
}

.t-card-lg .t-card-head img {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid color-mix(in srgb, var(--color-gold) 20%, transparent);
}

.t-card-lg .t-stars svg {
  width: 14px;
  height: 14px;
}

.t-card-lg .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
}

.t-card-lg .role {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.grid-testi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-testi {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-testi {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Project detail */
.detail-back {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s;
}

.detail-back:hover {
  color: var(--color-gold);
}

.detail-back svg {
  transition: transform 0.2s;
}

.detail-back:hover svg {
  transform: translateX(-0.5rem);
}

.detail-header {
  margin-bottom: 4rem;
}

.detail-cat {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 1.5rem;
}

.detail-text {
  max-width: 48rem;
  border-left: 1px solid var(--color-gold);
  padding-left: 2.5rem;
}

.detail-text p {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .detail-text p {
    font-size: 1.875rem;
  }
}

.detail-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .detail-pair {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.faze-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.faze-label.muted {
  color: rgba(255, 255, 255, 0.3);
}

.faze-label.gold {
  color: var(--color-gold);
  font-weight: 700;
}

.ratio-43 {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ratio-43.gs img {
  filter: grayscale(1) brightness(0.5);
}

.ratio-43.goldb {
  border-color: color-mix(in srgb, var(--color-gold) 20%, transparent);
}

.ratio-43 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery {
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.detail-gallery h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 2rem 0;
}

.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gal-sq {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.gal-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.75);
  transition: filter 0.7s;
}

.gal-sq:hover img {
  filter: grayscale(0) brightness(1);
}

/* Footer */
.site-footer {
  background: var(--color-luxury-black);
  color: rgba(255, 255, 255, 0.3);
  padding: 5rem 1.5rem 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 10rem 5rem;
  }
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
  }
  .footer-inner .col-6 {
    grid-column: span 6;
  }
  .footer-inner .col-3 {
    grid-column: span 3;
  }
}

.site-footer h3 {
  font-size: 1.875rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.02em;
}

.site-footer p.lead {
  font-size: 0.875rem;
  max-width: 24rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 3rem 0;
}

.footer-socials {
  display: flex;
  gap: 2rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-socials a:hover {
  color: var(--color-gold);
}

.site-footer h4 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 0.7rem;
  margin: 0 0 2.5rem 0;
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav button {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-nav button:hover {
  color: var(--color-gold);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: #fff;
}

.back-top .inner {
  transition: transform 0.2s;
}

.back-top:hover .inner {
  transform: translateY(-0.25rem);
}

.svg-icon {
  display: block;
  flex-shrink: 0;
}

/* Utils */
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mb-20 { margin-bottom: 3rem; }
@media (min-width: 768px) {
  .mb-20 { margin-bottom: 5rem; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
