@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&display=swap');

:root {
  --chalk: #fbfaf6;
  --foam: #eef6f3;
  --sand: #e8dfd0;
  --deep-sea: #153f44;
  --tide: #147a7b;
  --brass: #bd8b3f;
  --ink: #17373a;
  --text-2: #496064;
  --text-3: #718184;
  --line: rgba(21, 63, 68, .15);
  --line-soft: rgba(21, 63, 68, .08);
  --control: #f2f3ee;
  --white: #fff;
  --shadow: 0 18px 55px rgba(28, 64, 65, .10);
  --radius-s: 8px;
  --radius-m: 18px;
  --radius-l: 34px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--chalk); font-family: "Manrope", sans-serif; line-height: 1.65; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--tide); font: 600 12px/1 "DM Sans", sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: "DM Sans", sans-serif; letter-spacing: -.045em; line-height: 1.05; margin: 0; font-weight: 500; }
h1 { font-size: clamp(56px, 7.8vw, 112px); max-width: 980px; }
h2 { font-size: clamp(40px, 5vw, 72px); max-width: 850px; }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
p { margin: 0; }
.lead { font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: var(--text-2); max-width: 640px; }
.small { color: var(--text-3); font-size: 14px; }
.section { padding: 112px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 54px; }
.section-head .lead { max-width: 430px; font-size: 17px; }

.site-header { position: absolute; z-index: 20; left: 0; right: 0; top: 0; color: var(--white); }
.site-header.inner { position: relative; color: var(--ink); background: var(--chalk); border-bottom: 1px solid var(--line-soft); }
.nav { height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 13px; font: 600 17px/1 "DM Sans", sans-serif; letter-spacing: .01em; }
.brand-mark { width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; position: relative; overflow: hidden; }
.brand-mark::after { content: ""; width: 31px; height: 9px; border-top: 1.5px solid currentColor; border-radius: 50%; transform: translateY(4px); }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14px; }
.nav-links a { position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 1px; background: currentColor; margin: 6px 0; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid var(--tide); border-radius: 999px; background: var(--tide); color: var(--white); font: 600 13px/1 "DM Sans", sans-serif; letter-spacing: .04em; transition: transform .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); background: var(--deep-sea); }
.btn-light { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.13); backdrop-filter: blur(10px); }
.btn-ghost { background: transparent; color: var(--tide); }
.btn-arrow::after { content: "↗"; font-size: 16px; }

.hero { min-height: 93vh; color: var(--white); position: relative; display: flex; align-items: end; overflow: hidden; background: var(--deep-sea); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,45,48,.62) 0%, rgba(11,45,48,.18) 62%, rgba(11,45,48,.08)), linear-gradient(0deg, rgba(10,39,41,.48), transparent 48%); z-index: 1; }
.hero-img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: 180px 0 84px; width: 100%; }
.hero .eyebrow { color: #d5eee9; }
.hero h1 em { font-style: normal; color: #d7eee9; }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-top: 45px; }
.hero-copy { max-width: 570px; font-size: 19px; color: rgba(255,255,255,.86); }
.booking-strip { position: relative; z-index: 3; width: min(calc(100% - 48px), var(--max)); margin: -36px auto 0; display: grid; grid-template-columns: repeat(3, 1fr) auto; background: var(--white); border-radius: var(--radius-m); padding: 13px; box-shadow: var(--shadow); }
.booking-item { padding: 11px 22px; border-right: 1px solid var(--line); }
.booking-item span { display: block; color: var(--text-3); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; }
.booking-item strong { font: 500 15px/1.4 "DM Sans", sans-serif; }
.booking-strip .btn { border-radius: 12px; padding-inline: 28px; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.intro-aside { border-top: 1px solid var(--line); padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.stat strong { font: 500 34px/1 "DM Sans", sans-serif; display: block; margin-bottom: 8px; }
.feature-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; }
.feature-card { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius-l); color: white; }
.feature-card.small-card { min-height: 420px; }
.feature-card img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.feature-card:hover img { transform: scale(1.03); }
.feature-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(10,40,43,.72)); }
.feature-copy { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 34px; }
.feature-copy p { color: rgba(255,255,255,.8); max-width: 400px; margin-top: 12px; }
.feature-side { display: flex; flex-direction: column; gap: 24px; padding-top: 74px; }
.feature-side .feature-card { flex: 1; }

.tide-section { background: var(--foam); position: relative; overflow: hidden; }
.tide-section::before, .page-hero::after { content: ""; position: absolute; width: 60vw; height: 120px; border: 1px solid rgba(20,122,123,.22); border-radius: 50%; top: 58px; right: -20vw; transform: rotate(-5deg); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.split-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { aspect-ratio: 4/5; object-fit: cover; }
.split-copy .lead { margin: 28px 0; }
.detail-list { list-style: none; padding: 0; margin: 30px 0 38px; border-top: 1px solid var(--line); }
.detail-list li { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail-list span { color: var(--text-3); }

.casino-tease { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--deep-sea); border-radius: var(--radius-l); overflow: hidden; color: var(--white); }
.casino-tease img { height: 100%; min-height: 540px; object-fit: cover; }
.casino-tease-copy { padding: clamp(40px, 6vw, 80px); align-self: center; }
.casino-tease-copy .eyebrow { color: #8dd0c9; }
.casino-tease-copy p { color: rgba(255,255,255,.72); margin: 24px 0 34px; }

.page-hero { position: relative; overflow: hidden; padding: 120px 0 90px; background: var(--foam); }
.page-hero .lead { margin-top: 30px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: end; }
.page-hero-note { border-left: 1px solid var(--tide); padding-left: 28px; color: var(--text-2); }
.wide-image { width: min(calc(100% - 48px), 1400px); margin: 0 auto; border-radius: var(--radius-l); overflow: hidden; }
.wide-image img { height: min(62vw, 690px); object-fit: cover; }
.casino-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.fact { background: var(--chalk); padding: 34px; }
.fact strong { display: block; font: 500 23px/1.2 "DM Sans",sans-serif; margin-bottom: 12px; }
.fact p { color: var(--text-3); font-size: 14px; }
.game-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.game-card { border-top: 1px solid var(--tide); padding: 28px 0; }
.game-no { color: var(--brass); font: 500 13px/1 "DM Sans",sans-serif; }
.game-card h3 { margin: 52px 0 18px; }
.game-card p { color: var(--text-2); }
.age-note { background: #f0e7d9; padding: 24px 28px; border-radius: var(--radius-m); display: flex; gap: 18px; align-items: center; margin-top: 34px; }
.age-mark { width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--brass); border-radius: 50%; font: 600 16px/1 "DM Sans",sans-serif; color: #8c6229; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: start; }
.contact-details { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.contact-row { padding: 21px 0; border-bottom: 1px solid var(--line); }
.contact-row span { display: block; color: var(--text-3); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.contact-form { background: var(--white); padding: clamp(28px, 5vw, 60px); border-radius: var(--radius-l); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid transparent; border-radius: var(--radius-s); background: var(--control); padding: 14px 16px; color: var(--ink); outline: 0; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--tide); box-shadow: 0 0 0 3px rgba(20,122,123,.12); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; }
.form-status { color: var(--tide); font-size: 14px; min-height: 24px; }

.site-footer { background: #e8efeb; padding: 76px 0 28px; }
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 80px; padding-bottom: 64px; }
.footer-brand p { max-width: 380px; color: var(--text-2); margin-top: 22px; }
.footer-col h4 { margin: 0 0 18px; font: 600 12px/1 "DM Sans",sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: var(--text-2); margin: 7px 0; font-size: 14px; }
.footer-col a:hover { color: var(--tide); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: var(--text-3); font-size: 12px; }

@media (max-width: 850px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .section { padding: 80px 0; }
  .nav { height: 76px; }
  .menu-toggle { display: block; z-index: 2; }
  .nav-links { display: none; position: absolute; top: 70px; left: 16px; right: 16px; padding: 28px; background: var(--chalk); color: var(--ink); border-radius: var(--radius-m); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links .btn { margin-top: 8px; }
  .hero { min-height: 820px; }
  .hero-content { padding: 150px 0 100px; }
  .hero-bottom, .section-head, .form-actions { align-items: start; flex-direction: column; }
  .booking-strip { width: calc(100% - 32px); grid-template-columns: 1fr 1fr; margin-top: -54px; }
  .booking-item:nth-child(2) { border-right: 0; }
  .booking-strip .btn { grid-column: 1/-1; }
  .intro-grid, .split, .casino-tease, .page-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-side { padding-top: 0; }
  .feature-card, .feature-card.small-card { min-height: 430px; }
  .casino-tease img { min-height: 400px; }
  .casino-facts, .game-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  h1 { font-size: 52px; }
  h2 { font-size: 39px; }
  .hero-copy { font-size: 17px; }
  .booking-strip { grid-template-columns: 1fr; }
  .booking-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .intro-aside, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .feature-copy { left: 24px; right: 24px; bottom: 24px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
