:root {
  --wine: #651e2f;
  --wine-dark: #42111e;
  --wine-deep: #2b0d15;
  --red: #9d3345;
  --gold: #c99a4b;
  --gold-light: #e8c785;
  --cream: #f7f2eb;
  --cream-dark: #eee5da;
  --paper: #fffdf9;
  --ink: #201b1c;
  --muted: #6f6668;
  --line: rgba(62, 34, 39, 0.12);
  --white: #fff;
  --shadow-sm: 0 12px 35px rgba(44, 17, 24, 0.08);
  --shadow-lg: 0 30px 80px rgba(44, 17, 24, 0.16);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --transition: 220ms ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

::selection {
  background: var(--wine);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  background: var(--white);
  border-radius: 0 0 8px 8px;
  color: var(--wine);
  font-weight: 800;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1240px;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  align-items: center;
  color: var(--wine);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--gold);
  display: inline-block;
  height: 2px;
  width: 30px;
}

.eyebrow-light {
  color: var(--gold-light);
}

.section h2,
.parallax-content h2,
.contact-panel h2,
.location-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 24px;
}

.section-heading {
  margin: 0 auto 64px;
  max-width: 800px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0 auto;
  max-width: 650px;
}

.section-heading-split {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.section-heading-split > div {
  max-width: 660px;
}

.section-heading-split > p {
  margin: 0 0 8px !important;
  max-width: 410px !important;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 50px;
  padding: 12px 24px;
}

.btn-lg {
  min-height: 58px;
  padding: 15px 28px;
}

.btn-sm {
  min-height: 42px;
  padding: 9px 20px;
}

.btn-primary {
  --bs-btn-bg: var(--wine);
  --bs-btn-border-color: var(--wine);
  --bs-btn-hover-bg: var(--red);
  --bs-btn-hover-border-color: var(--red);
  --bs-btn-active-bg: var(--wine-dark);
  --bs-btn-active-border-color: var(--wine-dark);
  box-shadow: 0 10px 24px rgba(101, 30, 47, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(101, 30, 47, 0.28);
  transform: translateY(-2px);
}

.btn-light {
  --bs-btn-color: var(--wine-dark);
  --bs-btn-bg: var(--white);
  --bs-btn-border-color: var(--white);
  --bs-btn-hover-color: var(--wine);
  --bs-btn-hover-bg: var(--cream);
  --bs-btn-hover-border-color: var(--cream);
}

.btn-light:hover,
.btn-outline-light:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  --bs-btn-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-color: var(--wine-dark);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  --bs-btn-color: var(--wine);
  --bs-btn-border-color: rgba(101, 30, 47, 0.28);
  --bs-btn-hover-bg: var(--wine);
  --bs-btn-hover-border-color: var(--wine);
}

.btn-ghost {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--wine);
  min-height: auto;
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--red);
}

.btn-ghost i,
.text-link i {
  transition: transform var(--transition);
}

.btn-ghost:hover i,
.text-link:hover i {
  transform: translateX(5px);
}

.text-link {
  align-items: center;
  color: var(--wine);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  text-transform: uppercase;
}

/* Topbar and navigation */
.topbar {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.topbar-inner {
  align-items: center;
  display: flex;
  height: 39px;
  justify-content: space-between;
}

.topbar a,
.topbar span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.topbar a:hover {
  color: var(--gold-light);
}

.topbar-links {
  align-items: center;
  display: flex;
  gap: 30px;
}

.site-header {
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(70, 41, 47, 0.08);
  position: sticky;
  top: 0;
  transition: box-shadow var(--transition), background-color var(--transition);
  z-index: 1020;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(45, 19, 25, 0.08);
}

.navbar {
  min-height: 82px;
  padding: 10px 0;
}

.navbar-brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.brand-mark {
  align-items: center;
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--gold-light);
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.55rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 48px;
}

.brand-mark::after {
  border: 1px solid rgba(232, 199, 133, 0.55);
  border-radius: inherit;
  content: "";
  inset: 5px;
  position: absolute;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

.brand-copy small,
.footer-brand small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-top: 5px;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 3px;
}

.navbar .nav-link {
  color: #443b3d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 13px 11px !important;
  position: relative;
}

.navbar .nav-link::after {
  background: var(--gold);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--transition);
  width: 18px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--wine);
}

.navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  margin-left: 12px;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none !important;
  padding: 8px 10px;
}

.navbar-toggler-icon {
  height: 1.3em;
  width: 1.3em;
}

/* Hero */
.hero {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(31, 7, 14, 0.12), transparent 45%),
    var(--wine);
  color: var(--white);
  display: flex;
  min-height: calc(100vh - 121px);
  overflow: hidden;
  padding: 90px 0 100px;
  position: relative;
}

.hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  inset: 0;
  opacity: 0.24;
  position: absolute;
}

.hero-orb {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  position: absolute;
}

.hero-orb-one {
  height: 520px;
  left: -280px;
  top: -240px;
  width: 520px;
}

.hero-orb-two {
  bottom: -440px;
  height: 720px;
  right: -230px;
  width: 720px;
}

.hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.3vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 32px;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 34px;
  margin-top: 46px;
  padding-top: 26px;
}

.hero-proof > div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.hero-proof i {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  line-height: 1.5;
}

.hero-proof strong {
  color: var(--white);
  display: block;
  font-size: 0.79rem;
}

.hero-gallery {
  height: 590px;
  margin-left: auto;
  max-width: 590px;
  position: relative;
}

.hero-image {
  border: 5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(30, 4, 11, 0.32);
  overflow: hidden;
  position: absolute;
}

.hero-image::after {
  background: linear-gradient(160deg, transparent 60%, rgba(44, 8, 18, 0.27));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.hero-gallery:hover .hero-image img {
  transform: scale(1.025);
}

.hero-image-large {
  border-radius: 180px 180px 24px 24px;
  bottom: 0;
  height: 510px;
  left: 0;
  width: 58%;
}

.hero-image-top {
  border-radius: 22px 120px 22px 22px;
  height: 280px;
  right: 0;
  top: 0;
  width: 39%;
}

.hero-image-bottom {
  border-radius: 22px 22px 120px 22px;
  bottom: 25px;
  height: 255px;
  right: 0;
  width: 39%;
}

.hero-badge {
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  left: -45px;
  padding: 15px 22px;
  position: absolute;
  text-align: center;
  top: 34px;
  z-index: 3;
}

.hero-badge-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.hero-badge > span:nth-child(2) {
  font-family: var(--serif);
  font-size: 1.02rem;
}

.hero-badge small {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-scroll {
  align-items: center;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  font-weight: 800;
  gap: 10px;
  left: 50%;
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  height: 30px;
  position: relative;
  width: 18px;
}

.hero-scroll span::after {
  animation: scroll-dot 1.8s infinite;
  background: var(--gold-light);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 3px;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Quick facts */
.quick-facts {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-fact {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 18px;
  min-height: 130px;
  padding: 24px 34px;
}

.quick-fact:first-child {
  border-left: 1px solid var(--line);
}

.quick-fact strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.quick-fact strong span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  margin-left: 2px;
}

.quick-fact > i {
  color: var(--wine);
  font-size: 2.4rem;
}

.quick-fact > span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.5;
}

/* Intro */
.intro-section {
  background: var(--paper);
}

.intro-collage {
  min-height: 590px;
  position: relative;
}

.intro-main {
  border-radius: var(--radius-lg) 160px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 490px;
  object-fit: cover;
  width: 84%;
}

.intro-small {
  border: 8px solid var(--paper);
  border-radius: 100px 20px 20px 20px;
  bottom: 0;
  box-shadow: var(--shadow-sm);
  height: 250px;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 42%;
}

.intro-note {
  align-items: center;
  background: var(--wine);
  border-radius: 16px;
  bottom: 32px;
  color: var(--white);
  display: flex;
  gap: 13px;
  left: 20px;
  padding: 16px 20px;
  position: absolute;
}

.intro-note i {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.intro-note span {
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.section-copy {
  padding-left: 35px;
}

.section-copy .lead-copy {
  color: #3f3638;
  font-size: 1.08rem;
  font-weight: 600;
}

.section-copy > p:not(.eyebrow):not(.lead-copy) {
  color: var(--muted);
}

.intro-highlights {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 14px;
  padding: 24px 0;
}

.intro-highlights > div {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.intro-highlights i {
  color: var(--gold);
  font-size: 1.4rem;
}

.intro-highlights span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.intro-highlights strong {
  color: var(--ink);
  display: block;
}

/* Apartments */
.apartments-section {
  background:
    linear-gradient(rgba(101, 30, 47, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 30, 47, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
}

.apartment-card {
  background: var(--paper);
  border: 1px solid rgba(74, 43, 48, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
  overflow: hidden;
  transition: box-shadow 350ms ease, transform 350ms ease;
}

.apartment-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.apartment-visual {
  min-height: 530px;
  overflow: hidden;
  position: relative;
}

.apartment-visual::after {
  background: linear-gradient(to top, rgba(38, 10, 17, 0.48), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.apartment-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.apartment-card:hover .apartment-visual img {
  transform: scale(1.035);
}

.apartment-number {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--serif);
  font-size: 7rem;
  left: 25px;
  line-height: 1;
  position: absolute;
  top: 20px;
  z-index: 2;
}

.apartment-capacity {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  bottom: 24px;
  color: var(--wine);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 8px;
  left: 24px;
  padding: 9px 15px;
  position: absolute;
  z-index: 2;
}

.apartment-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 60px 64px;
}

.apartment-title-row {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.apartment-title-row p {
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.apartment-title-row h3 {
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
}

.stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-top: 18px;
}

.apartment-content > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.apartment-specs {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  padding: 22px 0;
}

.apartment-specs span {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  line-height: 1.4;
  text-align: center;
}

.apartment-specs span + span {
  border-left: 1px solid var(--line);
}

.apartment-specs i {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.apartment-specs strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.bed-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bed-layout span {
  background: var(--cream);
  border-radius: 999px;
  color: #5f5557;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 7px 12px;
}

.bed-layout i {
  color: var(--wine);
  margin-right: 5px;
}

.apartment-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

/* Amenities */
.amenities-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 154, 75, 0.12), transparent 25%),
    radial-gradient(circle at 90% 85%, rgba(157, 51, 69, 0.14), transparent 30%),
    var(--wine-dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.amenities-section::before {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  height: 600px;
  position: absolute;
  right: -350px;
  top: -180px;
  width: 600px;
}

.amenities-section h2 {
  margin-bottom: 0;
}

.amenities-intro {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.amenities-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.amenity-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 245px;
  padding: 38px 32px;
  transition: background-color var(--transition), transform var(--transition);
}

.amenity-card:first-child {
  border-radius: var(--radius) 0 0 0;
}

.amenity-card:nth-child(4) {
  border-radius: 0 var(--radius) 0 0;
}

.amenity-card:nth-child(5) {
  border-radius: 0 0 0 var(--radius);
}

.amenity-card:last-child {
  border-radius: 0 0 var(--radius) 0;
}

.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.amenity-card > i {
  color: var(--gold-light);
  font-size: 2rem;
}

.amenity-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 18px 0 9px;
}

.amenity-card p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 0;
}

/* Parallax */
.parallax-section {
  background-image: url("../assets/img/dvoriste-1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  min-height: 560px;
  padding: 120px 0;
  position: relative;
}

.parallax-overlay {
  background: linear-gradient(120deg, rgba(39, 8, 16, 0.9), rgba(101, 30, 47, 0.68));
  inset: 0;
  position: absolute;
}

.parallax-content {
  margin: 0 auto;
  max-width: 830px;
  text-align: center;
}

.parallax-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  margin: 0 auto 30px;
  max-width: 740px;
}

/* Gallery */
.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  background: var(--cream);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item.is-extra {
  display: none;
}

.gallery-item.is-extra.is-visible {
  display: block;
}

.gallery-item::after {
  background: linear-gradient(to top, rgba(35, 9, 16, 0.72), transparent 58%);
  content: "";
  inset: 0;
  opacity: 0.82;
  position: absolute;
  transition: opacity var(--transition);
}

.gallery-item::before {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--wine);
  content: "\F62C";
  display: flex;
  font-family: "bootstrap-icons";
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  width: 42px;
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

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

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item > span {
  bottom: 16px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  left: 18px;
  letter-spacing: 0.02em;
  position: absolute;
  right: 18px;
  z-index: 2;
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Pricing */
.pricing-section {
  background: var(--cream);
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  padding: 42px;
  position: relative;
}

.price-card-featured {
  border-color: rgba(101, 30, 47, 0.45);
  box-shadow: 0 24px 65px rgba(73, 25, 36, 0.14);
}

.popular-label {
  background: var(--wine);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 14px;
  position: absolute;
  right: 30px;
  text-transform: uppercase;
  top: -16px;
}

.price-card-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.price-card-head > div:first-child > span {
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin: 2px 0 0;
}

.price-from {
  color: var(--muted);
  font-size: 0.62rem;
  text-align: right;
}

.price-from strong {
  color: var(--wine);
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.price-from small {
  display: block;
}

.price-meta {
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  gap: 24px;
  margin: 26px 0;
  padding: 12px 16px;
}

.price-meta span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.price-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.price-table {
  --bs-table-bg: transparent;
  margin-bottom: 28px;
}

.price-table thead th {
  border-bottom-color: var(--line);
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 9px 0 13px;
  text-transform: uppercase;
}

.price-table tbody td {
  border-bottom-color: rgba(60, 34, 39, 0.07);
  color: #554b4d;
  font-size: 0.77rem;
  padding: 10px 0;
}

.price-table tbody td:last-child {
  color: var(--ink);
  font-weight: 800;
}

.daily-rest {
  align-items: center;
  background: var(--wine-dark);
  border-radius: var(--radius);
  color: var(--white);
  display: flex;
  gap: 24px;
  margin-top: 38px;
  padding: 26px 34px;
}

.daily-rest-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--gold-light);
  display: flex;
  flex: 0 0 auto;
  font-size: 1.5rem;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.daily-rest > div:nth-child(2) {
  flex-grow: 1;
}

.daily-rest p {
  color: var(--gold-light);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.daily-rest h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin: 1px 0 2px;
}

.daily-rest span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.daily-rest > strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-section .col-lg-5 > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 430px;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--wine);
}

.accordion-button {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  padding: 24px 4px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button::after {
  background-image: none;
  color: var(--wine);
  content: "\F4FE";
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "\F2EA";
  transform: none;
}

.accordion-body {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 40px 24px 4px;
}

/* Location */
.location-section {
  background: var(--cream);
  padding-top: 0;
}

.location-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.location-copy {
  background:
    radial-gradient(circle at 90% 0, rgba(201, 154, 75, 0.18), transparent 36%),
    var(--wine);
  color: var(--white);
  padding: 70px 60px;
}

.location-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.3rem);
}

.location-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.location-copy address {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 0.8rem;
  font-style: normal;
  gap: 16px;
  margin: 28px 0;
  padding: 24px 0;
}

.location-copy address i {
  color: var(--gold-light);
  font-size: 1.4rem;
}

.location-copy address span {
  color: rgba(255, 255, 255, 0.7);
}

.location-copy address strong {
  color: var(--white);
}

.location-map {
  min-height: 620px;
}

.location-map iframe {
  border: 0;
  height: 100%;
  min-height: 620px;
  width: 100%;
}

/* Contact */
.contact-section {
  background:
    linear-gradient(to bottom, var(--cream) 0, var(--cream) 46%, var(--wine-deep) 46%, var(--wine-deep) 100%);
  padding: 0 0 95px;
}

.contact-panel {
  background:
    radial-gradient(circle at 0 100%, rgba(201, 154, 75, 0.13), transparent 27%),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.08), transparent 25%),
    var(--wine-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(33, 8, 15, 0.26);
  color: var(--white);
  overflow: hidden;
  padding: 68px 72px;
  position: relative;
}

.contact-panel h2 {
  max-width: 650px;
}

.contact-panel .col-lg-7 > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  max-width: 640px;
}

.contact-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.contact-steps span {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  font-size: 0.67rem;
  font-weight: 700;
  gap: 8px;
}

.contact-steps strong {
  align-items: center;
  border: 1px solid rgba(232, 199, 133, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  display: inline-flex;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.contact-box {
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 30px;
}

.contact-box > p {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 17px;
}

.contact-phone {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 15px 0;
}

.contact-phone > i {
  align-items: center;
  background: var(--wine);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.contact-phone span {
  color: var(--wine-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.contact-phone small {
  color: var(--muted);
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-phone:hover {
  color: var(--wine);
  transform: translateX(3px);
}

.contact-phone-secondary > i {
  background: var(--cream);
  color: var(--wine);
}

.facebook-link {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.66rem;
  font-weight: 700;
  gap: 8px;
  margin-top: 20px;
}

.facebook-link i {
  color: #1877f2;
  font-size: 1.15rem;
}

.facebook-link:hover {
  color: var(--wine);
}

/* Footer */
.site-footer {
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.62);
  padding: 0 0 30px;
}

.footer-main {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 0 0 30px;
}

.footer-brand .brand-mark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.48);
  display: block;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  font-size: 0.69rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-phone:hover,
.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-phone {
  align-items: center;
  color: var(--white);
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 8px;
}

.footer-phone i {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  font-size: 0.58rem;
  justify-content: space-between;
  letter-spacing: 0.02em;
  padding-top: 25px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.mobile-call {
  display: none;
}

/* Lightbox */
.lightbox {
  align-items: center;
  background: rgba(20, 4, 9, 0.96);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 70px 100px;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--transition);
  visibility: hidden;
  z-index: 2000;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-height: calc(100vh - 110px);
  max-width: min(1100px, 82vw);
}

.lightbox figure img {
  border-radius: 10px;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  width: auto;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  padding: 14px 4px 0;
}

.lightbox-close,
.lightbox-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  height: 50px;
  justify-content: center;
  position: absolute;
  transition: background-color var(--transition), transform var(--transition);
  width: 50px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--wine);
  transform: scale(1.04);
}

.lightbox-close {
  right: 28px;
  top: 24px;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .hero {
    min-height: auto;
    padding: 85px 0;
  }

  .hero h1 {
    font-size: 4.7rem;
  }

  .hero-gallery {
    height: 530px;
  }

  .hero-image-large {
    height: 450px;
  }

  .hero-image-top {
    height: 250px;
  }

  .hero-image-bottom {
    height: 225px;
  }

  .quick-fact {
    padding-left: 22px;
    padding-right: 22px;
  }

  .apartment-content {
    padding: 48px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 66px;
  }

  .section {
    padding: 90px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .navbar-collapse {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 14px 0 20px;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar .nav-link {
    font-size: 0.86rem;
    padding: 10px 4px !important;
  }

  .navbar .nav-link::after {
    bottom: 2px;
    left: 0;
    transform: scaleX(0);
  }

  .navbar .nav-link.active::after {
    transform: scaleX(1);
  }

  .nav-cta {
    margin: 10px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero {
    padding: 75px 0 90px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 10vw, 5.7rem);
  }

  .hero-gallery {
    height: 580px;
    margin: 10px auto 0;
    max-width: 680px;
  }

  .hero-image-large {
    width: 61%;
  }

  .hero-image-top,
  .hero-image-bottom {
    width: 36%;
  }

  .hero-badge {
    left: -18px;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-fact:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .quick-fact:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intro-collage {
    margin: 0 auto 15px;
    max-width: 680px;
  }

  .section-copy {
    padding-left: 0;
  }

  .apartment-visual {
    min-height: 480px;
  }

  .apartment-content {
    padding: 48px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-card:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .amenity-card:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .amenity-card:nth-child(4),
  .amenity-card:nth-child(5) {
    border-radius: 0;
  }

  .amenity-card:nth-child(7) {
    border-radius: 0 0 0 var(--radius);
  }

  .amenity-card:last-child {
    border-radius: 0 0 var(--radius) 0;
  }

  .parallax-section {
    background-attachment: scroll;
  }

  .section-heading-split {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading-split > p {
    margin-top: 12px !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .price-card {
    padding: 36px;
  }

  .location-copy {
    padding: 55px 50px;
  }

  .location-map,
  .location-map iframe {
    min-height: 480px;
  }

  .contact-panel {
    padding: 55px 50px;
  }

  .footer-main {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-links {
    order: 3;
    width: 100%;
  }

  .mobile-call {
    align-items: center;
    background: var(--wine);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    bottom: 0;
    box-shadow: 0 -8px 30px rgba(49, 12, 21, 0.2);
    color: var(--white);
    display: flex;
    font-size: 0.76rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    left: 0;
    min-height: 66px;
    position: fixed;
    right: 0;
    z-index: 1050;
  }

  .mobile-call i {
    color: var(--gold-light);
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 76px 0;
  }

  .section h2,
  .parallax-content h2,
  .contact-panel h2,
  .location-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .brand-mark {
    height: 43px;
    width: 43px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .hero {
    padding: 62px 0 76px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 15vw, 4.8rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
  }

  .hero-gallery {
    height: 455px;
    margin-top: 0;
  }

  .hero-image-large {
    border-radius: 120px 120px 20px 20px;
    height: 405px;
    width: 64%;
  }

  .hero-image-top {
    border-radius: 18px 80px 18px 18px;
    height: 212px;
    width: 33%;
  }

  .hero-image-bottom {
    border-radius: 18px 18px 70px 18px;
    height: 185px;
    width: 33%;
  }

  .hero-badge {
    left: 8px;
    padding: 10px 14px;
    top: 3px;
  }

  .quick-fact {
    gap: 12px;
    min-height: 110px;
    padding: 18px 14px;
  }

  .quick-fact strong {
    font-size: 2.15rem;
  }

  .quick-fact > i {
    font-size: 1.9rem;
  }

  .quick-fact > span {
    font-size: 0.62rem;
  }

  .intro-collage {
    min-height: 480px;
  }

  .intro-main {
    border-radius: 24px 100px 24px 24px;
    height: 400px;
    width: 88%;
  }

  .intro-small {
    height: 205px;
    width: 44%;
  }

  .intro-note {
    bottom: 18px;
    left: 10px;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
  }

  .apartment-visual {
    min-height: 370px;
  }

  .apartment-number {
    font-size: 5.5rem;
  }

  .apartment-content {
    padding: 38px 28px;
  }

  .apartment-title-row h3 {
    font-size: 2.7rem;
  }

  .apartment-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .apartment-actions .btn-primary {
    width: 100%;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .amenity-card {
    min-height: 215px;
    padding: 28px 22px;
  }

  .amenity-card h3 {
    font-size: 1.22rem;
  }

  .parallax-section {
    min-height: 500px;
    padding: 95px 0;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .price-card {
    padding: 32px 26px;
  }

  .popular-label {
    right: 20px;
  }

  .daily-rest {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 24px;
  }

  .daily-rest > strong {
    margin-left: 80px;
    margin-top: -14px;
  }

  .location-copy {
    padding: 50px 30px;
  }

  .location-map,
  .location-map iframe {
    min-height: 420px;
  }

  .contact-panel {
    padding: 48px 28px;
  }

  .contact-steps {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-box {
    padding: 24px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .lightbox {
    padding: 65px 16px 90px;
  }

  .lightbox figure {
    max-width: 100%;
  }

  .lightbox figure img {
    max-height: calc(100vh - 190px);
  }

  .lightbox-close {
    height: 44px;
    right: 14px;
    top: 13px;
    width: 44px;
  }

  .lightbox-nav {
    bottom: 22px;
    height: 46px;
    top: auto;
    width: 46px;
  }

  .lightbox-prev {
    left: calc(50% - 57px);
  }

  .lightbox-next {
    right: calc(50% - 57px);
  }
}

@media (max-width: 479.98px) {
  .container {
    --bs-gutter-x: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
  }

  .hero-gallery {
    height: 390px;
  }

  .hero-image-large {
    height: 345px;
    width: 66%;
  }

  .hero-image-top {
    height: 182px;
    width: 31%;
  }

  .hero-image-bottom {
    height: 157px;
    width: 31%;
  }

  .hero-badge {
    left: -4px;
    top: -10px;
  }

  .quick-fact {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .intro-collage {
    min-height: 400px;
  }

  .intro-main {
    height: 325px;
  }

  .intro-small {
    height: 175px;
  }

  .intro-note {
    padding: 12px 14px;
  }

  .apartment-specs {
    gap: 4px;
  }

  .apartment-specs span {
    font-size: 0.58rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    border-radius: 0 !important;
    min-height: auto;
  }

  .amenity-card:first-child {
    border-radius: var(--radius) var(--radius) 0 0 !important;
  }

  .amenity-card:last-child {
    border-radius: 0 0 var(--radius) var(--radius) !important;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .price-card-head {
    gap: 14px;
  }

  .price-from strong {
    font-size: 2rem;
  }

  .price-meta {
    gap: 16px;
  }

  .daily-rest > strong {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
