/* === BASE === */
:root {
  --bg: #08090c;
  --bg-2: #0e0f14;
  --bg-3: #12131a;
  --fg: #f0ece3;
  --fg-2: #a09a8e;
  --fg-3: #6b6560;
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.12);
  --gold-border: rgba(201, 169, 110, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
  --pad: clamp(2rem, 6vw, 6rem);
}

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

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  overflow-x: hidden;
}

/* === MANIFESTO === */
.manifesto {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--pad);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.manifesto__bg-line {
  position: absolute;
  background: var(--gold-border);
  top: 0; bottom: 0;
  width: 1px;
}
.manifesto__bg-line--1 { left: 25%; }
.manifesto__bg-line--2 { left: 50%; }
.manifesto__bg-line--3 { left: 75%; }

.manifesto__bg-circle {
  position: absolute;
  top: -20vw; right: -10vw;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  opacity: 0.4;
}

.manifesto__bg-corner {
  position: absolute;
  width: 80px; height: 80px;
}
.manifesto__bg-corner--tl { top: var(--pad); left: var(--pad); border-top: 1px solid var(--gold-border); border-left: 1px solid var(--gold-border); }
.manifesto__bg-corner--br { bottom: var(--pad); right: var(--pad); border-bottom: 1px solid var(--gold-border); border-right: 1px solid var(--gold-border); }

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.manifesto__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

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

.manifesto__sub {
  max-width: 560px;
  margin-bottom: 3.5rem;
}

.manifesto__sub p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-2);
}

.manifesto__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.manifesto__meta-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.manifesto__meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.manifesto__meta-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
}

/* === VENUES === */
.venues {
  padding: var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
}

.venues__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gold-border);
}

.venues__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: start;
  padding-top: 0.4rem;
}

.venues__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
}

.venues__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.venues__group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.venues__city {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.venues__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.venue-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.venue-card__mark {
  width: 8px; height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.5rem;
}

.venue-card__mark--ibiza {
  background: #e8c99a;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.venue-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
}

.venue-card__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.5;
}

/* === TECHNOLOGY === */
.technology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--gold-border);
}

.technology__left {
  padding: var(--pad);
  border-right: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: var(--bg-3);
}

.technology__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.technology__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
}

.technology__accent-bar {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.technology__right {
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gold-border);
}

.tech-feature:last-child {
  border-bottom: none;
}

.tech-feature__icon {
  min-width: 20px;
  margin-top: 0.2rem;
}

.tech-feature__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-feature__name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.tech-feature__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === PRINCIPLES === */
.principles {
  padding: var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
}

.principles__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.principles__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.principle {
  padding: 2.5rem;
  border: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg);
}

.principle:not(:first-child) {
  border-left: none;
}

.principle__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.principle__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.principle__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: var(--pad);
  background: var(--bg-3);
  border-top: 1px solid var(--gold-border);
}

.closing__inner {
  max-width: 800px;
}

.closing__rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 3rem;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

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

.closing__sub {
  max-width: 480px;
}

.closing__sub p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.7;
}

.closing__marks {
  display: flex;
  gap: 0.75rem;
  margin-top: 3rem;
}

.closing__mark {
  width: 32px; height: 2px;
  background: var(--gold-border);
}

/* === FOOTER === */
.footer {
  padding: 3rem var(--pad);
  border-top: 1px solid var(--gold-border);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--fg-3);
  letter-spacing: 0.05em;
}

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

.footer__copy, .footer__powered, .footer__sep {
  font-size: 0.75rem;
  color: var(--fg-3);
  font-weight: 300;
}

.footer__link {
  font-size: 0.75rem;
  color: var(--fg-3);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .manifesto__bg-line--2, .manifesto__bg-line--3 { display: none; }

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

  .venues__grid { grid-template-columns: 1fr; gap: 3rem; }

  .technology { grid-template-columns: 1fr; }
  .technology__left { border-right: none; border-bottom: 1px solid var(--gold-border); }

  .principles__grid { grid-template-columns: 1fr; }
  .principle:not(:first-child) { border-left: 1px solid var(--gold-border); border-top: none; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .manifesto__headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .manifesto__meta { gap: 1.5rem; }
}

/* === LANDING — SALESFORCE OF LUXURY HOSPITALITY === */
.landing-hero__anchor {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.technology__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 460px;
}

.proof {
  padding: var(--pad);
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.proof__inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.proof__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.proof__quote {
  margin: 0;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.proof__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
}

.proof__quote p + p {
  margin-top: .85rem;
}

.proof__link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact {
  padding: var(--pad);
  background: var(--bg-3);
  border-top: 1px solid var(--gold-border);
}

.contact__inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
}

.contact__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 560px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__field--wide {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.contact-form__input {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-form__feedback {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--fg-3);
}

.contact-form__feedback--error {
  color: #e8b4a0;
}

.contact-form__feedback--ok {
  color: var(--gold);
}

.btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .landing-hero__anchor { margin-bottom: 1rem; }

  .proof__quote { padding-left: 1.25rem; }

  .contact-form { grid-template-columns: 1fr; }
}
