/* ============ UBUNTU VILLAS ============ */

:root {
  /* Defaults — EDITMODE-controlled (sage / forest / fraunces) */
  --ink: #0C130E;
  --ink-soft: #182118;
  --parchment: #EAE4D4;
  --parchment-dim: #B8BAA8;
  --gold: #8AA08A;
  --gold-bright: #A8C0A8;
  --jungle: #1F2A23;
  --line: rgba(234, 228, 212, 0.14);
  --line-strong: rgba(234, 228, 212, 0.3);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

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

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

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

/* ============ TYPE ============ */

.display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
}

.body-lg {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--parchment-dim);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(11, 10, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 56px;
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nav__logo small {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--parchment);
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.nav__links a:hover { opacity: 1; color: var(--gold-bright); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: -5% 0 0 0;
  height: 110%;
  z-index: 0;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 10, 8, 0.35) 0%,
    rgba(11, 10, 8, 0.1) 30%,
    rgba(11, 10, 8, 0.4) 70%,
    rgba(11, 10, 8, 0.95) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 56px 96px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.hero__title {
  font-size: clamp(60px, 10vw, 168px);
  line-height: 0.88;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
  max-width: 320px;
}

.hero__meta .eyebrow { color: var(--parchment-dim); }

.hero__meta p {
  font-size: 14px;
  color: var(--parchment);
  line-height: 1.5;
  font-weight: 300;
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--parchment-dim);
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__marquee {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 22vw, 380px);
  line-height: 1;
  color: rgba(237, 230, 216, 0.04);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* ============ SECTIONS ============ */

section { position: relative; }

.section-num {
  position: absolute;
  top: 56px; right: 56px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ============ PHILOSOPHY ============ */

.philosophy {
  padding: 160px 0 180px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: start;
}

.philosophy__label {
  position: sticky;
  top: 140px;
}

.philosophy__label .eyebrow { margin-bottom: 24px; }

.philosophy__label h2 {
  font-size: clamp(40px, 4.5vw, 68px);
  margin-bottom: 32px;
}

.philosophy__label .ornament {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.philosophy__label p {
  font-size: 13px;
  color: var(--parchment-dim);
  max-width: 320px;
}

.philosophy__copy p {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.45;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--parchment);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.philosophy__copy p:last-child { margin-bottom: 0; }

.philosophy__copy em {
  font-style: italic;
  color: var(--gold-bright);
}

.philosophy__signature {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.philosophy__signature span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-bright);
}

.philosophy__signature::before {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ============ VILLAS ============ */

.villas {
  padding: 140px 0 180px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  position: relative;
}

.villas__header {
  max-width: 1440px;
  margin: 0 auto 100px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.villas__header h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.92;
}

.villas__header h2 em { font-style: italic; color: var(--gold-bright); }

.villas__header p {
  font-size: 15px;
  color: var(--parchment-dim);
  max-width: 460px;
  line-height: 1.7;
}

.villas__list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.villa-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  position: relative;
}

.villa-row:last-child { border-bottom: 1px solid var(--line); }

.villa-row.reverse .villa-row__media { order: 2; }

.villa-row__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
}

.villa-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s;
  filter: brightness(0.85);
}

.villa-row__media:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.villa-row__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,10,8,0.5) 100%);
  pointer-events: none;
}

.villa-row__num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  color: var(--parchment);
  line-height: 1;
  z-index: 2;
  mix-blend-mode: difference;
}

.villa-row__content {
  padding: 20px 0;
}

.villa-row__content .eyebrow { margin-bottom: 20px; display: block; }

.villa-row__name {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  margin-bottom: 12px;
}

.villa-row__name em { font-style: italic; color: var(--gold-bright); }

.villa-row__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--parchment-dim);
  margin-bottom: 28px;
  font-weight: 300;
}

.villa-row__desc {
  font-size: 14px;
  color: var(--parchment-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.villa-row__specs {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  font-weight: 500;
}

.spec__value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--parchment);
  font-weight: 400;
}

.villa-row__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.btn-gold {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover { background: var(--gold-bright); transform: translateX(4px); }

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s;
}

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

/* ============ EXPERIENCE ============ */

.experience {
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}

.experience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.experience__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 80%, var(--ink) 100%);
}

.experience__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.experience__header {
  text-align: center;
  margin-bottom: 100px;
}

.experience__header .eyebrow { margin-bottom: 20px; }

.experience__header h2 {
  font-size: clamp(48px, 6vw, 96px);
  max-width: 900px;
  margin: 0 auto;
}

.experience__header h2 em { font-style: italic; color: var(--gold-bright); }

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.exp-card {
  padding: 48px 32px;
  background: rgba(11, 10, 8, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exp-card:hover { background: rgba(31, 42, 35, 0.75); }

.exp-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 60px;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}

.exp-card__title em { font-style: italic; color: var(--gold-bright); }

.exp-card p {
  font-size: 13px;
  color: var(--parchment-dim);
  line-height: 1.6;
}

/* ============ LOCATION ============ */

.location {
  padding: 180px 0;
  background: var(--ink);
}

.location__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.location__copy h2 {
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.95;
  margin: 24px 0 32px;
}

.location__copy h2 em { font-style: italic; color: var(--gold-bright); }

.location__copy > p {
  font-size: 16px;
  color: var(--parchment-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.location__list {
  list-style: none;
  margin-bottom: 40px;
}

.location__list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.location__list li:last-child { border-bottom: 1px solid var(--line); }

.location__list span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 16px;
}

.location__map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* ============ GALLERY ============ */

.gallery {
  padding: 160px 0;
  background: var(--ink-soft);
}

.gallery__header {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 56px;
  text-align: center;
}

.gallery__header h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
}

.gallery__header h2 em { font-style: italic; color: var(--gold-bright); }

.gallery__header .eyebrow { margin-bottom: 20px; display: inline-block; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

.gal-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s;
  filter: brightness(0.9);
}

.gal-item:hover img { transform: scale(1.04); filter: brightness(1); }

.gal-item::after {
  content: '↗';
  position: absolute;
  top: 16px; right: 20px;
  color: var(--parchment);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.gal-1 { grid-column: span 7; aspect-ratio: 16/11; }
.gal-2 { grid-column: span 5; aspect-ratio: 4/5; }
.gal-3 { grid-column: span 4; aspect-ratio: 1/1; }
.gal-4 { grid-column: span 4; aspect-ratio: 1/1; }
.gal-5 { grid-column: span 4; aspect-ratio: 1/1; }
.gal-6 { grid-column: span 5; aspect-ratio: 4/5; }
.gal-7 { grid-column: span 7; aspect-ratio: 16/11; }

/* ============ CTA / CONTACT ============ */

.contact {
  padding: 180px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.contact__ornament {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(180px, 30vw, 520px);
  color: rgba(184, 147, 90, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  font-weight: 300;
}

.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact__copy h2 {
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.95;
  margin: 24px 0 32px;
}

.contact__copy h2 em { font-style: italic; color: var(--gold-bright); }

.contact__copy > p {
  font-size: 16px;
  color: var(--parchment-dim);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 420px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__channel {
  padding: 24px 28px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s, background 0.3s;
}

.contact__channel:hover {
  border-color: var(--gold);
  background: rgba(184, 147, 90, 0.04);
}

.contact__channel-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-bottom: 6px;
}

.contact__channel-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--parchment);
  font-weight: 400;
}

.contact__channel-arrow {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.contact__channel:hover .contact__channel-arrow { transform: translateX(6px); }

/* Form */

.contact__form {
  padding: 48px;
  border: 1px solid var(--line);
  background: rgba(26, 24, 21, 0.5);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  font-style: italic;
  color: var(--gold-bright);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--parchment);
  font-weight: 300;
  transition: border-color 0.3s;
  outline: none;
}

.form-field select option {
  background: var(--ink);
  color: var(--parchment);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s, letter-spacing 0.3s;
  margin-top: 16px;
}

.form-submit:hover { background: var(--gold-bright); letter-spacing: 0.32em; }

.form-success {
  padding: 20px;
  border: 1px solid var(--gold);
  background: rgba(184, 147, 90, 0.08);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-bright);
  margin-bottom: 24px;
}

.footer__brand small {
  font-size: 12px;
  color: var(--parchment-dim);
  line-height: 1.7;
  max-width: 320px;
  display: block;
}

.footer__col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 13px;
  color: var(--parchment-dim);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--gold-bright); }

.footer__base {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 56px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--parchment-dim);
  letter-spacing: 0.1em;
}

/* ============ REVEAL ============ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ TWEAKS PANEL ============ */

.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 320px;
  background: rgba(11, 10, 8, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold);
  z-index: 1000;
  padding: 24px;
  font-size: 12px;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s var(--ease);
  max-height: 80vh;
  overflow-y: auto;
}

.tweaks.open { transform: translateX(0); }

.tweaks h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 16px;
  font-weight: 400;
}

.tweaks__group { margin-bottom: 20px; }

.tweaks__label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-bottom: 10px;
  font-weight: 500;
}

.tweaks__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tweaks__opt {
  padding: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--parchment);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.tweaks__opt:hover { border-color: var(--gold); }

.tweaks__opt.active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}

.tweaks__swatch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
}

.tweaks__swatch-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__links { display: none; }
  .hero__inner { padding: 0 24px 60px; grid-template-columns: 1fr; }
  .hero__meta { align-items: flex-start; text-align: left; }
  .container, .villas__header, .villas__list, .location__inner, .gallery__header, .contact__inner, .footer__inner, .footer__base, .experience__inner { padding-left: 24px; padding-right: 24px; }
  .philosophy__grid, .location__inner, .contact__inner, .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .villa-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .villa-row.reverse .villa-row__media { order: 0; }
  .villas__header { grid-template-columns: 1fr; gap: 24px; }
  .experience__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .gal-1, .gal-7 { grid-column: span 6; }
  .gal-2, .gal-6 { grid-column: span 6; }
  .gal-3, .gal-4, .gal-5 { grid-column: span 2; }
}
