/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum: #5C3D5E;
  --plum-deep: #3E2741;
  --plum-light: #7A547A;
  --plum-muted: #F3EDF4;
  --amber: #C8962E;
  --amber-light: #E8C060;
  --amber-pale: #FDF6E3;
  --black: #1A1A1A;
  --gray-900: #2C2C2C;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #C8C8C8;
  --gray-100: #F0F0F0;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--plum);
  color: var(--white);
  border-radius: 0 0 4px 4px;
  z-index: 100;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ── Layout ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

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

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--plum-deep);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn--ghost:hover {
  background: var(--plum);
  color: var(--white);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* ── Header ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: 0 1px 20px rgba(92, 61, 94, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--plum);
  border-radius: 3px;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--amber);
  border-radius: 1px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}
.nav a:hover {
  color: var(--plum);
}
.nav a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--plum);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--plum-deep);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}
.hero-detail svg {
  color: var(--plum-light);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 4px;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--amber);
  border-radius: 4px;
  z-index: -1;
}

/* ── Divider ─────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 200px;
  margin: 0 auto;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}
.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── Residences ──────────────────────────────────── */
.residences {
  background: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  box-shadow: 0 8px 40px rgba(92, 61, 94, 0.1);
  transform: translateY(-4px);
}

.card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ── Amenities ───────────────────────────────────── */
.amenities {
  background: var(--plum-muted);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity {
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.amenity:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 24px rgba(92, 61, 94, 0.08);
}

.amenity-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--plum-muted);
  color: var(--plum);
  margin-bottom: 1.25rem;
}

.amenity-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: 0.5rem;
}

.amenity-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ── Location ────────────────────────────────────── */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  aspect-ratio: 16/12;
}
.location-map iframe {
  width: 100%;
  height: 100%;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.location-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.location-detail-value {
  font-size: 1rem;
  color: var(--gray-900);
  line-height: 1.6;
}
.location-detail-value a {
  color: var(--plum);
  border-bottom: 1px solid var(--gray-300);
  transition: border-color 0.2s;
}
.location-detail-value a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── About ───────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 4px;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--plum-deep);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--plum);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  background: var(--gray-300);
  align-self: stretch;
}

/* ── Contact ─────────────────────────────────────── */
.contact {
  background: var(--plum-deep);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact .section-label {
  color: var(--amber-light);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.contact-direct-item:hover {
  color: var(--amber-light);
  border-color: var(--amber-light);
}
.contact-direct-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-900);
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(92, 61, 94, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 0.25rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}
.form-success svg {
  color: var(--plum);
}
.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--plum-deep);
}
.form-success-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-tagline {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--amber-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-image {
    max-width: 500px;
  }
  .hero-image img {
    height: 500px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image img {
    height: 400px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .nav a {
    font-size: 1rem;
  }
  .nav .btn--sm {
    margin-top: 0.5rem;
  }

  .hero-inner {
    padding: 3rem 1.25rem;
  }
  .hero-image img {
    height: 400px;
  }
  .hero-image-accent {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    aspect-ratio: 16/10;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
  }
  .stat-divider {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-wrap {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1.25rem;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
}
