:root {
  --bg: #fff0dc;
  --bg-soft: #ffe1bf;
  --surface: #fff8ea;
  --surface-tint: #ffe9cd;
  --text: #20285f;
  --muted: #60668e;
  --line: rgba(32, 40, 95, .16);
  --accent: #f36f21;
  --accent-strong: #c94b1b;
  --accent2: #424d98;
  --warm: #f7b733;
  --dark: #283174;
  --white: #fffaf1;
  --shadow: 0 24px 70px rgba(32, 40, 95, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: linear-gradient(180deg, #fff6e9 0, var(--bg) 45%, #ffe6c8 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1480px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(66, 77, 152, .94);
  border-bottom: 1px solid rgba(255, 250, 241, .16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(32, 40, 95, .2);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--white);
}

.logo span {
  color: var(--warm);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #fff6e9;
  font-size: .95rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #e8421f);
  color: var(--white);
  font-weight: 800;
  padding: 14px 22px;
  box-shadow: 0 14px 34px rgba(243, 111, 33, .28);
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(243, 111, 33, .34);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.btn-small {
  padding: 10px 16px;
  font-size: .9rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 241, .34);
  border-radius: 999px;
  background: rgba(255, 248, 234, .12);
  color: var(--white);
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(32, 40, 95, .18);
}

.btn-ghost {
  background: rgba(255, 248, 234, .9);
  border: 1px solid rgba(255, 248, 234, .42);
  color: var(--dark);
  box-shadow: none;
}

.btn-full {
  width: 100%;
  margin-top: auto;
}

.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(66, 77, 152, .98) 0 63%, rgba(243, 111, 33, .96) 63% 100%),
    linear-gradient(180deg, var(--accent2), var(--dark));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.1rem;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-content h1 {
  color: var(--white);
}

.hero-content .eyebrow {
  color: var(--warm);
}

.hero-content .lead {
  color: #ffe9cd;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid rgba(255, 248, 234, .28);
  border-radius: 999px;
  background: rgba(255, 248, 234, .13);
  color: var(--white);
  padding: 8px 12px;
  font-size: .88rem;
  box-shadow: 0 10px 28px rgba(32, 40, 95, .16);
}

.hero-card {
  position: relative;
  min-height: 560px;
}

.mock-photo {
  position: absolute;
  border: 1px solid rgba(255, 248, 234, .78);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, .24), rgba(255, 248, 234, .02)),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80') center/cover;
  box-shadow: var(--shadow);
}

.mock-photo.large {
  inset: 40px 40px 40px 0;
}

.mock-photo.small {
  width: 210px;
  height: 150px;
}

.mock-photo.one {
  top: 0;
  right: 0;
  background-image:
    linear-gradient(145deg, rgba(255, 248, 234, .18), rgba(255, 248, 234, .02)),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=800&q=80');
}

.mock-photo.two {
  right: 20px;
  bottom: 10px;
  background-image:
    linear-gradient(145deg, rgba(255, 248, 234, .18), rgba(255, 248, 234, .02)),
    url('https://images.unsplash.com/photo-1560185127-6ed189bf02f4?auto=format&fit=crop&w=800&q=80');
}

.floating-card {
  position: absolute;
  left: 18px;
  bottom: 76px;
  border: 1px solid rgba(243, 111, 33, .26);
  border-radius: 22px;
  background: rgba(255, 248, 234, .96);
  color: var(--text);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.floating-card span {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.intro {
  max-width: 920px;
  text-align: center;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin-bottom: 12px;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.extras,
.booking-form,
.cta-box {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--surface) 0, var(--surface-tint) 100%);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(32, 40, 95, .11);
}

.card p {
  color: var(--muted);
}

.icon {
  margin-bottom: 16px;
  font-size: 2rem;
}

.real-estate-focus {
  background: #fff7e9;
}

.real-estate-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px 42px;
  align-items: start;
}

.real-estate-grid .section-head {
  margin-bottom: 0;
}

.real-estate-grid .section-head p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-grid {
  display: grid;
  gap: 16px;
}

.audience-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface) 0, var(--surface-tint) 100%);
  padding: 24px;
  box-shadow: 0 16px 45px rgba(32, 40, 95, .11);
}

.audience-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.portal-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(243, 111, 33, .32);
  border-radius: 20px;
  background: linear-gradient(135deg, #424d98 0, #343f89 100%);
  padding: 18px 20px;
}

.portal-strip strong {
  color: var(--warm);
}

.portal-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-strip span {
  border: 1px solid rgba(255, 248, 234, .24);
  border-radius: 999px;
  background: rgba(255, 248, 234, .12);
  color: var(--white);
  font-weight: 800;
  padding: 8px 12px;
}

.packages,
.process {
  background: linear-gradient(180deg, #424d98 0, #293374 100%);
  color: var(--white);
}

.packages .section-head h2,
.process h2 {
  color: var(--white);
}

.packages .eyebrow,
.process .eyebrow {
  color: var(--warm);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.price-card.featured {
  border-color: rgba(243, 111, 33, .58);
  transform: translateY(-12px);
  box-shadow: 0 26px 70px rgba(243, 111, 33, .22);
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  border-radius: 999px;
  background: #f36f21;
  color: var(--white);
  padding: 6px 11px;
  font-size: .8rem;
  font-weight: 800;
}

.tag {
  margin-top: 0;
  color: var(--accent);
  font-weight: 700;
}

.price {
  margin: 20px 0;
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 800;
}

.price-card ul,
.check-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li,
.check-list li {
  border-bottom: 1px solid rgba(32, 40, 95, .1);
  color: var(--muted);
  padding: 9px 0;
}

.price-card li:before,
.check-list li:before {
  content: '\2713';
  margin-right: 9px;
  color: var(--accent);
  font-weight: 900;
}

.extras {
  margin-top: 24px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.extras-grid span {
  border: 1px solid rgba(32, 40, 95, .12);
  border-radius: 16px;
  background: #fff1d7;
  color: var(--dark);
  padding: 14px;
}

.mini-price {
  color: var(--accent);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.process p {
  color: #ffe9cd;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  border: 1px solid rgba(255, 248, 234, .18);
  border-radius: 20px;
  background: rgba(255, 248, 234, .1);
  padding: 18px;
  box-shadow: 0 14px 32px rgba(14, 21, 67, .16);
}

.timeline strong {
  color: var(--warm);
  font-size: 1.4rem;
}

.booking {
  background: #fff0dc;
}

.booking-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
  align-items: start;
}

.booking-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-notes {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.booking-note {
  border-left: 4px solid var(--accent);
  background: rgba(255, 248, 234, .72);
  padding: 12px 0 12px 18px;
}

.booking-note strong {
  display: block;
  color: var(--dark);
}

.booking-note span {
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.slot-field legend {
  color: var(--dark);
  font-size: .88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(32, 40, 95, .18);
  border-radius: 16px;
  background: rgba(255, 250, 241, .9);
  color: var(--text);
  font: inherit;
  min-height: 52px;
  outline: 0;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(243, 111, 33, .62);
  box-shadow: 0 0 0 4px rgba(243, 111, 33, .13);
}

.slot-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.slot-button {
  border: 1px solid rgba(32, 40, 95, .18);
  border-radius: 14px;
  background: #fff8ea;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 48px;
  padding: 10px;
  transition: .2s ease;
}

.slot-button:hover,
.slot-button.active {
  border-color: rgba(243, 111, 33, .5);
  background: #ffe1bf;
  color: var(--accent-strong);
}

.booking-submit {
  margin-top: 2px;
}

.booking-status {
  color: var(--dark);
  font-weight: 700;
  margin: -4px 0 0;
  min-height: 1.5em;
}

.booking-status.error {
  color: var(--accent-strong);
}

.cta-box {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(66, 77, 152, .96) 0 64%, rgba(243, 111, 33, .92) 64% 100%);
  color: var(--white);
}

.cta-box p {
  color: #ffe9cd;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-grid a,
.contact-grid span {
  border: 1px solid rgba(255, 248, 234, .22);
  border-radius: 16px;
  background: rgba(255, 248, 234, .12);
  padding: 16px;
  font-weight: 700;
}

.footer {
  border-top: 1px solid rgba(32, 40, 95, .12);
  color: var(--dark);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay {
  transition-delay: .15s;
}

.admin-body {
  background: #fff0dc;
}

.admin-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-head h1 {
  font-size: 3rem;
}

.admin-head p {
  color: var(--muted);
  margin: 12px 0 0;
}

.admin-empty,
.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(32, 40, 95, .11);
}

.admin-empty {
  padding: 32px;
}

.admin-empty p {
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid rgba(32, 40, 95, .1);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #424d98;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--dark);
  font-size: .92rem;
}

.admin-table td span,
.admin-message {
  color: var(--muted);
}

.admin-message {
  max-width: 320px;
  white-space: normal;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 6px 8px 0;
  padding: 5px 9px;
}

.status-pill.ok {
  background: #ffe1bf;
  color: var(--accent-strong);
}

.status-pill.warn {
  background: #fff1d6;
  color: #8a3d19;
}

.admin-error {
  color: var(--accent-strong);
  font-size: .82rem;
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero-grid,
  .real-estate-grid,
  .process-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .cards.four,
  .cards.three,
  .pricing-grid,
  .extras-grid,
  .slot-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 248, 234, .18);
    border-radius: 22px;
    background: rgba(66, 77, 152, .98);
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .lang-switch {
    width: 100%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .cards.four,
  .cards.three,
  .pricing-grid,
  .extras-grid,
  .form-grid,
  .slot-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .admin-shell {
    width: min(100% - 20px, 1280px);
    padding: 24px 0;
  }

  .admin-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-head h1 {
    font-size: 2.1rem;
  }
}
