:root {
  --ivory: #f4f0e8;
  --paper: #fbf9f4;
  --ink: #11110f;
  --muted: #6f6c65;
  --gold: #a98b52;
  --gold-dark: #917443;
  --stone: #d8d0c2;
  --green: #27352a;
--serif: "Inter", Arial, sans-serif;
--sans: "Roboto", Arial, sans-serif;
  --pad: clamp(28px, 5vw, 78px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(54px, 7vw, 102px);
}
h2 {
  font-size: clamp(46px, 5.4vw, 78px);
}
h3 {
  font-size: 36px;
}
.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow:after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: currentColor;
  margin-top: 16px;
}
.eyebrow.light {
  color: #d7bd8d;
}
.button {
  min-height: 54px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
}
.button-gold {
  background: var(--gold);
  color: #fff;
}
.button-gold:hover {
  background: var(--gold-dark);
}
.button-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.button-light {
  background: var(--ivory);
  color: var(--ink);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 600;
}
.text-link span,
.text-link b {
  color: var(--gold);
  font-style: normal;
}
.section-pad {
  padding: clamp(86px, 10vw, 150px) var(--pad);
}
.site-header {
  height: 92px;
  padding: 0 clamp(28px, 3.6vw, 56px);
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(244, 240, 232, 0.97);
  position: relative;
  z-index: 100;
}
.site-header.scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(17, 17, 15, 0.08);
}
.brand img {
  width: 200px;
  max-height: 64px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  margin: auto;
}
.main-nav a {
  padding: 33px 0 27px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav a:hover:after,
.main-nav a.is-active:after {
  right: 0;
}
.header-cta {
  margin-left: auto;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 7px auto;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
}
.intro h2,
.section-head h2 {
  margin: 26px 0 0;
}
.intro .lead {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.28;
}
.intro .text-link {
  margin-top: 25px;
}
.collection {
  background: var(--ivory);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 65px;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.property-card {
  background: var(--paper);
  transition: 0.35s;
}
.property-card:hover {
  transform: translateY(-7px);
}
.property-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.property-card > div {
  padding: 30px;
}
.property-card span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.property-card h3 {
  margin: 10px 0 12px;
}
.property-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.statement {
  display: grid;
  grid-template-columns: 57% 43%;
  min-height: 720px;
  background: var(--green);
  color: #fff;
}
.statement > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement > div {
  padding: clamp(60px, 8vw, 120px);
  align-self: center;
}
.statement h2 {
  margin: 38px 0 30px;
}
.statement p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 550px;
  margin-bottom: 34px;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.numbers div + div {
  border-left: 1px solid var(--stone);
}
.numbers strong {
  display: block;
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 500;
}
.numbers span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.page-hero {
  padding: clamp(90px, 12vw, 175px) var(--pad);
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
}
.page-hero .eyebrow {
  grid-column: 1/-1;
}
.page-hero h1 {
  font-size: clamp(64px, 8vw, 118px);
  margin: 24px 0 0;
}
.page-hero p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}
.page-hero.compact {
  display: block;
}
.listing {
  padding-top: 60px;
}
.listing-card {
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: 7vw;
  align-items: center;
  padding: 55px 0;
  border-bottom: 1px solid var(--stone);
}
.listing-card:nth-child(even) {
  grid-template-columns: 1fr 56%;
}
.listing-card:nth-child(even) .listing-image {
  order: 2;
}
.listing-image {
  position: relative;
  overflow: hidden;
}
.listing-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: 0.6s;
}
.listing-card:hover img {
  transform: scale(1.025);
}
.listing-image > span {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ivory);
  padding: 15px 22px;
  font-family: var(--serif);
  font-size: 24px;
}
.listing-card h2 {
  margin: 28px 0 20px;
}
.listing-card p {
  color: var(--muted);
  margin-bottom: 25px;
}
.development-hero {
  height: calc(100vh - 92px);
  min-height: 700px;
  position: relative;
  color: #fff;
}
.development-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 10, 0.78),
    rgba(10, 14, 10, 0.08) 70%
  );
}
.development-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.development-hero > div {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  max-width: 690px;
}
.development-hero h1 {
  margin: 42px 0 24px;
}
.development-hero p {
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 35px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--stone);
}
.features div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.features i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.features span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.development-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
}
.development-copy h2 {
  margin: 30px 0 0;
}
.development-copy > p {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.45;
  color: var(--muted);
}
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  height: 560px;
  gap: 5px;
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enquiry-band {
  padding: 75px var(--pad);
  background: var(--green);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enquiry-band h2 {
  margin: 25px 0 0;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.editorial-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.editorial-grid .tall {
  height: 100%;
  grid-row: 1/3;
}
.editorial-copy {
  padding: 60px;
  background: var(--ivory);
}
.editorial-copy h2 {
  margin: 34px 0 25px;
}
.amenities {
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.amenities span {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 26px;
}
.retail-statement {
  min-height: 800px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: center;
}
.about-grid img {
  width: 100%;
}
.about-grid h2 {
  margin: 35px 0 28px;
}
.about-grid p {
  color: var(--muted);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  padding-top: 0;
}
.values div {
  background: var(--ivory);
  padding: 50px;
}
.values span {
  color: var(--gold);
  font-size: 12px;
}
.values h3 {
  margin: 40px 0 18px;
}
.values p {
  color: var(--muted);
}
.masonry {
  columns: 3 320px;
  column-gap: 18px;
}
.masonry a {
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
  overflow: hidden;
}
.masonry img {
  width: 100%;
  transition: 0.5s;
}
.masonry a:hover img {
  transform: scale(1.02);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
  background: var(--ivory);
}
.contact-intro h1 {
  margin: 35px 0 30px;
  font-size: clamp(60px, 7vw, 100px);
}
.contact-intro > p {
  max-width: 480px;
  color: var(--muted);
}
.contact-details {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details a {
  font-family: var(--serif);
  font-size: 25px;
}
.enquiry-form {
  background: var(--paper);
  padding: clamp(28px, 5vw, 68px);
}
.enquiry-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--stone);
  background: transparent;
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-status {
  margin: 20px 0 0;
  color: var(--green);
}
.site-footer {
  background: #151714;
  color: #fff;
  padding: 100px var(--pad) 30px;
}
.footer-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 65px;
}
.footer-intro h2 {
  margin: 35px auto 0 0;
  margin-left: 8vw;
}
.footer-intro .text-link {
  border-color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 8vw;
  padding: 70px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-logo {
  filter: brightness(0) invert(1);
  width: 190px;
  margin-bottom: 20px;
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 350px;
}
.footer-grid strong {
  text-transform: uppercase;
  color: #d7bd8d;
  letter-spacing: 0.13em;
  font-size: 11px;
  margin-bottom: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 40px;
}
.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
}
.lightbox button {
  position: absolute;
  right: 25px;
  top: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-nav {
    position: fixed;
    inset: 92px 0 0;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(100%);
    transition: 0.35s;
  }
  .main-nav.open {
    transform: none;
  }
  .main-nav a {
    font-family: var(--serif);
    font-size: 35px;
    padding: 5px;
  }
  .main-nav a:after {
    bottom: 0;
  }
  .property-grid {
    grid-template-columns: 1fr 1fr;
  }
  .property-card:last-child {
    grid-column: 1/-1;
  }
  .statement {
    grid-template-columns: 1fr;
  }
  .statement > img {
    height: 520px;
  }
  .page-hero,
  .listing-card,
  .listing-card:nth-child(even),
  .development-copy,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .listing-card:nth-child(even) .listing-image {
    order: 0;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-strip {
    height: 360px;
  }
  .editorial-grid {
    display: block;
  }
  .editorial-grid > * {
    margin-bottom: 20px;
  }
  .editorial-grid .tall {
    height: 520px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }
  .brand img {
    width: 155px;
  }
  .main-nav {
    inset: 76px 0 0;
  }
  .hero {
    height: calc(100svh - 76px);
    min-height: 680px;
  }
  .hero-panel {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 74px;
    transform: none;
    width: auto;
    padding: 28px;
  }
  .hero-panel h1 {
    font-size: 47px;
    margin: 28px 0 16px;
  }
  .hero-panel p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero-panel .button {
    min-height: 48px;
    padding: 0 17px;
    font-size: 12px;
  }
  .hero-label {
    left: 22px;
    bottom: 24px;
  }
  .intro,
  .property-grid,
  .numbers,
  .page-hero,
  .features,
  .amenities,
  .values,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head,
  .enquiry-band,
  .footer-intro {
    display: block;
  }
  .section-head .text-link {
    margin-top: 30px;
  }
  .property-card:last-child {
    grid-column: auto;
  }
  .property-card img {
    height: 350px;
  }
  .statement > img {
    height: 350px;
  }
  .numbers div + div {
    border-left: 0;
    border-top: 1px solid var(--stone);
    padding-top: 25px;
  }
  .page-hero {
    padding-top: 90px;
  }
  .page-hero p {
    margin-top: 20px;
  }
  .listing-image img {
    height: 360px;
  }
  .development-hero {
    min-height: 690px;
    height: calc(100svh - 76px);
  }
  .development-hero h1 {
    font-size: 62px;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-strip img {
    height: 320px;
  }
  .features {
    gap: 25px;
  }
  .editorial-copy {
    padding: 35px;
  }
  .amenities span {
    font-size: 22px;
  }
  .enquiry-band .button {
    margin-top: 25px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-intro h2 {
    margin-left: 0;
  }
  .footer-intro .text-link {
    margin-top: 30px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Home slideshow — Sarona signature */
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(7, 10, 8, 0.66), transparent);
  color: #fff;
  border: 0;
  z-index: 50;
}
.home-page .site-header.scrolled {
  position: fixed;
  background: rgba(20, 23, 20, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.home-page .brand img {
  filter: brightness(0) invert(1);
}
.home-page .main-nav a:after {
  background: #d3ad61;
}
.home-page .menu-toggle span {
  background: #fff;
}
.home-slider {
  height: 100svh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: #101410;
  color: #fff;
}
.home-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1s ease,
    transform 7s ease;
  z-index: 0;
}
.home-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slider-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 9, 0.35) 0,
    transparent 35%,
    transparent 58%,
    rgba(8, 11, 9, 0.68) 100%
  );
}
.slider-actions {
  position: absolute;
  left: clamp(28px, 5.6vw, 108px);
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 14px;
}
.slider-button {
  height: 64px;
  min-width: 230px;
  padding: 0 32px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}
.slider-button:hover {
  transform: translateY(-3px);
}
.slider-button-gold {
  background: #d3ad61;
  color: #142019;
}
.slider-button-gold:hover {
  background: #e0be78;
}
.slider-button-glass {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(20, 24, 21, 0.38);
  backdrop-filter: blur(12px);
  color: #fff;
}
.slider-discover {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.25em;
}
.slider-discover i {
  display: block;
  width: 1px;
  height: 27px;
  margin: 9px auto 0;
  background: #fff;
  animation: discoverPulse 1.8s infinite;
}
.slider-controls {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 43px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
}
.slider-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(20, 24, 21, 0.35);
  backdrop-filter: blur(9px);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}
.slider-arrow:hover {
  background: #d3ad61;
  border-color: #d3ad61;
  color: #142019;
}
.slider-dots {
  display: flex;
  gap: 11px;
  align-items: center;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: 0.25s;
}
.slider-dot.is-active {
  width: 27px;
  border-radius: 10px;
  background: #d3ad61;
  border-color: #d3ad61;
}
.slider-project {
  position: absolute;
  left: clamp(28px, 5.6vw, 108px);
  bottom: 126px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.17em;
}
.slider-project span {
  color: #d3ad61;
}
.slider-project i {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.7);
}
.slider-project strong {
  font-weight: 600;
}
@keyframes discoverPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.65);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (max-width: 1000px) {
  .home-page .main-nav {
    background: #161a17;
    color: #fff;
  }
  .home-page .main-nav a {
    color: #fff;
  }
  .slider-discover {
    display: none;
  }
  .slider-actions {
    bottom: 34px;
  }
  .slider-controls {
    bottom: 115px;
  }
  .slider-project {
    bottom: 198px;
  }
}
@media (max-width: 680px) {
  .home-slider {
    min-height: 660px;
  }
  .slider-actions {
    left: 18px;
    right: 18px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .slider-button {
    min-width: 0;
    height: 52px;
    padding: 0 12px;
    font-size: 12px;
  }
  .slider-controls {
    right: 18px;
    bottom: 92px;
  }
  .slider-arrow {
    width: 46px;
    height: 46px;
    font-size: 28px;
  }
  .slider-dots {
    gap: 7px;
  }
  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .slider-dot.is-active {
    width: 20px;
  }
  .slider-project {
    left: 18px;
    bottom: 151px;
  }
  .home-slide:nth-child(1) {
    background-position: 62% center;
  }
  .home-slide:nth-child(2) {
    background-position: 55% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-slide {
    transition: none !important;
    transform: none !important;
  }
  .slider-discover i {
    animation: none !important;
  }
}

/* ==========================================================
   Header and navigation
   ========================================================== */
.site-header {
  height: 104px;
  padding-inline: clamp(30px, 2.6vw, 50px);
  gap: 18px;
}
.brand {
  width: 255px;
  min-width: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}
.brand img {
  width: 205px;
  height: 52px;
  max-height: none;
  object-fit: cover;
  object-position: center 61%;
  mix-blend-mode: multiply;
}
.brand span {
  margin: 5px 0 0 31px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
}
.main-nav {
  gap: clamp(24px, 2vw, 38px);
  margin: 0 auto;
}
.main-nav a {
  padding: 38px 0 31px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.main-nav a::after {
  bottom: 25px;
  height: 2px;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.header-admin,
.header-visit {
  height: 58px;
  border-radius: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}
.header-admin {
  border: 1px solid rgba(17, 17, 15, 0.25);
  background: rgba(255, 255, 255, 0.12);
}
.header-visit {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.header-admin i,
.header-visit i {
  font-size: 19px;
}
.header-admin:hover,
.header-visit:hover {
  transform: translateY(-2px);
}
.home-page .brand img {
  filter: invert(1);
  mix-blend-mode: screen;
}
.home-page .brand span {
  color: rgba(255, 255, 255, 0.72);
}
.home-page .header-admin {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(20, 24, 21, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
}
.home-page .header-visit {
  background: #d3ad61;
  border-color: #d3ad61;
  color: #142019;
}
@media (max-width: 1250px) {
  .site-header {
    gap: 14px;
  }
  .brand {
    width: 210px;
    min-width: 210px;
  }
  .brand img {
    width: 180px;
  }
  .brand span {
    font-size: 8px;
    margin-left: 20px;
  }
  .main-nav {
    gap: 18px;
  }
  .main-nav a {
    font-size: 12px;
  }
  .header-admin,
  .header-visit {
    padding: 0 18px;
  }
  .header-admin span {
    display: none;
  }
  .header-admin {
    width: 58px;
    padding: 0;
  }
}
@media (max-width: 1000px) {
  .brand {
    width: 205px;
    min-width: 205px;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-admin {
    display: none;
  }
  .header-visit {
    height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }
  .menu-toggle {
    order: 4;
  }
  .main-nav {
    order: 5;
    inset: 104px 0 0;
  }
}
@media (max-width: 680px) {
  .site-header {
    height: 76px;
  }
  .brand {
    width: 175px;
    min-width: 175px;
  }
  .brand img {
    width: 155px;
    height: 42px;
  }
  .brand span {
    font-size: 6.5px;
    margin: 3px 0 0 12px;
  }
  .header-visit {
    width: 46px;
    padding: 0;
  }
  .header-visit span {
    display: none;
  }
  .header-visit i {
    font-size: 18px;
  }
  .main-nav {
    inset: 76px 0 0;
  }
}

/* Horizontal Sarona brand */
.brand.brand-horizontal {
  width: 315px;
  min-width: 315px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  line-height: 1;
}
.brand .brand-symbol-img {
  position: static;
  width: 66px;
  height: 66px;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
  mix-blend-mode: multiply;
  flex: 0 0 66px;
}
.brand .brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  color: inherit;
  white-space: nowrap;
}
.brand .brand-copy strong {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.brand .brand-copy small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.home-page .brand .brand-symbol-img {
  filter: invert(1);
  mix-blend-mode: screen;
}
.home-page .brand .brand-copy strong {
  color: #fff;
}
.home-page .brand .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 1250px) {
  .brand.brand-horizontal {
    width: 280px;
    min-width: 280px;
    gap: 11px;
  }
  .brand .brand-symbol-img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .brand .brand-copy strong {
    font-size: 19px;
  }
  .brand .brand-copy small {
    font-size: 6.5px;
    margin-top: 7px;
  }
}
@media (max-width: 680px) {
  .brand.brand-horizontal {
    width: 210px;
    min-width: 210px;
    gap: 8px;
  }
  .brand .brand-symbol-img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .brand .brand-copy strong {
    font-size: 14px;
  }
  .brand .brand-copy small {
    font-size: 4.8px;
    margin-top: 5px;
  }
}

/* Keep the full header visible on laptops and smaller desktops */
@media (max-width: 1700px) and (min-width: 1001px) {
  .site-header {
    padding-inline: 24px;
    gap: 12px;
  }

  .brand.brand-horizontal {
    width: 275px;
    min-width: 275px;
    gap: 12px;
  }

  .brand .brand-symbol-img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand .brand-copy strong {
    font-size: 21px;
  }

  .brand .brand-copy small {
    font-size: 7px;
    margin-top: 7px;
  }

  .main-nav {
    gap: clamp(15px, 1.3vw, 24px);
  }

  .main-nav a {
    font-size: 13px;
    white-space: nowrap;
  }

  .header-actions {
    gap: 8px;
  }

  .header-admin,
  .header-visit {
    height: 56px;
    padding-inline: 20px;
    font-size: 13px;
  }
}


/* ==========================================================
   GALLERY LIGHTBOX NAVIGATION
   ========================================================== */

.lightbox {
  padding: 70px 100px;
}

.lightbox-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.lightbox-stage img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.lightbox .lightbox-close {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 5;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(20, 32, 25, 0.82);
  color: #fff;
  font-size: 23px;
  backdrop-filter: blur(10px);
}

.lightbox .lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 5;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(20, 32, 25, 0.82);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.lightbox .lightbox-prev {
  right: auto;
  left: 28px;
}

.lightbox .lightbox-next {
  right: 28px;
  left: auto;
}

.lightbox .lightbox-nav:hover {
  background: var(--sc-gold);
  color: var(--sc-deep);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-counter {
  position: fixed;
  bottom: 25px;
  left: 50%;
  z-index: 5;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(20, 32, 25, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

@media (max-width: 680px) {
  .lightbox {
    padding: 75px 18px;
  }

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

  .lightbox .lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
  }

  .lightbox .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .lightbox .lightbox-prev {
    left: 12px;
  }

  .lightbox .lightbox-next {
    right: 12px;
  }
}


/* =========================================================
   PREMIUM HEADER UPGRADE
========================================================= */

.site-header {
    --header-gold: #ddb45e;
    --header-gold-dark: #bd9140;

    display: grid;
    grid-template-columns:
        minmax(310px, 1fr)
        auto
        minmax(310px, 1fr);
    align-items: center;
    gap: 32px;
    min-height: 116px;
    padding: 20px clamp(28px, 3.2vw, 64px);
}

/* Main navigation */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2vw, 38px);
    white-space: nowrap;
}

.main-nav a {
    position: relative;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.main-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 3px;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--header-gold);
    border-radius: 99px;
    transition:
        right 0.25s ease,
        left 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
    left: 0;
}

/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

/* Smaller secondary Admin Login */

.header-admin {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.header-admin i {
    color: var(--header-gold);
    font-size: 18px;
}

.header-admin:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

/* Primary Site Visit button */

.header-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    background:
        linear-gradient(
            135deg,
            #e2bd6b,
            #d5a952
        );
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: #10241c;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.header-visit i {
    font-size: 20px;
}

.header-visit:hover {
    background:
        linear-gradient(
            135deg,
            #ebca80,
            #dcb25d
        );
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Header after scrolling */

.site-header.scrolled {
    min-height: 88px;
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(6, 36, 27, 0.95);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled .header-visit {
    min-height: 50px;
}

/* Tablet adjustment */

@media (max-width: 1280px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 24px;
        padding-right: 28px;
        padding-left: 28px;
    }

    .main-nav {
        gap: 22px;
    }

    .header-actions {
        gap: 15px;
    }

    .header-admin span {
        display: none;
    }

    .header-admin {
        width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50%;
    }

    .header-visit {
        padding: 0 22px;
    }
}