:root {
  --ink: #171514;
  --muted: #756f65;
  --paper: #f7f0e4;
  --surface: #fffaf0;
  --dark: #141c19;
  --dark-2: #263d35;
  --gold: #c99a3a;
  --gold-light: #f1d58a;
  --copper: #9c5d43;
  --line: rgba(44, 35, 25, .14);
  --shadow: 0 24px 70px rgba(18, 21, 19, .18);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

.top-strip {
  background: #0d1513;
  color: #e7d9bb;
  font-size: 13px;
  letter-spacing: .5px;
}

.top-strip .container {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 240, 228, .92);
  border-bottom: 1px solid rgba(38, 61, 53, .14);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 112px;
}

.brand img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: .5px;
}

.brand small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 12px 13px;
  color: #2e332f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dark);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #171514;
  background: var(--gold-light);
  border-color: rgba(201, 154, 58, .45);
}

.button.secondary {
  color: #fff8e8;
  background: var(--dark);
}

.button.ghost {
  color: #fff8e8;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 248, 232, .4);
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  color: #fff8e8;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 18, 16, .9) 0%, rgba(10, 18, 16, .72) 38%, rgba(10, 18, 16, .28) 68%),
    url("assets/royal-umre-hero.svg") center / cover no-repeat,
    #17231f;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(247, 240, 228, 1), rgba(247, 240, 228, 0));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  padding: 82px 0 170px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(54px, 8.6vw, 112px);
}

h2 {
  font-size: clamp(36px, 5vw, 62px);
}

h3 {
  font-size: 25px;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #eadfca;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  display: flex;
  max-width: 690px;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 248, 232, .25);
  border-bottom: 1px solid rgba(255, 248, 232, .25);
}

.stat {
  flex: 1;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 248, 232, .2);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #e7d9bb;
  font-size: 13px;
  letter-spacing: .5px;
}

.hero-visual {
  display: none;
}

.booking-bar {
  position: relative;
  z-index: 4;
  margin-top: -92px;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  align-items: end;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card .notice {
  grid-column: 1 / -1;
}

.booking-card label {
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.booking-card label:first-child {
  padding-left: 0;
}

.booking-card label:nth-child(3) {
  border-right: 0;
}

.section {
  padding: 94px 0;
}

.section.alt {
  background: #eadfca;
}

.section-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-body {
  padding: 30px;
}

.feature-card {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff8e8;
  background: #18241f;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 18, 16, .88), rgba(10, 18, 16, .08) 62%),
    url("assets/luxury-panel.svg") center / cover no-repeat;
  transition: transform .45s ease;
}

.feature-card:hover::before {
  transform: scale(1.04);
}

.feature-card .card-body {
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #e7d9bb;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #171514;
  background: var(--gold-light);
  border-radius: var(--radius);
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.card p,
.program p,
.hotel p,
.about-copy p {
  color: var(--muted);
}

.program {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.day {
  display: grid;
  place-items: center;
  min-height: 96px;
  color: #fff8e8;
  background: var(--dark);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}

.day span {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

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

.form-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #2e332f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .3px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(44, 35, 25, .2);
  border-radius: var(--radius);
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
}

.contact-item strong {
  display: block;
}

.contact-item span {
  color: var(--muted);
}

.page-hero {
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(10, 18, 16, .9), rgba(10, 18, 16, .55)),
    url("assets/royal-umre-hero.svg") center / cover no-repeat,
    var(--dark);
}

.page-hero .container {
  padding: 108px 0 118px;
}

.page-hero p {
  max-width: 720px;
  color: #eadfca;
  font-size: 19px;
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.image-panel {
  min-height: 500px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 28, 25, .08), rgba(20, 28, 25, .02)),
    url("assets/luxury-panel.svg") center / cover no-repeat,
    #eadfca;
  box-shadow: var(--shadow);
}

.ticks {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ticks li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 154, 58, .18);
}

.hotel {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.hotel-media {
  min-height: 250px;
  background:
    linear-gradient(0deg, rgba(20, 28, 25, .2), rgba(20, 28, 25, .04)),
    var(--photo, url("assets/luxury-panel.svg")) center / cover no-repeat,
    #eadfca;
}

.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 10px;
  border-radius: var(--radius);
  color: #171514;
  background: #ecd59d;
  font-size: 12px;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

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

.cta-band {
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(20, 28, 25, .95), rgba(38, 61, 53, .85)),
    url("assets/luxury-panel.svg") center / cover no-repeat;
}

.cta-band .container {
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 0;
}

.cta-band p {
  max-width: 640px;
  color: #eadfca;
}

.site-footer {
  color: #f7ead0;
  background: #0d1513;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr 1fr;
  gap: 30px;
  padding: 60px 0;
}

.footer-grid h3 {
  font-size: 19px;
}

.footer-grid p,
.footer-grid a {
  color: #cbbd9f;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  padding: 18px 0;
  color: #a89d86;
  border-top: 1px solid rgba(255, 248, 232, .12);
  font-size: 14px;
}

.map-box {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff8e8;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(20, 28, 25, .92), rgba(156, 93, 67, .6)),
    url("assets/luxury-panel.svg") center / cover no-repeat;
}

.notice {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 38px rgba(18, 21, 19, .22);
  font-weight: 900;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

.photo-card {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  color: #fff8e8;
  background: #17231f;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 18, 16, .9), rgba(10, 18, 16, .12) 58%), var(--photo);
  background-size: cover;
  background-position: center;
  transition: transform .45s ease;
}

.photo-card:hover::before {
  transform: scale(1.04);
}

.photo-card .card-body {
  position: relative;
  z-index: 1;
}

.photo-card p {
  color: #eadfca;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(18, 21, 19, .08);
}

.price-card.featured {
  color: #fff8e8;
  background: var(--dark);
  border-color: rgba(241, 213, 138, .32);
}

.price-card.featured p,
.price-card.featured li {
  color: #eadfca;
}

.price {
  margin: 18px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.price small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.mini-list li {
  color: var(--muted);
}

.mini-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold);
  font-weight: 900;
}

.date-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.date-table th,
.date-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.date-table th {
  color: #fff8e8;
  background: var(--dark);
}

.date-table tr:last-child td {
  border-bottom: 0;
}

.category-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.vehicle-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}

.vehicle-media,
.package-media {
  min-height: 260px;
  background: var(--photo) center / cover no-repeat;
}

.package-card {
  display: grid;
  grid-template-rows: 240px 1fr;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 22px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(18, 21, 19, .12);
  }

  .nav-links.is-open {
    display: grid;
  }

  .header-actions .button {
    display: none;
  }

  .hero .container,
  .reservation,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .booking-card {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .booking-card label {
    padding: 0;
    border-right: 0;
  }

  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .top-strip .container {
    justify-content: center;
    text-align: center;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 78px;
    height: 78px;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container {
    padding: 62px 0 150px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-stats,
  .booking-card,
  .grid.three,
  .grid.two,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }

  .stat,
  .stat:first-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 232, .18);
  }

  .booking-bar {
    margin-top: -82px;
  }

  .program,
  .hotel,
  .vehicle-card {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 330px;
  }

  .cta-band .container {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 12px 15px;
    font-size: 14px;
  }
}
