@charset "utf-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0e0d0c;
  --bg2: #161412;
  --bg3: #1e1b17;
  --text: #f0ebe3;
  --text2: #a09890;
  --text3: #5a534a;
  --accent: #c9a96e;
  --accent2: #8b6f42;
  --border: rgba(255, 255, 255, 0.07);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  background: #302c26;
  color: ivory;
  font-family: var(--serif);
  position: absolute;
  width: 100vw;
}
.wrapper {
  overflow-x: hidden;
  position: relative;
}
/* ── HEADER ── */
header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.8s ease both;
  padding: 1.5rem 3.1rem;
}
.logo {
  /*    font-size: clamp(1.6rem, 3vw, 2.2rem);*/
}
.logo {
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}
.logo a {
  color: #fff;
  text-decoration: none;
}
.logo em {
  font-style: italic;
  color: var(--accent);
}
.flexbox {
  display: flex;
  flex-direction: row;
}
.flex-container {
  display: flex;
  flex-wrap: wrap;
}
.flex-item, .flex-item-2 {
  padding: 5px;
  height: auto;
  margin-top: 0;
  line-height: normal;
  flex-grow: 1;
  color: white;
  margin: 5px;
  text-align: left;
  flex: 1;
}
.flex-item-2 {
  margin-right: 2em;
  text-align: center;
  z-index: 100;
}
.wrap {
  flex-wrap: wrap;
}
.nowrap {
  flex-wrap: nowrap;
}
nav {
  margin: auto;
  margin-top: 0;
  position: relative;
  width: clamp(320px, 50vw, 100%);
  display: inherit;
}
.container {
  max-width: 55ch;
  margin: auto;
  color: #36454F;
}
nav a {
  /*font-family: var(--mono);*/
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
nav a, nav li {
  /*font-family: var(--mono);*/
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: #eddfc5;
}
/*nav .cta {
    border: 1px solid var(--accent2);
    padding: 0.5rem 1.2rem;
    color: var(--accent);
    border-radius: 2px;
}
nav .cta:hover {
    background: rgba(201,169,110,0.08);
}*/
nav h2 {
  font-size: 1.5rem;
  border-radius: 2px;
  position: relative;
  background: #bcc6ff;
  height: 40px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: inherit;
  font-weight: 200;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 20px -2px rgba(0, 0, 0, 0.35);
  transition: all 0.4s;
}
nav:hover h2 {
  transform: translateY(-2px);
  box-shadow: 2px 2px 5px -1px rgba(0, 0, 0, 0.35);
  transistion: all 0.4s;
}
nav ul {
  padding-left: 0;
  padding-top: 1rem;
  margin-top: 0;
  background: #ffae2d;
  list-style: none;
  overflow: hidden;
  transition: all 0.4s ease-out;
  width: 100%;
  position: absolute;
}
nav ul li {
  border-radius: 2px;
  position: relative;
  display: inline-block;
  line-height: 1.5;
  width: 100%;
  margin: 0 0 0.25rem 0;
  background: #bcc6ff;
  transition: background 3s;
  box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.35);
  text-align: left;
  padding: 0 25%;
}
nav ul li:hover, nav ul li a:focus {
  background: mediumorchid;
  transition: background 0.45s;
}
nav ul li ul {
  padding-left: 2em;
}
nav ul a {
  display: block;
  color: green;
  text-transform: uppercase;
  font-weight: 200;
  text-decoration: none;
}
/*nav ul li a .active {
color: #fff;
}*/
nav ul li .active {
  color: #fff;
}
/*a .active {
color: #fff;
}*/
nav img {
  filter: invert(100%);
}
nav img:hover {
  filter: brightness();
}
#toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  height: 40px;
}
h2::before {
  position: absolute;
  right: 0;
  top: 0;
  height: inherit;
  aspect-ratio: 1;
  background: currentColor;
  display: flex;
  align-items: center;
  padding-right: 1rem;
  content: "";
  clip-path: polygon(50% 25%, 20% 80%, 80% 80%);
  transform: rotate(180deg) scale(0.75);
}
#toggle:not(:checked) ~ h2::before {
  transform: rotate(0deg) scale(0.75);
}
#toggle:focus ~ h2 {
  background: #dbd7b2;
  transition: background 0.45s;
}
#toggle:checked ~ ul {
  visibility: hidden;
  opacity: 0;
}
#toggle:not(:checked) ~ ul {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
#toggle:hover {
  /*opacity: 1;*/
  transition: opacity 0.3s ease-in-out;
  filter: brightness();
}
nav span.tooltip {
  cursor: pointer;
  color: #fff;
  /*text-align: center;
  font-size: 16px;*/
  justify-content: center;
  display: flex;
  line-height: 0;
  padding-bottom: 1em;
}
/* ── HERO INTRO ── */
.hero-intro {
  padding: 0 0 .5rem 2.5rem;
  /*display: inherit;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;*/
  animation: fadeUp 0.9s 0.1s ease both;
  /*max-width: 50%;*/
}
.hero-title {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  padding-bottom: .1em;
}
.hero-title span {
  display: block;
  font-style: italic;
  color: var(--text2);
}
.hero-intro.item h3 {
  font-weight: lighter;
  padding: .2em 1em;
}
.hero-desc {
  /*max-width: 320px;*/
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--text2);
  letter-spacing: 0.02em;
  text-align: left;
}
.hero-desc strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
  padding: 1em;
}
#index .hero-desc strong {
  padding-left: 0;
}
/* ── SLIDESHOW ── */
.slideshow-wrap {
  padding: 0 3rem 0;
  animation: fadeUp 1s 0.2s ease both;
  width: 100vw;
}
#slideshow {
  touch-action: pan-y;
}
.slideshow {
  position: relative;
  width: 50vw;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg3);
  cursor: pointer;
  margin: 0 auto;
  touch-action: pan-y;
}
#index .slideshow {
  max-width: 860px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  margin: 0 auto;
}
#index .slideshow__track {
  position: absolute;
  inset: 0;
  touch-action: pan-y;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
#index .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}
.slide.active {
  opacity: 1;
}
#index .slide.is-active {
  opacity: 1;
}
.slide svg {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.slide img {
  object-fit: cover;
}
.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /*padding: 3rem 2.5rem 2rem;*/
  padding: 3rem .5rem 10px;
  background: linear-gradient(transparent, rgba(10, 9, 8, 0.85));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: "Cormorant Garamond", Georgia, serif
}
#index .slide__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms ease;
  text-shadow: 1px 1px 1px #999;
}
#index .slide.is-active .slide__caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 200ms;
}
.slide-title {
  /* font-size: clamp(1.4rem, 2.5vw, 2.2rem);*/
  font-size: 1.5em;
  font-weight: 300;
  color: #f0ebe3;
  letter-spacing: 0.02em;
}
.slide-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(240, 235, 227, 0.5);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.slide-num {
  font-family: var(--mono);
  /*font-size: 0.75rem;*/
  font-size: inherit;
  color: var(--accent);
  letter-spacing: 0.08em;
}
/* Nav arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*background: rgba(14, 13, 12, 0.6)*/ ;
  background: none;
  border: none;
  color: #000;
  /*width: 44px;
  height: 44px;*/
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /*font-size: 1.1rem;*/
  font-size: 3rem;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  /*backdrop-filter: blur(6px);*/
  backdrop-filter: none;
}
.arrow:hover {
  background: rgba(201, 169, 110, 0.15);
  /*border-color: var(--accent2);
  color: var(--accent);*/
  border-color: #0d0d0c;
  color: #040404;
}
.arrow.prev {
  /*left: 1.2rem;*/
  left: 0;
}
.arrow.next {
  /*right: 1.2rem;*/
  right: 0;
}
#index .slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*width: 42px;
  height: 42px;*/
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #080501;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /*backdrop-filter: blur(4px);*/
  transition: background 200ms ease, transform 200ms ease;
  z-index: 3;
}
#index .slideshow__arrow:hover {
  background: rgba(220, 216, 216, 0.7);
}
#index .slideshow__arrow:active {
  transform: translateY(-50%) scale(0.92);
}
#index .slideshow__arrow--prev {
  left: 14px;
}
#index .slideshow__arrow--next {
  right: 14px;
}
#index .slideshow__arrow:focus-visible, #index .dot:focus-visible, #index .slideshow__playpause:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#index .slideshow__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
#index .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}
#index .dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}
#index .slideshow__playpause {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 10, 10, 0.45);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
#index .slideshow__playpause:hover {
  background: rgba(10, 10, 10, 0.7);
}
/* Progress bar */
.progress-bar {
  height: 2px;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width linear;
}
/* ── THUMBNAILS ── */
.thumbs-section {
  padding: 1.5rem 3rem 0;
  animation: fadeUp 1s 0.3s ease both;
}
.thumbs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.5;
}
.thumb:hover {
  opacity: 0.8;
}
.thumb.active {
  border-color: var(--accent);
  opacity: 1;
}
.thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}
.thumb img {
  width: 100%;
  height: 100%;
  display: block;
}
/* ── METADATA ROW ── */
.meta-row {
  display: flex;
  align-items: normal;
  gap: 2rem;
  padding: 1.5rem 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  animation: fadeUp 1s 0.35s ease both;
}
.meta-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text3);
}
.meta-value {
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.03em;
}
.meta-status-available {
  color: #7ab88a;
}
.meta-status-sold {
  color: #c47a5a;
}
.meta-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}
.meta-enquire {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent2);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.meta-enquire:hover {
  background: rgba(201, 169, 110, 0.1);
}
/* ── ABOUT STRIP ── */
/*.about {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: auto 1fr auto;
	gap: 0;
	border-top: 1px solid var(--border);
	margin-top: 3rem;
	animation: fadeUp 1s 0.4s ease both;
}*/
.about-cell {
  padding: inherit;
  border-right: none;
}
.about-cell:last-child {
  border-right: none;
}
.about-cell h3 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1.2rem;
}
.about-cell p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 300;
}
.about-cell .stat-big {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-cell .stat-big em {
  font-style: italic;
  color: var(--accent);
}
/* ── CONTACT ── */
.contact {
  padding: 4rem 3rem 1rem;
  border-top: none;
  display: flex;
  align-items: end;
  animation: fadeUp 1s 0.45s ease both;
  flex-direction: column-reverse;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.contact-left h2 em {
  font-style: italic;
  color: var(--accent);
}
.contact-left p {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text2);
  letter-spacing: 0.08em;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}
.contact-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.contact-links a:hover {
  color: var(--accent);
}
/* ── ABOUT PAGE ── */
.bio {
  width: 90%;
  padding-top: 4em;
}
.container-bio {
  text-align: center;
  padding: 0 1em;
}
.ab-content {
  margin: 2em 0;
  display: inline-block;
  text-align: left;
}
.ab-content h2 {
  padding-bottom: .5em
}
.ab-content dd b {
  font-weight: bolder;
  font-size: 1.1em;
}
#about dt {
  color: #6e4fff;
}
#about dd {
  margin: 0;
  padding: 0 0 0.5em 0;
  line-height: 1.3em;
}
#about h1, #about h2 {
  color: #ecd6c8;
}
#about dl {
  text-align: left;
  display: inline-block;
}
.col {
  padding-bottom: 1em;
}
/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
}
/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 2.1rem;
  }
  #index header {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .flex-container {
    display: block;
  }
  .container {
    position: relative;
    width: 50%;
  }
  nav {
    gap: 1.2rem;
    width: auto;
  }
  nav a, nav li {
    font-size: 1rem;
  }
  nav ul li {
    padding: 0 5%;
  }
  .flex-item {
    text-align: center;
  }
  .hero-intro {
    padding: 0 1.5rem 1.5rem;
  }
  .hero-desc {
    text-align: left;
  }
  .slideshow {
    width: 90vw;
  }
  .slideshow-wrap, .thumbs-section, .meta-row {
    padding: 0;
  }
  .thumbs-section {
    display: none;
  }
  .thumbs-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem;
  }
  .contact {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 1.5rem;
    align-items: center;
  }
  .contact-links {
    text-align: left;
  }
  footer {
    gap: 0.5rem;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .meta-row {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem 0;
  }
  .meta-sep {
    display: none;
  }
}
@media (max-width: 480px) {
  .slideshow__arrow {
    width: 36px;
    height: 36px;
  }
  .slide__caption {
    font-size: 0.85rem;
    padding: 20px 16px 14px;
  }
  .slide-title {
    font-size: 1em;
  }
  .slide-num {
    font-family: var(--mono);
    font-size: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slide, .slide__caption {
    transition: none;
  }
}