/* ── Oasis Veil Casino Hotel — Shared Styles ── */

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

:root {
  --cream:        #FAF6F0;
  --sand:         #E8DFD3;
  --sand-deep:    #D9CEC0;
  --dune:         #C9B99A;
  --terracotta:   #C17F59;
  --terracotta-s: #D4A088;
  --palm:         #5C7A6B;
  --palm-deep:    #3D5749;
  --oasis:        #6A9A96;
  --oasis-light:  #8BB8B4;
  --dusk:         #5E4A55;
  --rose-dusk:    #B8929A;
  --evening:      #3D2E38;
  --evening-soft: #4E3D48;
  --text:         #3E3630;
  --text-light:   #FAF6F0;
  --muted:        #8A7F75;
  --border:       rgba(193, 127, 89, 0.2);
  --border-soft:  rgba(62, 54, 48, 0.1);
  --shadow:       0 20px 60px rgba(62, 54, 48, 0.1);
  --shadow-soft:  0 8px 28px rgba(62, 54, 48, 0.06);
  --radius:       28px;
  --radius-sm:    16px;
  --radius-pill:  999px;
  --px:           clamp(20px, 4vw, 40px);
  --section-y:    clamp(72px, 10vw, 112px);
  --max-w:        1160px;
  --header-h:     76px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── Top ribbon ── */
.top-ribbon {
  position: relative;
  z-index: 220;
  background: var(--palm-deep);
  color: var(--sand);
  text-align: center;
  padding: 9px var(--px);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.top-ribbon em { color: var(--terracotta-s); font-style: normal; font-weight: 500; }
.top-ribbon span { opacity: 0.4; margin: 0 10px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--palm-deep);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desk {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-desk a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-desk a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width var(--transition), left var(--transition);
}

.nav-desk a:hover,
.nav-desk a.active { color: var(--palm-deep); }
.nav-desk a:hover::after,
.nav-desk a.active::after { width: 100%; left: 0; }

.header-cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 210;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--palm-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer a {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--palm-deep);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-warm {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-warm:hover { background: #B0724E; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 246, 240, 0.55);
}
.btn-outline:hover {
  background: rgba(250, 246, 240, 0.12);
  border-color: var(--cream);
}

.btn-soft {
  background: var(--palm);
  color: var(--cream);
}
.btn-soft:hover { background: var(--palm-deep); }

.btn-sand {
  background: var(--sand);
  color: var(--palm-deep);
}
.btn-sand:hover { background: var(--sand-deep); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(520px, 88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.06); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(61, 46, 56, 0.72) 0%, rgba(61, 46, 56, 0.25) 45%, rgba(61, 46, 56, 0.08) 100%),
    linear-gradient(135deg, rgba(106, 154, 150, 0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 96px) var(--px);
  max-width: 720px;
  color: var(--text-light);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-s);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 540px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Page hero (casino) ── */
.page-hero {
  position: relative;
  min-height: clamp(380px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}

.page-hero .hero-overlay {
  background:
    linear-gradient(to top, rgba(61, 46, 56, 0.82) 0%, rgba(61, 46, 56, 0.4) 50%, rgba(94, 74, 85, 0.2) 100%);
}

/* ── Sections ── */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--palm-deep);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header.center {
  text-align: center;
}
.section-header.center .section-lead { margin: 0 auto; }

/* Flow divider */
.flow-divider {
  height: 48px;
  background: linear-gradient(to bottom, var(--cream), var(--sand));
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.flow-divider.reverse {
  background: linear-gradient(to top, var(--cream), var(--sand));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  margin-top: 0;
  margin-bottom: -24px;
}

.section-sand { background: var(--sand); }
.section-sand .flow-divider { background: linear-gradient(to bottom, var(--sand), var(--cream)); }
.section-sand .flow-divider.reverse { background: linear-gradient(to top, var(--sand), var(--cream)); }

/* ── Split layout ── */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split-copy p + p { margin-top: 1em; color: var(--muted); }

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-image.offset {
  transform: translateY(24px);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-image {
  overflow: hidden;
}
.card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.04); }

.card-body {
  padding: clamp(24px, 3vw, 36px);
}
.card-body h3 {
  font-size: 1.35rem;
  color: var(--palm-deep);
  margin-bottom: 12px;
}
.card-body p { color: var(--muted); font-size: 0.95rem; }

.amenity-list {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.amenity-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.amenity-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oasis);
}

/* ── Feature strip ── */
.feature-strip {
  display: grid;
  gap: 20px;
}

.feature-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--border-soft);
}
.feature-item h3 {
  font-size: 1.1rem;
  color: var(--palm-deep);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ── Mosaic gallery ── */
.mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.mosaic-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic-item:first-child {
  grid-row: span 2;
}
.mosaic-item:first-child img { aspect-ratio: 3/4; min-height: 100%; }
.mosaic-item:not(:first-child) img { aspect-ratio: 16/10; }

/* ── Evening bridge ── */
.evening-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.evening-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.evening-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.evening-copy p { color: var(--muted); margin-top: 1em; }
.text-link {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: 1px solid rgba(193, 127, 89, 0.35);
  transition: border-color var(--transition);
}
.text-link:hover { border-color: var(--terracotta); }

/* ── CTA band ── */
.cta-band {
  text-align: center;
  padding: clamp(64px, 10vw, 96px) var(--px);
  background:
    radial-gradient(ellipse at 30% 50%, rgba(106, 154, 150, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(193, 127, 89, 0.1) 0%, transparent 60%),
    var(--sand);
  border-radius: var(--radius);
  margin: 0 var(--px) var(--section-y);
  max-width: calc(var(--max-w) + 80px);
  margin-left: auto;
  margin-right: auto;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--palm-deep);
  margin-bottom: 16px;
}
.cta-band p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── Casino page ── */
.page-casino {
  background: var(--evening);
  color: var(--sand);
}
.page-casino .site-header {
  background: rgba(61, 46, 56, 0.9);
  border-bottom-color: rgba(250, 246, 240, 0.08);
}
.page-casino .logo-name { color: var(--sand); }
.page-casino .logo-sub { color: rgba(232, 223, 211, 0.5); }
.page-casino .nav-desk a { color: rgba(232, 223, 211, 0.55); }
.page-casino .nav-desk a:hover,
.page-casino .nav-desk a.active { color: var(--sand); }
.page-casino .burger span { background: var(--sand); }
.page-casino .top-ribbon { background: var(--evening-soft); }

.page-casino .section { color: var(--sand); }
.page-casino .section-title { color: var(--sand); }
.page-casino .section-lead,
.page-casino .section-label { color: var(--rose-dusk); }
.page-casino .section-label { color: var(--terracotta-s); }

.casino-experience {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
}

.casino-panel {
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.1);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}
.casino-panel h3 {
  font-size: 1.3rem;
  color: var(--terracotta-s);
  margin-bottom: 20px;
}
.casino-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.casino-panel li {
  font-size: 0.95rem;
  color: rgba(232, 223, 211, 0.75);
  padding-left: 20px;
  position: relative;
}
.casino-panel li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--oasis-light);
}

.policy-grid {
  display: grid;
  gap: 20px;
}
.policy-item {
  background: rgba(250, 246, 240, 0.05);
  border-radius: var(--radius-sm);
  padding: 28px;
  border: 1px solid rgba(250, 246, 240, 0.08);
}
.policy-item h4 {
  font-size: 1rem;
  color: var(--terracotta-s);
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.policy-item p {
  font-size: 0.92rem;
  color: rgba(232, 223, 211, 0.65);
  line-height: 1.65;
}

.casino-return {
  text-align: center;
  padding: clamp(56px, 8vw, 80px) var(--px);
  border-top: 1px solid rgba(250, 246, 240, 0.08);
}
.casino-return p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--sand);
  margin-bottom: 28px;
  font-style: italic;
}

.page-casino .site-footer {
  background: var(--evening);
  border-top-color: rgba(250, 246, 240, 0.08);
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.contact-form-wrap h2 {
  font-size: 1.5rem;
  color: var(--palm-deep);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--palm-deep);
  margin-bottom: 8px;
}
.optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sand);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--oasis);
  background: var(--cream);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #C45C5C;
}
.form-error {
  display: block;
  font-size: 0.82rem;
  color: #C45C5C;
  margin-top: 6px;
  min-height: 1.2em;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(92, 122, 107, 0.12);
  border-radius: var(--radius-sm);
  color: var(--palm-deep);
  font-weight: 600;
  font-size: 0.92rem;
}
.form-success.visible { display: block; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-block {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 28px;
}
.detail-block h3 {
  font-size: 1rem;
  color: var(--palm-deep);
  margin-bottom: 12px;
}
.detail-block p,
.detail-block address {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}
.detail-block p + p { margin-top: 6px; }
.detail-block a {
  color: var(--terracotta);
  transition: color var(--transition);
}
.detail-block a:hover { color: var(--palm-deep); }

.guidance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guidance-list li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.guidance-list strong { color: var(--text); font-weight: 600; }

/* ── Footer ── */
.site-footer {
  background: var(--palm-deep);
  color: var(--sand);
  padding: clamp(56px, 8vw, 80px) 0 0;
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 48px;
}

.footer-brand .logo-name { color: var(--sand); font-size: 1.3rem; }
.footer-brand .logo-sub { color: rgba(232, 223, 211, 0.45); margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(232, 223, 211, 0.6);
  max-width: 280px;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-s);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.88rem;
  color: rgba(232, 223, 211, 0.65);
  margin-bottom: 10px;
}
.footer-col a {
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--sand); }

.footer-base {
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  padding: 20px var(--px);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(232, 223, 211, 0.4);
  letter-spacing: 0.04em;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .policy-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .nav-desk { display: flex; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .evening-grid { grid-template-columns: 1.1fr 1fr; }
  .casino-experience { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .mosaic { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 1024px) {
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}
