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

body {
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #060A0F;
  background: #FFFFFF;
  line-height: 1.5;
}

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

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

ul {
  list-style: disc;
  padding-left: 20px;
}

button {
  font-family: 'Manrope', sans-serif;
}

input,
textarea,
select {
  font-family: 'Manrope', sans-serif;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 15, 0.9);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-overlay.hidden {
  display: none;
}

.age-gate-dialog {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(6, 10, 15, 0.18);
  display: flex;
  flex-direction: column;
}

.age-gate-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #060A0F;
  color: #FFB689;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.age-gate-title {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.age-gate-text {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-blocked-dialog {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
}

.age-blocked-title {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}

.age-blocked-text {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #060A0F;
  color: #FFFFFF;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner a {
  color: #FFB689;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-primary {
  background: #FFB689;
  color: #060A0F;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #FFA36B;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #00434C;
  color: #00434C;
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #00434C;
  color: #FFFFFF;
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  background: transparent;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.btn-teal {
  background: #00434C;
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-teal:hover {
  background: #060A0F;
  transform: translateY(-2px);
}

.btn-age-confirm {
  background: #FFB689;
  color: #060A0F;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-age-confirm:hover {
  background: #FFA36B;
  transform: translateY(-1px);
}

.btn-age-decline {
  background: transparent;
  color: #060A0F;
  border: 2px solid rgba(6, 10, 15, 0.2);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-age-decline:hover {
  border-color: #060A0F;
}

.btn-cookie-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-cookie-accept {
  background: #FFB689;
  border: none;
  color: #060A0F;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: #FFA36B;
}

.btn-leave {
  display: inline-block;
  background: #00434C;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-leave:hover {
  background: #060A0F;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(6, 10, 15, 0.08);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: #060A0F;
}

.site-logo span {
  color: #FFB689;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.desktop-nav a {
  color: #060A0F;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #00434C;
}

.desktop-nav a.active {
  font-weight: 700;
  border-bottom: 2px solid #FFB689;
  padding-bottom: 4px;
}

.nav-cta {
  background: #00434C;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border-bottom: none !important;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #060A0F;
  color: #FFFFFF !important;
}

.nav-cta.active-cta {
  background: #060A0F;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #060A0F;
  display: block;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 8px 20px 24px;
  gap: 4px;
  background: #FFFFFF;
  border-top: 1px solid rgba(6, 10, 15, 0.08);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  padding: 12px 4px;
  color: #060A0F;
  font-weight: 600;
}

.mobile-drawer a.active {
  font-weight: 700;
}

.mobile-drawer .mobile-cta {
  margin-top: 8px;
  background: #00434C;
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 4px;
  border-radius: 10px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: min(640px, 88vh);
  display: flex;
  align-items: center;
  background: #060A0F;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 15, 0.75) 0%, rgba(6, 10, 15, 0.55) 45%, rgba(6, 10, 15, 0.92) 100%);
}

.hero-content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 20px 80px;
  width: 100%;
}

.hero-text {
  max-width: 640px;
  animation: fadeInUp 0.7s ease both;
}

.hero-tag {
  color: #FFB689;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

.page-banner {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  background: #060A0F;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 15, 0.7) 0%, rgba(6, 10, 15, 0.85) 100%);
}

.page-banner-content {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.page-banner-tag {
  color: #FFB689;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.page-banner-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
}

.contact-banner {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  background: #060A0F;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-pad-narrow {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.section-tag {
  color: #00434C;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-tag-white {
  color: #FFB689;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.section-heading {
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 38px);
  text-align: center;
}

.section-heading-left {
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  margin-bottom: 16px;
}

.section-heading-sm {
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
}

.section-center-header {
  text-align: center;
  margin-bottom: 44px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.grid-2col-news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.grid-4col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.explore-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 300px;
  display: block;
  transition: transform 0.3s;
}

.explore-card:hover {
  transform: translateY(-4px);
}

.explore-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 15, 0) 40%, rgba(6, 10, 15, 0.85) 100%);
}

.explore-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
}

.explore-card-info h3 {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
}

.explore-card-info span {
  color: #FFB689;
  font-weight: 700;
  font-size: 14px;
}

.membership-section {
  background: #00434C;
  padding: 80px 20px;
}

.membership-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.membership-header {
  max-width: 640px;
  margin-bottom: 52px;
}

.membership-title {
  color: #FFFFFF;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.membership-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.6;
}

.membership-steps {
  margin-bottom: 48px;
}

.membership-step-label {
  color: #FFB689;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.membership-step-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 15px;
}

.news-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(6, 10, 15, 0.1);
}

.news-card-image {
  height: 220px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 26px;
}

.news-card-body h3 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}

.news-card-body p {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.6;
  font-size: 15px;
}

.site-footer {
  background: #060A0F;
  color: #FFFFFF;
  padding: 64px 20px 28px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 44px;
}

.footer-logo {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #FFB689;
}

.footer-address {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.footer-heading {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFB689;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-social-links a:hover {
  color: #FFFFFF;
}

.footer-responsible {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
}

.footer-responsible-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #FFB689;
  color: #060A0F;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-responsible p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.footer-responsible a {
  color: #FFB689;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.text-body {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 14px;
}

.text-body-lg {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.8;
  font-size: 17px;
  max-width: 820px;
  margin-bottom: 64px;
}

.text-body-sm {
  color: rgba(6, 10, 15, 0.7);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 6px;
}

.text-body a {
  color: #00434C;
}

.text-white {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 14px;
}

.text-white-sm {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 15px;
}

.text-muted {
  color: rgba(6, 10, 15, 0.55);
  font-size: 13px;
  font-weight: 700;
}

.text-muted-date {
  color: rgba(6, 10, 15, 0.5);
  font-size: 13px;
  margin-bottom: 18px;
}

.img-rounded {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
}

.img-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded-lg {
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
}

.img-rounded-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teal-box {
  background: #00434C;
  border-radius: 20px;
  padding: 44px 32px;
}

.teal-box h2 {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 14px;
}

.teal-box p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.teal-box-center {
  text-align: center;
}

.teal-box-center p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.dark-box {
  background: #060A0F;
  border-radius: 20px;
  padding: 44px 32px;
  color: #FFFFFF;
}

.dark-box-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.dark-box-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #FFB689;
  color: #060A0F;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dark-box h2 {
  font-weight: 800;
  font-size: 24px;
}

.promo-box {
  background: #060A0F;
  border-radius: 20px;
  padding: 44px 32px;
  color: #FFFFFF;
}

.cta-section {
  background: #00434C;
  padding: 60px 20px;
  text-align: center;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 24px;
}

.bordered-card {
  border: 1px solid rgba(6, 10, 15, 0.1);
  border-radius: 18px;
  padding: 36px;
}

.bordered-card h2 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
}

.contact-info h2 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-label {
  font-weight: 700;
  font-size: 14px;
  color: #00434C;
  margin-bottom: 4px;
}

.contact-detail-value {
  color: rgba(6, 10, 15, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.contact-detail-value a {
  color: rgba(6, 10, 15, 0.75);
}

.contact-map {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #F2F0EC;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-wrapper {
  background: #F7F5F1;
  border-radius: 20px;
  padding: 36px;
}

.form-wrapper h2 {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(6, 10, 15, 0.15);
  font-size: 15px;
  color: #060A0F;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #00434C;
}

.enquiry-form textarea {
  resize: vertical;
}

.form-success {
  color: #00434C;
  font-weight: 700;
  font-size: 14px;
  display: none;
}

.form-success.visible {
  display: block;
}

.legal-section {
  margin-bottom: 56px;
}

.legal-section h2 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.legal-text {
  color: rgba(6, 10, 15, 0.75);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-text a {
  color: #00434C;
}

.legal-text strong {
  font-weight: 700;
}

.legal-list {
  color: rgba(6, 10, 15, 0.75);
  line-height: 1.9;
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-card {
  border: 1px solid rgba(6, 10, 15, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
}

.legal-card-title {
  font-weight: 700;
  font-size: 15px;
}

.legal-card p {
  color: rgba(6, 10, 15, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.legal-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.mb-0 { margin-bottom: 0; }
.mb-6 { margin-bottom: 6px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .order-1,
  .order-2 {
    order: unset;
  }

  .grid-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }

  .grid-4col {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 80px 20px 60px;
  }

  .page-banner {
    height: 260px;
  }

  .contact-banner {
    height: 220px;
  }

  .membership-section {
    padding: 60px 20px;
  }

  .section-pad {
    padding: 60px 20px;
  }

  .teal-box,
  .dark-box,
  .promo-box {
    padding: 32px 24px;
  }

  .form-wrapper {
    padding: 28px 20px;
  }

  .bordered-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-4col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .footer-responsible {
    flex-direction: column;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .img-rounded,
  .img-rounded-lg {
    height: 260px;
  }

  .explore-card {
    height: 240px;
  }

  .promo-box {
    padding: 28px 18px;
  }
}

@media (max-width: 380px) {
  .header-inner {
    padding: 14px 16px;
  }

  .site-logo {
    font-size: 17px;
  }

  .hero-content {
    padding: 60px 16px 50px;
  }

  .section-pad {
    padding: 48px 16px;
  }

  .membership-section {
    padding: 48px 16px;
  }

  .cta-section {
    padding: 48px 16px;
  }

  .page-banner-content {
    padding: 0 16px;
  }

  .mobile-drawer {
    padding: 8px 16px 20px;
  }

  .age-gate-dialog {
    padding: 28px 20px;
  }

  .form-wrapper {
    padding: 24px 16px;
  }

  .teal-box,
  .dark-box,
  .promo-box {
    padding: 28px 16px;
  }

  .bordered-card {
    padding: 24px 16px;
  }

  .footer-responsible {
    padding: 16px;
  }

  .btn-primary,
  .btn-teal {
    padding: 12px 22px;
    font-size: 14px;
  }

  .btn-secondary,
  .btn-outline-white {
    padding: 10px 20px;
    font-size: 14px;
  }
}
