:root {
  --bg: #071f18;
  --bg-2: #0e3b2e;
  --gold: #d6b46a;
  --text: #f6f0e6;
  --muted: #b8b2a4;
  --ok: #7ccb9b;
  --error: #d96c6c;
  --glass: rgba(255, 255, 255, 0.07);
  --border: rgba(214, 180, 106, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 30% 0%, #145240, var(--bg) 45%, #03100d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

#luxury-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(7, 31, 24, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 180, 106, 0.13);
}

.brand { display: inline-flex; text-decoration: none; }
.brand-logo { width: 132px; height: auto; }
.logo-main { font-family: "Playfair Display", serif; font-size: 38px; fill: url(#gold); letter-spacing: 3px; }
.logo-sub { font-family: Inter, sans-serif; font-size: 14px; fill: #f6f0e6; letter-spacing: 4px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--gold); }

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(52px, 9vw, 112px); max-width: 850px; }
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: 27px; }

.lead {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--border);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #06140f; background: linear-gradient(135deg, #f3dda0, var(--gold)); border-color: transparent; }
.btn-ghost { color: var(--text); background: rgba(255,255,255,.04); }

.hero-card, .service-card, .booking-form, .about, .price-list, .gallery-placeholder, .contacts {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.hero-card { padding: 36px; position: relative; overflow: hidden; }
.card-line { display: block; width: 72px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.hero-card p, .about p, .service-card p, .section-title p { color: var(--muted); line-height: 1.7; }

.section-title { margin-bottom: 32px; max-width: 780px; }
.about { padding: 42px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card { padding: 28px; min-height: 250px; }
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 24px;
  font-weight: 700;
}

.price-list { overflow: hidden; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(214, 180, 106, .14);
}
.price-row:last-child { border-bottom: 0; }
.price-row p { margin: 6px 0 0; color: var(--muted); }
.price-row span { color: var(--gold); font-weight: 800; white-space: nowrap; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); background: var(--glass); }
.gallery-item img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.gallery-item figcaption { padding: 12px 14px; color: var(--muted); }
.gallery-placeholder { min-height: 210px; display: grid; place-items: center; color: var(--muted); text-align: center; padding: 26px; }

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
}
.booking-form label { display: grid; gap: 8px; color: var(--text); font-weight: 700; }
.booking-form small { color: var(--muted); font-weight: 400; line-height: 1.5; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  border: 1px solid rgba(214, 180, 106, .28);
  background: rgba(1, 8, 6, .42);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  font: inherit;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--gold); }
.wide, .booking-form button, .form-message { grid-column: 1 / -1; }
.captcha-box { display: flex; align-items: center; gap: 12px; background: rgba(0,0,0,.18); border: 1px solid var(--border); border-radius: 18px; padding: 14px; }
.captcha-box span { min-width: 180px; color: var(--gold); font-weight: 800; }
.form-message { margin: 0; color: var(--muted); }
.form-message.ok { color: var(--ok); }
.form-message.error { color: var(--error); }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.contact-grid a, .contact-grid span {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.contact-grid a:hover { color: var(--gold); }
.footer { text-align: center; color: var(--muted); padding: 36px 18px 50px; }

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

@media (max-width: 900px) {
  .site-header { align-items: flex-start; gap: 12px; flex-direction: column; }
  .nav { flex-wrap: wrap; gap: 12px 18px; }
  .hero, .cards-grid, .gallery-grid, .booking-form, .contact-grid { grid-template-columns: 1fr; }
  .captcha-box { flex-direction: column; align-items: stretch; }
  .price-row { flex-direction: column; }
}


.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(214, 180, 106, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(214, 180, 106, 0.16), transparent 34%),
    rgba(14, 59, 46, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.booking-cta h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 36px);
}

.booking-cta p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .booking-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}


.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.work-card {
  overflow: hidden;
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: 26px;
  background: rgba(14, 59, 46, 0.62);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.work-card div {
  padding: 16px;
}

.work-card h3 {
  margin: 0 0 8px;
  color: var(--gold);
}

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


/* Gallery fix: one clean responsive grid */
#works .works-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 18px !important;
  margin-top: 28px !important;
  align-items: stretch !important;
}

#works .work-card {
  overflow: hidden !important;
  border: 1px solid rgba(214, 180, 106, 0.22) !important;
  border-radius: 26px !important;
  background: rgba(14, 59, 46, 0.62) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20) !important;
}

#works .work-card img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  display: block !important;
  max-width: 100% !important;
}

#works .work-card-body,
#works .work-card div {
  padding: 16px !important;
}

#works .work-card h3 {
  margin: 0 0 8px !important;
  color: var(--gold) !important;
}

#works .work-card p {
  margin: 0 !important;
  color: var(--muted) !important;
}


.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: 26px;
  background: rgba(14, 59, 46, 0.62);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.contact-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.contact-card p {
  margin: 8px 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--gold);
}


.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.contact-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 180, 106, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(214, 180, 106, 0.10);
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 800;
}

.contact-action-link:hover {
  background: rgba(214, 180, 106, 0.18);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-card {
  border: 1px solid rgba(214, 180, 106, 0.22);
  border-radius: 26px;
  background: rgba(14, 59, 46, 0.62);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.20);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
}

.service-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.service-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 180, 106, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(214, 180, 106, 0.10);
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 800;
}


/* Public services/prices visual polish */
#services .section-title,
#prices .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#services .services-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 22px !important;
  max-width: 1160px !important;
  margin: 32px auto 0 !important;
}

#services .service-card {
  flex: 0 1 340px !important;
  width: 100% !important;
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  text-align: left !important;
  border-radius: 28px !important;
  padding: 24px !important;
}

#services .service-card h3 {
  min-height: 34px;
  line-height: 1.2;
}

#services .service-card p {
  line-height: 1.6;
}

#services .service-meta {
  margin-top: auto !important;
  padding-top: 16px !important;
}

#services .service-link {
  margin-top: 14px !important;
  width: fit-content !important;
}

#prices .price-list {
  width: min(980px, 100%) !important;
  margin: 32px auto 0 !important;
  display: grid !important;
  gap: 22px !important;
}

#prices .price-group {
  width: 100% !important;
  border-radius: 28px !important;
  padding: 26px !important;
}

#prices .price-group h3 {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 20px !important;
}

#prices .price-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 190px) !important;
  gap: 22px !important;
  align-items: center !important;
  padding: 18px 0 !important;
}

#prices .price-row > div:first-child {
  min-width: 0;
}

#prices .price-row strong {
  display: block;
  line-height: 1.35;
}

#prices .price-row p {
  line-height: 1.55;
  max-width: 640px;
}

#prices .price-value {
  text-align: right !important;
  font-size: 18px !important;
}

@media (max-width: 760px) {
  #services .service-card {
    flex-basis: 100% !important;
    max-width: 480px !important;
  }

  #prices .price-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  #prices .price-value {
    text-align: left !important;
  }
}


/* Premium public services and prices */
#services,
#prices {
  position: relative;
}

#services .section-title,
#prices .section-title {
  text-align: center !important;
  max-width: 780px;
  margin-left: auto !important;
  margin-right: auto !important;
}

#services .services-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px)) !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 22px !important;
  width: min(1120px, 100%) !important;
  margin: 34px auto 0 !important;
}

#services .luxury-service-card {
  position: relative;
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border-radius: 32px !important;
  padding: 26px !important;
  background:
    radial-gradient(circle at top left, rgba(214, 180, 106, .18), transparent 34%),
    linear-gradient(145deg, rgba(14, 59, 46, .92), rgba(3, 17, 13, .82)) !important;
  border: 1px solid rgba(214, 180, 106, .30) !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255,255,255,.05) !important;
}

#services .luxury-service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(214, 180, 106, .08);
  pointer-events: none;
}

#services .service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(214, 180, 106, .13);
  border: 1px solid rgba(214, 180, 106, .26);
  font-size: 26px;
}

#services .luxury-service-card h3 {
  min-height: auto !important;
  margin-bottom: 12px !important;
  color: var(--gold) !important;
  line-height: 1.18 !important;
  font-size: clamp(22px, 2vw, 28px) !important;
}

#services .luxury-service-card p {
  color: var(--muted) !important;
  line-height: 1.65 !important;
  margin-bottom: 18px !important;
}

#services .luxury-service-meta {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(214, 180, 106, .14);
}

#services .luxury-service-meta span {
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(246, 240, 230, .07);
  border: 1px solid rgba(214, 180, 106, .12);
}

#services .service-link {
  margin-top: 16px !important;
  width: 100% !important;
  justify-content: center !important;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, rgba(214, 180, 106, .96), rgba(246, 223, 157, .92)) !important;
  color: #071F18 !important;
  border: 0 !important;
  box-shadow: 0 12px 30px rgba(214, 180, 106, .16) !important;
}

#prices .price-list {
  width: min(1060px, 100%) !important;
  margin: 34px auto 0 !important;
  display: grid !important;
  gap: 26px !important;
}

#prices .luxury-price-group {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(214, 180, 106, .16), transparent 34%),
    linear-gradient(145deg, rgba(14, 59, 46, .94), rgba(3, 17, 13, .86));
  border: 1px solid rgba(214, 180, 106, .30);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255,255,255,.05);
}

#prices .luxury-price-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  text-align: center;
}

#prices .luxury-price-heading span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(214, 180, 106, .13);
  border: 1px solid rgba(214, 180, 106, .24);
  font-size: 24px;
}

#prices .luxury-price-heading h3 {
  margin: 0 !important;
  color: var(--gold) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  line-height: 1.15;
}

#prices .luxury-price-items {
  display: grid;
  gap: 12px;
}

#prices .luxury-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(246, 240, 230, .055);
  border: 1px solid rgba(214, 180, 106, .13);
}

#prices .luxury-price-main {
  min-width: 0;
}

#prices .luxury-price-main strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

#prices .luxury-price-main p {
  margin: 7px 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

#prices .price-duration {
  display: inline-flex;
  color: var(--muted);
  font-size: 14px;
}

#prices .luxury-price-value {
  min-width: 145px;
  text-align: center;
  color: #071F18;
  font-weight: 950;
  white-space: nowrap;
  border-radius: 999px;
  padding: 11px 15px;
  background: linear-gradient(135deg, rgba(214, 180, 106, .98), rgba(246, 223, 157, .92));
  box-shadow: 0 10px 24px rgba(214, 180, 106, .14);
}

@media (max-width: 760px) {
  #services .services-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  #services .luxury-service-card {
    min-height: auto !important;
  }

  #prices .luxury-price-group {
    padding: 20px;
  }

  #prices .luxury-price-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  #prices .luxury-price-value {
    width: fit-content;
    min-width: 0;
  }
}


/* Premium header navigation */
header,
.site-header,
.header,
.navbar {
  overflow: visible;
}

nav,
.header-nav,
.nav,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

nav a,
.header-nav a,
.nav a,
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid rgba(214, 180, 106, .18);
  background:
    linear-gradient(135deg, rgba(246, 240, 230, .075), rgba(214, 180, 106, .045));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.045),
    0 8px 24px rgba(0,0,0,.10);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

nav a:hover,
.header-nav a:hover,
.nav a:hover,
.site-nav a:hover {
  transform: translateY(-1px);
  color: var(--gold);
  border-color: rgba(214, 180, 106, .46);
  background:
    linear-gradient(135deg, rgba(214, 180, 106, .16), rgba(246, 240, 230, .08));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 34px rgba(0,0,0,.18);
}

nav a[href="/booking"],
.header-nav a[href="/booking"],
.nav a[href="/booking"],
.site-nav a[href="/booking"],
nav a[href^="/booking?"],
.header-nav a[href^="/booking?"],
.nav a[href^="/booking?"],
.site-nav a[href^="/booking?"] {
  color: #071F18 !important;
  border: 0;
  background: linear-gradient(135deg, rgba(214, 180, 106, .98), rgba(246, 223, 157, .94));
  box-shadow: 0 12px 32px rgba(214, 180, 106, .18);
}

nav a[href="/booking"]:hover,
.header-nav a[href="/booking"]:hover,
.nav a[href="/booking"]:hover,
.site-nav a[href="/booking"]:hover,
nav a[href^="/booking?"]:hover,
.header-nav a[href^="/booking?"]:hover,
.nav a[href^="/booking?"]:hover,
.site-nav a[href^="/booking?"]:hover {
  color: #071F18 !important;
  box-shadow: 0 16px 40px rgba(214, 180, 106, .28);
}

@media (max-width: 860px) {
  nav,
  .header-nav,
  .nav,
  .site-nav {
    justify-content: flex-start;
    gap: 8px;
  }

  nav a,
  .header-nav a,
  .nav a,
  .site-nav a {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 14px;
  }
}



/* Safe premium hero and contacts v2 */
.hero,
.hero-section,
.main-hero {
  max-width: 100%;
  overflow: hidden;
}

.hero .container,
.hero-inner,
.hero-content {
  max-width: min(1180px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.hero-title {
  color: var(--gold);
  text-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

.hero p,
.hero-subtitle,
.hero-description {
  max-width: 760px;
  line-height: 1.7;
  color: rgba(246, 240, 230, .84);
}

.hero img,
.hero-card,
.hero-panel,
.hero-visual,
.hero-form,
.hero aside {
  max-width: 100%;
  min-width: 0;
}

.hero input,
.hero select,
.hero textarea {
  max-width: 100%;
  min-width: 0;
}

.hero .btn,
.hero a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 8px 6px 0;
  white-space: normal;
}

/* Contacts: premium but safe */
#contacts .section-title {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

#contacts .contacts-grid {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: stretch;
}

#contacts .contact-card {
  min-width: 0;
  min-height: 170px;
  border-radius: 30px;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(214, 180, 106, .14), transparent 34%),
    linear-gradient(145deg, rgba(14, 59, 46, .90), rgba(3, 17, 13, .82));
  border: 1px solid rgba(214, 180, 106, .28);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255,255,255,.05);
}

#contacts .contact-card h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
}

#contacts .contact-card p {
  margin: 8px 0;
  color: rgba(246, 240, 230, .80);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

#contacts .contact-card a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

#contacts .contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

#contacts .contact-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  color: #071F18 !important;
  background: linear-gradient(135deg, rgba(214, 180, 106, .98), rgba(246, 223, 157, .92));
  box-shadow: 0 14px 34px rgba(214, 180, 106, .15);
  white-space: normal;
}

#contacts .contact-action-link:hover {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  #contacts .contacts-grid {
    grid-template-columns: 1fr;
  }

  #contacts .contact-card {
    padding: 20px;
  }
}


/* Fix feature/info cards readability */
.features,
.features-grid,
.benefits,
.benefits-grid,
.advantages,
.advantages-grid,
.about-grid,
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.feature-card,
.benefit-card,
.advantage-card,
.about-card,
.info-card {
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 24px !important;
  border-radius: 28px !important;
}

.feature-card h3,
.benefit-card h3,
.advantage-card h3,
.about-card h3,
.info-card h3 {
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
}

.feature-card p,
.benefit-card p,
.advantage-card p,
.about-card p,
.info-card p {
  max-width: none !important;
  line-height: 1.62 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: auto !important;
}

/* If there are exactly/roughly 3 small cards, keep them readable */
@media (min-width: 980px) {
  .features-grid,
  .benefits-grid,
  .advantages-grid,
  .about-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  }
}

/* Center route button in contacts */
#contacts .contact-actions {
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}

#contacts .contact-action-link {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  min-width: 190px !important;
  width: fit-content !important;
  max-width: 100% !important;
}


/* Route button: one line, centered */
#contacts .contact-actions {
  justify-content: center !important;
}

#contacts .contact-action-link {
  white-space: nowrap !important;
  width: auto !important;
  min-width: 220px !important;
  max-width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}


/* Managed about section */
#about .about-luxury {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  border-radius: 36px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at top left, rgba(214, 180, 106, .18), transparent 34%),
    linear-gradient(145deg, rgba(14, 59, 46, .94), rgba(3, 17, 13, .84));
  border: 1px solid rgba(214, 180, 106, .30);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255,255,255,.05);
}

#about .about-luxury-image {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(214, 180, 106, .25);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}

#about .about-luxury-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

#about .about-luxury-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: .04em;
  background:
    radial-gradient(circle at 30% 10%, rgba(214, 180, 106, .24), transparent 32%),
    rgba(3,17,13,.34);
}

#about .about-luxury-text {
  min-width: 0;
}

#about .about-luxury-text h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.08;
}

#about .about-luxury-text p {
  color: rgba(246, 240, 230, .82);
  line-height: 1.75;
  font-size: clamp(16px, 1.35vw, 19px);
  max-width: 720px;
}

@media (max-width: 860px) {
  #about .about-luxury {
    grid-template-columns: 1fr;
  }

  #about .about-luxury-image img,
  #about .about-luxury-placeholder {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }
}
