/* ═══════════════════════════════════════════
   AKIAVIC NIGERIA LIMITED — WEBSITE STYLES
   Colors: White · Royal Blue #1B3A8B · Gold #C9A227
══════════════════════════════════════════════ */

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

:root {
  --blue:       #0B2C6B;
  --blue-dark:  #06163B;
  --blue-mid:   #1B3E91;
  --blue-light: #EEF2FB;
  --gold:       #C9A227;
  --gold-light: #E8C84A;
  --gold-pale:  #FBF5E0;
  --whatsapp:   #25D366;
  --whatsapp-dark: #128C4A;
  --whatsapp-soft: #E7F8EE;
  --white:      #FFFFFF;
  --off-white:  #F9F8F5;
  --ink:        #1A1A2E;
  --ink-mid:    #4A4A6A;
  --ink-light:  #8888A4;
  --border:     #E2E2EE;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Manrope', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 8px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 12px rgba(27, 58, 139, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 58, 139, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 58, 139, 0.16);
  --aso-oke: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
section,
.article-full,
#booking { scroll-margin-top: 104px; }

/* ── Typography ───────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.section-header::after {
  content: "";
  display: block;
  width: 132px;
  height: 5px;
  margin: 22px auto 0;
  background: var(--aso-oke);
  background-size: 96px 5px;
  border-radius: 999px;
  animation: asoWeave 5s linear infinite;
}

.aso-line,
.aso-band {
  background-color: var(--blue);
  background-image: var(--aso-oke);
  background-size: 34px 34px, 17px 17px, 100% 100%, 100% 100%;
  background-position: 0 0, 8px 8px, 0 0, 0 0;
  animation: asoWeave 18s linear infinite;
}
.aso-line { height: 8px; }
.aso-line--hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
}
.aso-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  opacity: 0.95;
}
.section-header .section-sub { margin: 0 auto; }
.section-note {
  font-size: 13px;
  color: var(--ink-light);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.body-lg { font-size: 18px; line-height: 1.75; color: var(--ink-mid); margin-bottom: 20px; }
.body-md { font-size: 16px; line-height: 1.75; color: var(--ink-mid); margin-bottom: 24px; }

/* ── Buttons ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Reveal animation ─────────────────── */
[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 0.8s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: linear-gradient(180deg, rgba(6,22,59,0.72), rgba(6,22,59,0.18));
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(27, 58, 139, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(6,22,59,0.18);
  transition: filter 0.35s var(--ease);
}
#nav.scrolled .nav-logo img { box-shadow: 0 8px 24px rgba(27,58,139,0.12); }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.nav-brand-copy strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}
.nav-brand-copy small {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.76;
  margin-top: 4px;
}
#nav.scrolled .nav-brand-copy { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.14); }
.nav-links li a.active,
.nav-links li a.nav-active { color: var(--white); background: rgba(201,162,39,0.34); }
#nav.scrolled .nav-links li a { color: var(--ink); }
#nav.scrolled .nav-links li a:hover { color: var(--blue); background: var(--blue-light); }
#nav.scrolled .nav-links li a.active,
#nav.scrolled .nav-links li a.nav-active { color: var(--blue); background: var(--gold-pale); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
#nav.scrolled .nav-toggle span { background: var(--ink); }
.ak-mobile-cta {
  display: none;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards, heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
@keyframes heroDrift {
  from { object-position: center 28%; }
  to { object-position: center 34%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 22, 59, 0.82) 0%,
    rgba(11, 44, 107, 0.54) 44%,
    rgba(6, 22, 59, 0.86) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  padding: 190px 24px 80px;
  margin: 0 auto;
  animation: fadeUp 1s 0.3s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-greeting {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(232,200,74,0.55);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(18,39,102,0.28);
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 18px;
  animation: greetingFloat 4.5s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(60px, 7.2vw, 104px);
  font-weight: 600;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 820px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 620px;
}
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.hero-meta-row span {
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.22);
  border-left-color: var(--gold);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  background: rgba(6,22,59,0.24);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s var(--ease) both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--blue);
  padding: 32px 0;
}
.stats-bar::after {
  content: "";
  display: block;
  height: 6px;
  margin-top: 32px;
  background: var(--aso-oke);
  background-size: 96px 6px;
  opacity: 0.9;
  animation: asoWeave 6s linear infinite;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.culture-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.culture-strip-inner {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
}
.culture-strip-inner span {
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(226,226,238,0.9);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(18,39,102,0.05);
  animation: greetingFloat 5s ease-in-out infinite;
}
.culture-strip-inner span:nth-child(2) { animation-delay: 0.35s; }
.culture-strip-inner span:nth-child(3) { animation-delay: 0.7s; }
.culture-strip-inner span:nth-child(4) { animation-delay: 1.05s; }
.culture-strip-inner span:nth-child(5) { animation-delay: 1.4s; }

@keyframes asoWeave {
  from { background-position: 0 0; }
  to { background-position: 96px 0; }
}
@keyframes greetingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes cardRise {
  from { transform: translateY(22px) scale(0.985); }
  to { transform: translateY(0) scale(1); }
}
@keyframes softPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(18, 39, 102, 0.06); }
  50% { box-shadow: 0 16px 38px rgba(18, 39, 102, 0.1); }
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
}

.quick-booking {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding-top: 24px;
  background: var(--white);
}
.booking-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr 0.72fr auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(226,226,238,0.9);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(18,39,102,0.16);
  animation: cardRise 0.8s var(--ease) both;
}
.booking-panel-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 6px;
}
.booking-panel-head span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.booking-panel-head strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field label {
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 700;
}
.booking-field input,
.booking-field select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
}
.booking-submit {
  height: 46px;
  justify-content: center;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-strip-inner div {
  padding: 24px 28px;
  border-left: 1px solid var(--border);
}
.trust-strip-inner div:last-child { border-right: 1px solid var(--border); }
.trust-strip-inner strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.trust-strip-inner span {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}
.value strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.value p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin: 0; }

.about-img-stack {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-img-main { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.badge-year { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(26,26,46,0.7); }
.badge-num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; }
.badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(26,26,46,0.7); margin-top: 2px; }

/* ══════════════════════════════════════
   ROOMS
══════════════════════════════════════ */
.rooms {
  background: var(--white);
  position: relative;
  padding-top: 104px;
}
.rooms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  background-color: var(--blue);
  background-image: var(--aso-oke);
  background-size: 34px 34px, 17px 17px, 100% 100%, 100% 100%;
  animation: asoWeave 18s linear infinite;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 102, 0.06);
  border: 1px solid rgba(226,226,238,0.9);
  display: flex;
  flex-direction: column;
}
.rooms-grid.revealed .room-card {
  animation: cardRise 0.8s var(--ease) both;
}
.rooms-grid.revealed .room-card:nth-child(2) { animation-delay: 0.08s; }
.rooms-grid.revealed .room-card:nth-child(3) { animation-delay: 0.16s; }
.rooms-grid.revealed .room-card:nth-child(4) { animation-delay: 0.24s; }
.rooms-grid.revealed .room-card:nth-child(5) { animation-delay: 0.32s; }
.rooms-grid.revealed .room-card:nth-child(6) { animation-delay: 0.4s; }
.rooms-grid.revealed .room-card:nth-child(7) { animation-delay: 0.48s; }
.rooms-grid.revealed .room-card:nth-child(8) { animation-delay: 0.56s; }

.room-card--rate {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.room-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 540px;
}
.room-card--featured .room-img-wrap { aspect-ratio: unset; }

.room-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.room-rate-panel {
  position: relative;
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0)),
    radial-gradient(circle at 18% 20%, rgba(201,162,39,0.36), transparent 32%);
}
.room-rate-label {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.room-rate-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

.room-slideshow {
  position: absolute;
  inset: 0;
}
.room-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: roomSlide 25s infinite;
  object-position: center 52%;
}
.room-slideshow img:nth-child(2) { animation-delay: 5s; }
.room-slideshow img:nth-child(3) { animation-delay: 10s; }
.room-slideshow img:nth-child(4) { animation-delay: 15s; }
.room-slideshow img:nth-child(5) { animation-delay: 20s; }
@keyframes roomSlide {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}
.ak-room-gallery {
  display: grid;
  grid-template-columns: 1fr 0.32fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  background: var(--blue-dark);
}
.ak-room-gallery img {
  position: static;
  opacity: 1;
  animation: none;
  border-radius: 6px;
  object-position: center;
}
.ak-room-gallery img:first-child {
  grid-row: 1 / -1;
  min-height: 100%;
  object-position: center 58%;
}
.ak-room-gallery img:nth-child(5) {
  display: none;
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.room-info {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card--featured .room-info {
  justify-content: center;
  padding: 44px;
}
.room-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.room-card--featured .room-info h3 { font-size: 30px; }
.room-info p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; flex: 1; }
.room-card--featured .room-info p {
  flex: 0;
  font-size: 15px;
  max-width: 440px;
}
.room-card--rate .room-info h3,
.room-card--rate .room-info p,
.room-card--rate .rate-amount,
.room-card--rate .rate-per { color: var(--white); }
.room-card--rate .room-info p { color: rgba(255,255,255,0.78); }
.room-card--rate .room-footer { border-top-color: rgba(255,255,255,0.16); }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.rate-amount {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}
.rate-per { font-size: 13px; color: var(--ink-light); margin-left: 2px; }

/* rates table */
.room-rates-expand { margin-top: 34px; }
.rates-details summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  user-select: none;
  transition: background 0.2s;
}
.rates-details summary:hover { background: var(--blue-light); }
.rates-details[open] summary { border-radius: 8px 8px 0 0; border-bottom-color: var(--border); }

.rates-table-wrap { border: 1px solid var(--border); border-top: none; border-radius: 0 0 8px 8px; overflow: hidden; background: var(--white); }
.rates-table { width: 100%; border-collapse: collapse; }
.rates-table th, .rates-table td {
  padding: 12px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.rates-table th { background: var(--blue-light); color: var(--blue); font-weight: 600; }
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr.highlight td { font-weight: 600; color: var(--blue); background: var(--gold-pale); }
.rates-notes {
  padding: 18px 20px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.rates-notes h4 {
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.rates-notes li {
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 6px;
}

/* ══════════════════════════════════════
   POOL FEATURE
══════════════════════════════════════ */
.pool-feature {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pool-bg {
  position: absolute;
  inset: 0;
  object-position: center 60%;
}
.pool-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,39,102,0.82) 0%, rgba(18,39,102,0.6) 100%);
}
.pool-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}
.pool-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 36px);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 20px;
}
.pool-content cite {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ══════════════════════════════════════
   FACILITIES
══════════════════════════════════════ */
.facilities {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}
.facilities .container { position: relative; z-index: 1; }
.facilities .section-title { color: var(--white); }
.facilities .section-sub { color: rgba(255,255,255,0.68); margin: 0 auto; }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  align-items: stretch;
}
.facility-card {
  position: relative;
  background: var(--blue);
  border-radius: 0;
  padding: 0 0 28px;
  text-align: left;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.facilities-grid.revealed .facility-card {
  animation: cardRise 0.75s var(--ease) both;
}
.facilities-grid.revealed .facility-card:nth-child(2) { animation-delay: 0.08s; }
.facilities-grid.revealed .facility-card:nth-child(3) { animation-delay: 0.16s; }
.facilities-grid.revealed .facility-card:nth-child(4) { animation-delay: 0.24s; }
.facilities-grid.revealed .facility-card:nth-child(5) { animation-delay: 0.32s; }
.facilities-grid.revealed .facility-card:nth-child(6) { animation-delay: 0.4s; }
.facility-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  opacity: 0.88;
}
.facility-service-panel {
  min-height: 220px;
  padding: 26px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(6,22,59,0.98), rgba(11,44,107,0.95)),
    radial-gradient(circle at 18% 20%, rgba(201,162,39,0.36), transparent 32%);
  color: var(--white);
}
.facility-service-panel span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.facility-service-panel strong {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
}
.facility-icon {
  width: 72px;
  height: 72px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue);
}
.facility-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  padding: 0 24px;
}
.facility-card p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.65; padding: 0 24px; margin-bottom: 0; }

/* ══════════════════════════════════════
   WHY AKIAVIC
══════════════════════════════════════ */
.why-akiavic {
  background: var(--blue);
  padding: 96px 0;
}
.why-akiavic .section-eyebrow { color: var(--gold); }
.why-akiavic .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 0;
}
.why-item {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
}
.why-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,162,39,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.why-item p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ══════════════════════════════════════
   BUSINESSES
══════════════════════════════════════ */
.businesses { background: var(--white); }
.catfish-sales {
  background:
    linear-gradient(180deg, rgba(251,245,224,0.72), rgba(255,255,255,1));
}
.businesses-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.biz-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(226,226,238,0.9);
  box-shadow: 0 10px 28px rgba(18, 39, 102, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.businesses-grid.revealed .biz-card {
  animation: cardRise 0.8s var(--ease) both;
}
.businesses-grid.revealed .biz-card:nth-child(2) { animation-delay: 0.14s; }

.biz-card--hotel { position: relative; min-height: 480px; }
.catfish-sales-grid { grid-template-columns: 1.25fr 0.75fr; }
.catfish-hero-card .biz-card-img img { object-position: center 50%; }
.catfish-sales .biz-card--sm {
  padding: 34px 30px;
  justify-content: center;
  gap: 18px;
}
.catfish-sales .biz-card--sm h3 {
  font-size: 30px;
  line-height: 1.08;
}
.biz-card-img {
  position: absolute;
  inset: 0;
}
.biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,39,102,0.88) 0%, transparent 60%);
}
.biz-card--hotel .biz-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: var(--white);
}
.biz-card--hotel h3 { color: var(--white); font-size: 26px; }
.biz-card--hotel p { color: rgba(255,255,255,0.8); }
.biz-card--hotel .biz-link { color: var(--gold); }

.biz-card--sm {
  padding: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.biz-card--sm .biz-tag,
.biz-card--sm h3,
.biz-card--sm p,
.biz-card--sm .biz-link,
.biz-card--sm .biz-order-btn {
  margin-left: 28px;
  margin-right: 28px;
}
.biz-card--sm .biz-tag { margin-top: 28px; }
.biz-card--sm .biz-link,
.biz-card--sm .biz-order-btn { margin-bottom: 28px; }
.biz-sm-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.biz-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.biz-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 4px;
}
.biz-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.biz-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; flex: 1; }
.biz-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
  transition: color 0.2s;
}
.biz-link:hover { color: var(--gold); }
.biz-link.wa-link { color: var(--whatsapp-dark); }
.biz-link.wa-link:hover { color: var(--whatsapp); }

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team { background: var(--off-white); }
.team-grid {
  display: grid;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.team-team {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: stretch;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid rgba(226,226,238,0.9);
  box-shadow: 0 10px 28px rgba(18, 39, 102, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-grid.revealed .team-card {
  animation: cardRise 0.75s var(--ease) both;
}
.team-grid.revealed .team-card--chairman { animation-duration: 0.9s; }
.team-grid.revealed .team-team .team-card:nth-child(2) { animation-delay: 0.08s; }
.team-grid.revealed .team-team .team-card:nth-child(3) { animation-delay: 0.16s; }
.team-grid.revealed .team-team .team-card:nth-child(4) { animation-delay: 0.24s; }
.team-grid.revealed .team-team .team-card:nth-child(5) { animation-delay: 0.32s; }
.team-team .team-card {
  grid-column: span 2;
  padding: 38px 24px;
}
.team-team .team-card:nth-child(4) { grid-column: 2 / span 2; }
.team-team .team-card:nth-child(5) { grid-column: 4 / span 2; }
.team-card--chairman {
  max-width: 620px;
  margin: 0 auto;
  padding: 38px 42px;
  border-color: rgba(205, 166, 36, 0.5);
  box-shadow: 0 18px 44px rgba(15, 34, 74, 0.08);
}

.team-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}
.team-team .team-avatar {
  width: 124px;
  height: 124px;
  margin-bottom: 20px;
}
.team-card--chairman .team-avatar {
  width: 146px;
  height: 146px;
}
.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.team-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}
.team-team .avatar-placeholder {
  width: 124px;
  height: 124px;
}
.team-card--chairman .avatar-placeholder {
  width: 146px;
  height: 146px;
}
.avatar-initials {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.team-team .avatar-initials { font-size: 26px; }
.team-card--chairman .avatar-initials { font-size: 31px; }
.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.5;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.team-card--chairman .team-name { font-size: 25px; }
.team-team .team-name { font-size: 20px; }
.team-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.team-team .team-bio { display: none; }
.team-card--chairman .team-bio {
  max-width: 460px;
  margin: 0 auto;
  font-size: 15px;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(226,226,238,0.9);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 39, 102, 0.05);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.blog-grid.revealed .blog-card {
  animation: cardRise 0.8s var(--ease) both;
}
.blog-grid.revealed .blog-card:nth-child(2) { animation-delay: 0.12s; }
.blog-grid.revealed .blog-card:nth-child(3) { animation-delay: 0.24s; }
.blog-card--featured { }

.blog-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card--featured .blog-img-wrap { aspect-ratio: 4/3; }

.hospitality-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--blue-light);
}
.hospitality-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hospitalitySlide 12s infinite;
}
.hospitality-slideshow > img:nth-child(2) { animation-delay: 4s; }
.hospitality-slideshow > img:nth-child(3) { animation-delay: 8s; }
.slide-dot {
  position: absolute;
  bottom: 14px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  animation: slideDot 12s infinite;
}
.slide-dot--one { left: calc(50% - 34px); }
.slide-dot--two { left: calc(50% - 11px); animation-delay: 4s; }
.slide-dot--three { left: calc(50% + 12px); animation-delay: 8s; }
@keyframes hospitalitySlide {
  0% { opacity: 0; transform: scale(1.04) translateX(18px); }
  8%, 31% { opacity: 1; transform: scale(1) translateX(0); }
  39%, 100% { opacity: 0; transform: scale(1.02) translateX(-18px); }
}
@keyframes slideDot {
  0%, 39%, 100% { background: rgba(255,255,255,0.45); }
  8%, 31% { background: var(--gold); }
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.blog-content { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 12px; color: var(--ink-light); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.blog-card--featured .blog-content h3 { font-size: 22px; }
.blog-content p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; flex: 1; }
.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}
.blog-read-more:hover { color: var(--gold); }
.blog-cta { text-align: center; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-details { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.contact-item a:hover { color: var(--blue); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-head {
  padding-bottom: 4px;
}
.contact-form-head h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.contact-form-head p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 58, 139, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-light); }
.form-status {
  min-height: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mid);
  text-align: center;
}
.form-status.is-success { color: var(--whatsapp-dark); }
.form-status.is-error { color: #A23B3B; }
.ak-form-hint {
  margin: -2px 0 0;
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.55;
}
.ak-form-hint a {
  color: var(--whatsapp-dark);
  font-weight: 800;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo {
  height: 74px;
  width: 74px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-socials a[aria-label="WhatsApp"]:hover {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.staff-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 600;
}
.staff-login-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.34);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-stack { aspect-ratio: 16/9; }

  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .room-card--featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .room-card--featured .room-img-wrap { aspect-ratio: 16/9; }

  .businesses-grid { grid-template-columns: 1fr 1fr; }
  .biz-card--hotel { grid-column: 1 / -1; min-height: 360px; }

  .team-team { grid-template-columns: repeat(2, 1fr); }
  .team-team .team-card,
  .team-team .team-card:nth-child(4),
  .team-team .team-card:nth-child(5) { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-panel { grid-template-columns: 1fr 1fr; }
  .booking-panel-head,
  .booking-submit { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { color: var(--ink) !important; display: block; padding: 12px 24px; }
  .nav-links li a:hover { background: var(--blue-light) !important; color: var(--blue) !important; }
  .nav-links li a.active,
  .nav-links li a.nav-active { background: var(--gold-pale) !important; color: var(--blue) !important; }
  .nav-links li a.nav-cta,
  .nav-links li a.nav-cta:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
  }
  .nav-cta { margin: 8px 24px 4px; padding: 12px 20px !important; text-align: center; border-radius: 6px !important; }
  .nav-brand-copy { display: none; }
  .hero-content {
    text-align: center;
    padding: 120px 24px 80px;
  }
  .hero-title {
    max-width: none;
    font-size: clamp(44px, 11vw, 64px);
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-meta-row { justify-content: center; }

  .stats-grid { gap: 0; }
  .stat-divider { display: none; }
  .stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--featured { grid-template-columns: 1fr; }
  .room-footer .btn { flex: 1 1 100%; justify-content: center; }

  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .team-team { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .businesses-grid { grid-template-columns: 1fr; }
  .catfish-sales-grid { grid-template-columns: 1fr; }
  .quick-booking { margin-top: 0; }
  .booking-panel { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-inner div {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 18px 0;
  }
  .trust-strip-inner div:first-child { border-top: none; }
  .trust-strip-inner div:last-child { border-right: none; }

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

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .team-team { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal],
  [data-reveal].revealed {
    transform: none !important;
  }
}

/* Claude design rebuild */
.claude-redesign {
  background: #fff;
}
.claude-redesign .container { max-width: 1180px; }
.claude-redesign #nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(11,44,107,0.08);
  backdrop-filter: blur(18px);
  box-shadow: none;
}
.claude-redesign .nav-brand-copy,
.claude-redesign #nav.scrolled .nav-brand-copy { color: var(--blue); }
.claude-redesign .nav-links li a,
.claude-redesign #nav.scrolled .nav-links li a { color: var(--ink); }
.claude-redesign .nav-links li a:hover,
.claude-redesign #nav.scrolled .nav-links li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.claude-redesign .nav-links li a.active,
.claude-redesign .nav-links li a.nav-active,
.claude-redesign #nav.scrolled .nav-links li a.active,
.claude-redesign #nav.scrolled .nav-links li a.nav-active {
  background: var(--gold-pale);
  color: var(--blue);
}
.claude-redesign .nav-toggle span,
.claude-redesign #nav.scrolled .nav-toggle span { background: var(--blue); }

.ak-hero {
  min-height: 100vh;
  padding: 96px max(24px, calc((100vw - 1180px) / 2)) 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6,22,59,0.96) 0%, rgba(6,22,59,0.9) 36%, rgba(6,22,59,0.48) 68%, rgba(6,22,59,0.18) 100%),
    linear-gradient(0deg, rgba(6,22,59,0.76) 0%, rgba(6,22,59,0.08) 44%),
    url("hotel-photos/gallery/front-clean-wide.jpg") center / cover;
}
.ak-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--gold);
  z-index: 2;
}
.ak-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  max-width: 760px;
}
.ak-greeting {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(232,200,74,0.58);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.ak-hero h1,
.ak-section-head h2,
.ak-catfish h2,
.ak-contact-copy h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}
.ak-hero h1 {
  font-size: clamp(64px, 7.6vw, 116px);
  line-height: 0.88;
  max-width: 860px;
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 18px 60px rgba(0,0,0,0.24);
}
.ak-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}
.ak-hero-copy > p:not(.ak-greeting) {
  max-width: 640px;
  font-size: 21px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}
.ak-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 20px 0;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.ak-hero-proof div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.ak-hero-proof div:last-child { border-right: 0; }
.ak-hero-proof strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.ak-hero-proof span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.ak-hero-booking {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.45fr 0.8fr 1.05fr;
  gap: 12px;
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(11,44,107,0.14);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
  scroll-margin-top: 104px;
}
.ak-hero-booking-head {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 14px 0 0;
  border-right: 1px solid rgba(11,44,107,0.12);
  border-bottom: 0;
}
.ak-hero-booking-head {
  gap: 5px;
}
.ak-hero-booking-head span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.ak-hero-booking-head strong {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}
.ak-hero-booking .booking-field label {
  color: var(--blue);
}
.ak-hero-booking .booking-field input,
.ak-hero-booking .booking-field select {
  height: 50px;
  padding: 10px 12px;
  border-color: rgba(11,44,107,0.18);
  background: #fbfcff;
}
.ak-hero-booking .booking-submit {
  grid-column: auto;
  height: 50px;
  justify-content: center;
  align-self: end;
}
.ak-availability {
  grid-column: 1 / 6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(11,44,107,0.12);
  border-radius: 6px;
  background: #f7f9ff;
}
.ak-booking-steps {
  grid-column: 1 / 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ak-booking-steps span {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(11,44,107,0.1);
  border-radius: 6px;
  color: var(--ink-mid);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.ak-availability span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.ak-availability strong {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.35;
}
.ak-availability small {
  color: var(--ink-mid);
  font-size: 12px;
  text-align: right;
}
.ak-hero-media {
  display: none;
}
.ak-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(6,22,59,0.72), transparent);
}
.ak-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.ak-hero-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: 176px;
  padding: 18px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(6,22,59,0.68);
  backdrop-filter: blur(12px);
}
.ak-hero-card span,
.ak-hero-card small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.ak-hero-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 0.9;
  color: var(--gold-light);
  margin: 10px 0;
}
.ak-hero-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.ak-hero-strip span {
  padding: 18px 22px;
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.ak-hero-strip span:last-child { border-right: 0; }

.ak-hero::after {
  content: "Ondo City · Nigeria · Established 2002 · Direct booking";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 84px;
  z-index: 2;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.ak-booking {
  position: relative;
  z-index: 6;
  margin: -38px 0 0;
  padding: 0 0 64px;
  background: linear-gradient(180deg, transparent 0 38px, var(--off-white) 38px 100%);
}
.claude-redesign .booking-panel {
  border: 1px solid rgba(11,44,107,0.14);
  border-top: 6px solid var(--gold);
  box-shadow: 0 26px 80px rgba(6,22,59,0.18);
  background: rgba(255,255,255,0.98);
}
.ak-greeting-band {
  display: block;
  padding: 18px 24px;
  overflow: hidden;
  color: var(--gold);
  background: var(--blue);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
}
.ak-greeting-track {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
  animation: none;
}
.ak-greeting-band span {
  display: inline-block;
  white-space: nowrap;
}
.ak-greeting-band span:nth-child(n+6) {
  display: none;
}
@keyframes greetingMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ak-location-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  color: var(--blue);
  background:
    linear-gradient(90deg, rgba(251,245,224,0.72), rgba(255,255,255,0.96), rgba(251,245,224,0.72));
  border-bottom: 1px solid rgba(11,44,107,0.1);
}
.ak-location-strip span {
  color: var(--ink-mid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.ak-location-strip strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}
.ak-location-strip strong span {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.ak-location-strip a {
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.ak-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(11,44,107,0.1);
  background: #fff;
}
.ak-trust-bar div {
  min-height: 118px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 24px 26px;
  border-right: 1px solid rgba(11,44,107,0.1);
}
.ak-trust-bar div:first-child {
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}
.ak-trust-bar strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
}
.ak-trust-bar span {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
}
.ak-plan {
  background:
    linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
}
.ak-plan-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.04fr;
  gap: 16px;
  align-items: stretch;
}
.ak-plan-card,
.ak-plan-check {
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(11,44,107,0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6,22,59,0.07);
}
.ak-plan-card {
  display: flex;
  flex-direction: column;
}
.ak-plan-card span,
.ak-plan-check span {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ak-plan-card h3 {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 16px;
}
.ak-plan-card p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.75;
}
.ak-plan-card a {
  width: fit-content;
  margin-top: auto;
  padding: 10px 13px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.ak-plan-check {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(11,44,107,0.18);
}
.ak-plan-check span {
  color: var(--gold-light);
}
.ak-plan-check strong {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 33px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
}
.ak-plan-check ul {
  display: grid;
  gap: 10px;
}
.ak-plan-check li {
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.5;
}
.ak-section {
  padding: 108px max(24px, calc((100vw - 1180px) / 2));
  position: relative;
}
.ak-section-head {
  max-width: 820px;
  margin-bottom: 48px;
}
.ak-section-head span,
.ak-catfish-card span,
.ak-facility-main span,
.ak-chairman span,
.ak-contact-copy span,
.ak-story-card span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ak-section-head h2,
.ak-catfish h2,
.ak-contact-copy h2 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
  max-width: 850px;
}
.ak-section-head p {
  margin-top: 20px;
  max-width: 620px;
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.7;
}
.ak-about {
  background: #fff;
}
.ak-about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: stretch;
}
.ak-about-copy {
  padding: 42px;
  border: 1px solid var(--border);
  border-top: 5px solid var(--gold);
  background: var(--off-white);
}
.ak-about-copy p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.ak-proof-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}
.ak-proof-list div {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.ak-proof-list strong {
  display: block;
  color: var(--blue);
  margin-bottom: 5px;
}
.ak-proof-list span {
  color: var(--ink-mid);
  font-size: 14px;
}
.ak-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.ak-about-photo {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6,22,59,0.12);
}
.ak-about-photo img {
  object-position: center;
}
.ak-about-photo span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 6px;
  color: var(--white);
  background: rgba(6,22,59,0.74);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.ak-why {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,22,59,0.98), rgba(11,44,107,0.92)),
    url("hotel-photos/gallery/pool-wide.jpg") center / cover;
}
.ak-why .ak-section-head h2 {
  color: var(--white);
}
.ak-why .ak-section-head p {
  color: rgba(255,255,255,0.74);
}
.ak-why-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
}
.ak-why-layout article {
  min-height: 300px;
  padding: 28px;
  background: rgba(6,22,59,0.64);
}
.ak-why-layout strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 58px;
}
.ak-why-layout h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 14px;
}
.ak-why-layout p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.7;
}

.ak-rooms {
  background:
    linear-gradient(180deg, var(--blue) 0 360px, #fff 360px);
  color: var(--white);
}
.ak-rooms.ak-section {
  padding-top: 82px;
}
.ak-rooms .ak-section-head {
  margin-bottom: 32px;
}
.ak-rooms .ak-section-head h2 { color: var(--white); }
.ak-rooms .ak-section-head p { color: rgba(255,255,255,0.72); }
.ak-stay-explorer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: 0 24px 70px rgba(6,22,59,0.18);
}
.ak-stay-preview {
  min-height: 470px;
  background: var(--blue);
}
.ak-stay-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ak-stay-copy {
  padding: 44px;
  color: var(--white);
  background: var(--blue-dark);
}
.ak-stay-copy span {
  display: inline-block;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ak-stay-copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}
.ak-stay-copy p {
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
  margin-bottom: 20px;
}
.ak-stay-copy strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 24px;
}
.ak-stay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ak-stay-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  font-weight: 800;
}
.ak-stay-tabs button.active {
  color: var(--blue);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.ak-room-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.ak-room-types article {
  overflow: hidden;
  border: 1px solid rgba(11,44,107,0.12);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 44px rgba(6,22,59,0.08);
}
.ak-room-types img {
  height: 230px;
  object-position: center;
}
.ak-room-types div {
  padding: 24px;
}
.ak-room-types span,
.ak-service-proof span,
.ak-info-grid span {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ak-room-types h3,
.ak-service-proof h3,
.ak-info-grid h3 {
  color: var(--blue);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 12px;
}
.ak-room-types p,
.ak-service-proof p,
.ak-info-grid p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
}
.ak-rate-board {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(11,44,107,0.12);
  border-radius: 8px;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6,22,59,0.12);
}
.ak-rate-board:not([open]) {
  grid-template-columns: 1fr;
}
.ak-rate-board-head {
  padding: 34px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  list-style: none;
}
.ak-rate-board-head::-webkit-details-marker {
  display: none;
}
.ak-rate-board-head span {
  display: inline-block;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ak-rate-board-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}
.ak-rate-board-head p {
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
}
.ak-rate-toggle {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 6px;
  color: var(--blue);
  background: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
}
.ak-rate-toggle::before {
  content: "Hide rates";
}
.ak-rate-board:not([open]) .ak-rate-toggle::before {
  content: "Show rates";
}
.ak-rate-table {
  padding: 20px 24px;
}
.ak-rate-board:not([open]) .ak-rate-table {
  display: none;
}
.ak-rate-table table {
  width: 100%;
  border-collapse: collapse;
}
.ak-rate-table td {
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.ak-rate-table tr:first-child td {
  border-top: 0;
}
.ak-rate-table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--blue);
}

.ak-facilities {
  background: var(--off-white);
}
.ak-facilities.ak-section,
.ak-contact.ak-section {
  padding-top: 82px;
}
.ak-facility-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.ak-facility-main {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
}
.ak-facility-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.ak-facility-main div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 28px;
  color: var(--white);
  background: rgba(6,22,59,0.72);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.ak-facility-main h3 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
.ak-facility-main p { color: rgba(255,255,255,0.78); }
.ak-facility-main .btn {
  margin-top: 22px;
}
.ak-facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: transparent;
  border: 0;
}
.ak-facility-list article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(11,44,107,0.1);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(6,22,59,0.07);
}
.ak-facility-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.05;
  margin-bottom: 14px;
}
.ak-facility-list span {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
}
.ak-service-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.ak-service-proof article {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(11,44,107,0.1);
  background: #fff;
  box-shadow: 0 14px 36px rgba(6,22,59,0.07);
}
.ak-service-proof img {
  height: 250px;
  object-position: center;
}
.ak-service-proof div {
  padding: 24px;
}
.ak-photo-walk {
  color: var(--white);
  background: var(--blue-dark);
}
.ak-photo-walk .ak-section-head h2 {
  color: var(--white);
}
.ak-photo-walk .ak-section-head p {
  color: rgba(255,255,255,0.74);
}
.ak-walk-layout {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: 24px;
  align-items: stretch;
}
.ak-walk-stage {
  position: relative;
  height: min(68vw, 660px);
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(6,22,59,0.12);
}
.ak-walk-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ak-walk-stage span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: rgba(6,22,59,0.74);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.ak-walk-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.ak-walk-thumbs button {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.06);
  text-align: left;
  font-weight: 800;
}
.ak-walk-thumbs button.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(255,255,255,0.12);
}
.ak-walk-thumbs img {
  width: 104px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}
.ak-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 72px 24px 32px;
  background: rgba(6,22,59,0.92);
}
.ak-lightbox.open {
  display: grid;
}
.ak-lightbox img {
  width: min(1100px, 100%);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}
.ak-lightbox p {
  margin-top: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ak-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--blue);
  background: var(--white);
  font-weight: 800;
}
.ak-catfish {
  background: #fff;
}
.ak-catfish-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(11,44,107,0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6,22,59,0.1);
}
.ak-catfish-card > div {
  padding: 34px;
}
.ak-catfish-card p {
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.75;
  margin: 22px 0 28px;
}
.ak-catfish-options {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.ak-catfish-options strong {
  display: block;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  color: var(--blue);
  background: var(--gold-pale);
  font-size: 14px;
}
.ak-catfish-card img {
  border-radius: 8px;
  min-height: 440px;
}

.ak-team {
  background: var(--blue);
  color: var(--white);
}
.ak-team .ak-section-head h2 { color: var(--white); }
.ak-team .ak-section-head p { color: rgba(255,255,255,0.72); }
.ak-chairman {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(232,200,74,0.42);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}
.ak-chairman img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-position: center 22%;
  border: 4px solid var(--gold);
}
.ak-chairman h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.ak-chairman p {
  max-width: 520px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.ak-team-grid {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 28px auto 0;
}
.ak-team-grid::before {
  content: "";
  width: 1px;
  height: 28px;
  justify-self: center;
  background: rgba(232,200,74,0.55);
}
.ak-team-row {
  display: grid;
  gap: 18px;
}
.ak-team-row--middle {
  grid-template-columns: repeat(3, 1fr);
}
.ak-team-row--bottom {
  grid-template-columns: repeat(2, minmax(0, 250px));
  justify-content: center;
}
.ak-team-grid article {
  padding: 24px 18px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}
.ak-team-grid img,
.ak-team-initials {
  width: 124px;
  height: 124px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--gold-pale);
  color: var(--blue);
}
.ak-team-grid img { object-position: center 22%; }
.ak-team-initials {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 30px;
}
.ak-team-grid h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}
.ak-team-grid p {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ak-stories {
  background: #fff;
}
.ak-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
}
.ak-story-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(11,44,107,0.12);
  background: #fff;
  box-shadow: 0 18px 44px rgba(6,22,59,0.08);
}
.ak-story-card img {
  height: 280px;
  flex: 0 0 auto;
}
.ak-story-card span,
.ak-story-card h3 {
  margin-left: 24px;
  margin-right: 24px;
}
.ak-story-card span { margin-top: 24px; }
.ak-story-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 600;
}

.ak-guest-info {
  background: #fff;
}
.ak-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(11,44,107,0.1);
  background: rgba(11,44,107,0.1);
}
.ak-info-grid article {
  min-height: 250px;
  padding: 28px;
  background: #fff;
}
.ak-info-grid h3 {
  font-size: 29px;
}

.ak-contact {
  background: var(--off-white);
}
.ak-contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.ak-contact-copy {
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}
.ak-contact-copy h2 { color: var(--white); }
.ak-contact-copy p {
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.75;
  margin: 20px 0 28px;
}
.ak-contact-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.78);
}
.ak-contact-lines a { color: rgba(255,255,255,0.9); }
.ak-contact-lines small {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  margin-top: 3px;
}
.ak-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.ak-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,200,74,0.42);
  border-radius: 50%;
  color: var(--gold-light);
}
.ak-social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.ak-hidden-gem-wrap {
  margin: -8px 0 24px;
}
.ak-hidden-gem {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ak-contact-form {
  border-radius: 8px;
  border: 1px solid rgba(11,44,107,0.12);
  box-shadow: 0 24px 70px rgba(6,22,59,0.08);
}
.ak-footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 34px;
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255,255,255,0.72);
  background: var(--blue-dark);
}
.ak-footer img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 18px;
}
.ak-footer p {
  max-width: 360px;
  line-height: 1.7;
}
.ak-footer nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.ak-footer a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}
.ak-footer-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,200,74,0.34);
  border-radius: 50%;
  color: var(--gold-light) !important;
}
.ak-footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.ak-footer small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.42);
}

@media (max-width: 1024px) {
  .ak-hero {
    grid-template-columns: 1fr;
    padding-top: 104px;
    background:
      linear-gradient(180deg, rgba(6,22,59,0.98) 0%, rgba(11,44,107,0.95) 54%, rgba(6,22,59,0.88) 100%),
      url("hotel-photos/gallery/front-clean-wide.jpg") center / cover;
  }
  .ak-hero-media {
    height: 560px;
    min-height: 0;
  }
  .ak-hero-strip,
  .ak-room-grid,
  .ak-room-types,
  .ak-service-proof,
  .ak-info-grid,
  .ak-facility-list,
  .ak-plan-layout,
  .ak-team-row--middle {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-trust-bar,
  .ak-why-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-team-row--bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-about-layout,
  .ak-stay-explorer,
  .ak-facility-layout,
  .ak-catfish-card,
  .ak-walk-layout,
  .ak-contact-panel {
    grid-template-columns: 1fr;
  }
  .ak-story-grid {
    grid-template-columns: 1fr;
  }
  .ak-chairman {
    max-width: none;
  }
}

@media (max-width: 768px) {
  body.claude-redesign {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
  .ak-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 8px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 18px 54px rgba(6,22,59,0.18);
    backdrop-filter: blur(16px);
  }
  .ak-mobile-cta a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 6px;
    color: var(--white);
    background: var(--blue);
    font-size: 14px;
    font-weight: 800;
  }
  .ak-mobile-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  .ak-mobile-cta a:first-child {
    background: var(--whatsapp);
  }
  .ak-hero {
    padding: 104px 24px calc(118px + env(safe-area-inset-bottom));
    gap: 30px;
    background:
      linear-gradient(180deg, rgba(6,22,59,0.42) 0%, rgba(6,22,59,0.74) 42%, rgba(6,22,59,0.94) 100%),
      url("hotel-photos/gallery/front-clean-wide.jpg") 72% center / cover;
  }
  .ak-hero h1 {
    font-size: clamp(42px, 11.2vw, 48px);
    line-height: 0.95;
  }
  .ak-hero-copy > p:not(.ak-greeting) {
    font-size: 17px;
  }
  .ak-hero-booking {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 92px;
    padding-bottom: 110px;
    scroll-margin-top: 92px;
  }
  .ak-hero::after {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    margin-top: 18px;
    line-height: 1.7;
  }
  .ak-hero-booking-head {
    display: block;
    border-right: 0;
    padding-right: 0;
  }
  .ak-hero-booking-head strong {
    display: block;
    margin-top: 4px;
  }
  .ak-availability {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .ak-booking-steps {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .ak-availability small {
    text-align: left;
  }
  .ak-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .ak-hero-proof div {
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
  }
  .ak-hero-proof strong {
    font-size: 18px;
    margin: 0;
  }
  .ak-hero-proof span {
    display: none;
  }
  .ak-hero-media {
    height: 360px;
    border-radius: 8px 8px 48px 8px;
    min-height: 0;
  }
  .ak-hero-strip,
  .ak-rate-board,
  .ak-room-types,
  .ak-service-proof,
  .ak-info-grid,
  .ak-plan-layout,
  .ak-trust-bar,
  .ak-why-layout,
  .ak-facility-list,
  .ak-team-row--middle,
  .ak-team-row--bottom,
  .ak-footer {
    grid-template-columns: 1fr;
  }
  .ak-trust-bar div,
  .ak-trust-bar div:first-child {
    min-height: 0;
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(11,44,107,0.1);
  }
  .ak-plan-card,
  .ak-plan-check {
    min-height: 0;
    padding: 24px;
  }
  .ak-plan-card h3,
  .ak-plan-check strong {
    font-size: 29px;
  }
  .ak-greeting-band {
    overflow: hidden;
    padding: 20px 0;
    font-size: clamp(19px, 2.4vw, 31px);
  }
  .ak-greeting-track {
    justify-content: flex-start;
    width: max-content;
    gap: clamp(34px, 6vw, 80px);
    padding-left: 24px;
    animation: greetingMarquee 26s linear infinite;
  }
  .ak-greeting-band span:nth-child(n+6) {
    display: inline-block;
  }
  .ak-location-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .ak-location-strip strong {
    max-width: 310px;
    font-size: 20px;
    line-height: 1.35;
  }
  .ak-location-strip strong span {
    display: block;
  }
  .ak-section {
    padding: 58px 24px;
  }
  .ak-section-head h2,
  .ak-catfish h2,
  .ak-contact-copy h2 {
    font-size: clamp(40px, 12vw, 56px);
  }
  .ak-about-copy,
  .ak-catfish-card > div,
  .ak-contact-copy {
    padding: 28px;
  }
  .ak-about-photo,
  .ak-stay-preview,
  .ak-facility-main {
    min-height: 420px;
  }
  .ak-why-layout article,
  .ak-info-grid article {
    min-height: 0;
  }
  .ak-why-layout strong {
    margin-bottom: 26px;
  }
  .ak-stay-copy {
    padding: 28px 28px calc(118px + env(safe-area-inset-bottom));
  }
  .ak-walk-stage {
    min-height: 420px;
  }
  .ak-walk-stage span {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
  .ak-walk-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .ak-walk-thumbs button {
    grid-template-columns: 1fr;
  }
  .ak-walk-thumbs img {
    width: 100%;
    height: 120px;
  }
  .ak-chairman {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ak-chairman img {
    margin: 0 auto;
  }
  .ak-footer nav {
    justify-content: flex-start;
  }
}
