:root {
  --navy: #071a34;
  --navy-2: #0c2445;
  --navy-3: #102f59;
  --gold: #a77f2f;
  --gold-2: #caa04a;
  --ink: #07111f;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #d8d0bd;
  --line: rgba(201, 162, 74, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--paper);
  background: var(--navy);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 162px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(7, 26, 52, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: headerDrop 700ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 310px;
  height: 162px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.footer img {
  width: 270px;
  height: 170px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold-2);
  transition: width 220ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid var(--gold);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.header-cta,
.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-secondary {
  color: var(--gold-2);
  background: rgba(7, 26, 52, 0.4);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 186px clamp(20px, 7vw, 100px) 76px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 26, 52, 0.94) 0%, rgba(7, 26, 52, 0.74) 44%, rgba(7, 26, 52, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 26, 52, 0.92) 0%, rgba(7, 26, 52, 0.08) 50%, rgba(7, 26, 52, 0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroContentIn 900ms ease 180ms both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.86;
  color: var(--white);
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
}

h3 {
  color: var(--white);
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-content p {
  max-width: 620px;
  font-size: 1.16rem;
}

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

.section-pad {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 7vw, 100px);
}

.intro,
.products,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.intro,
.showcase,
.booking {
  background: var(--navy-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats div {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.stats span {
  color: var(--white);
  font-weight: 800;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(201, 162, 74, 0.08));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  animation: cardBreathe 5s ease-in-out infinite;
}

.service-card.reveal,
.runako-grid article.reveal,
.booking-panel.reveal {
  transform: translateY(38px) scale(0.97);
}

.service-card.reveal.is-visible,
.runako-grid article.reveal.is-visible,
.booking-panel.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--gold-2);
  background: linear-gradient(160deg, rgba(16, 47, 89, 0.95), rgba(201, 162, 74, 0.13));
}

.service-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
}

.gallery-grid figure.reveal,
.product-strip.reveal,
.runako-feature.reveal {
  transform: translateY(34px) scale(0.96);
}

.gallery-grid figure.reveal.is-visible,
.product-strip.reveal.is-visible,
.runako-feature.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.gallery-grid .gallery-large {
  grid-row: span 2;
  min-height: 580px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(7, 26, 52, 0.82);
  font-weight: 800;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.product-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.runako-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(167, 127, 47, 0.1));
  box-shadow: var(--shadow);
}

.runako-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.65;
}

.runako-copy strong {
  color: var(--gold-2);
}

.runako-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.runako-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 26, 52, 0.72);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.runako-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--gold-2);
  background: rgba(16, 47, 89, 0.82);
}

.runako-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.runako-grid h3,
.runako-grid p {
  padding-inline: 18px;
}

.runako-grid h3 {
  margin: 18px 0 8px;
}

.runako-grid p {
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.booking-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.12), rgba(7, 26, 52, 0.78));
  box-shadow: var(--shadow);
  animation: panelGlow 5s ease-in-out infinite;
}

.booking-panel p {
  max-width: 720px;
  margin-inline: auto;
}

.booking-checker {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  align-items: end;
  max-width: 920px;
  margin: 30px auto 24px;
  text-align: left;
}

.booking-checker .btn {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 220px;
}

.booking-checker label {
  min-width: 0;
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 28px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(7, 26, 52, 0.62);
  font-weight: 800;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.booking-status.is-available {
  border-color: rgba(202, 160, 74, 0.72);
  color: var(--gold-2);
  animation: statusPop 420ms ease both;
}

.booking-status.is-unavailable {
  border-color: rgba(255, 255, 255, 0.18);
  color: #f0b7a8;
  animation: statusPop 420ms ease both;
}

.products .booking-panel {
  grid-column: 1 / -1;
  width: 100%;
}

.quick-actions {
  justify-content: center;
}

.contact-details ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-details strong {
  color: var(--gold-2);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links a,
.footer-socials a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(7, 26, 52, 0.72);
  font-weight: 800;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-links a:hover,
.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-2);
  background: rgba(201, 162, 74, 0.12);
}

.social-icon:hover svg {
  animation: iconPulse 520ms ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-2);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(201, 162, 74, 0.46);
  border-radius: 6px;
  color: var(--paper);
  background: rgba(7, 26, 52, 0.78);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(242, 209, 119, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-2);
  font-weight: 800;
}

.whatsapp-float,
.chat-toggle {
  position: fixed;
  right: 10px;
  z-index: 25;
  border: 1px solid var(--gold-2);
  border-radius: 6px;
  color: var(--navy);
  background: var(--gold-2);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.whatsapp-float {
  bottom: 180px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.chatbot {
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 26;
}

.chat-toggle {
  position: static;
  min-width: 82px;
  min-height: 52px;
  cursor: pointer;
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-2);
  box-shadow: var(--shadow);
  animation: chatSlideUp 260ms ease both;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  color: var(--navy);
  background: var(--gold-2);
}

.chat-close {
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  padding: 16px;
}

.bot-message,
.user-message {
  max-width: 85%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.45;
}

.bot-message {
  color: var(--paper);
  background: var(--navy-3);
}

.user-message {
  justify-self: end;
  color: var(--navy);
  background: var(--gold-2);
}

.chat-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 12px;
}

.chat-options button,
.chat-form button {
  min-height: 38px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--gold-2);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 16px 16px;
}

.chat-form input {
  min-height: 40px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background: #04101f;
}

.footer p {
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  color: var(--gold-2);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-credit img {
  width: 60px;
  height: auto;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-page {
  min-height: 100vh;
  padding: clamp(32px, 7vw, 90px);
  background: var(--navy);
}

.admin-panel {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.booking-list {
  display: grid;
  gap: 14px;
}

.booking-record,
.booking-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.booking-record {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  animation: recordIn 420ms ease both;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.booking-record:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
  background: rgba(255, 255, 255, 0.065);
}

.booking-record div:first-child {
  display: grid;
  gap: 7px;
}

.booking-record strong {
  color: var(--gold-2);
  font-size: 1.1rem;
}

.booking-record span {
  color: var(--muted);
}

.booking-record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-empty {
  margin: 0;
  padding: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-copy.reveal,
.product-copy.reveal,
.contact-details.reveal {
  transform: translateX(-34px);
}

.intro-copy.reveal.is-visible,
.product-copy.reveal.is-visible,
.contact-details.reveal.is-visible {
  transform: translateX(0);
}

.stats.reveal,
.contact-form.reveal {
  transform: translateX(34px);
}

.stats.reveal.is-visible,
.contact-form.reveal.is-visible {
  transform: translateX(0);
}

.gallery-grid figure::after,
.runako-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(202, 160, 74, 0.18) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 900ms ease;
}

.gallery-grid figure.is-visible::after,
.runako-grid article.is-visible::after {
  transform: translateX(120%);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes cardBreathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(167, 127, 47, 0);
  }
  50% {
    box-shadow: 0 18px 44px rgba(167, 127, 47, 0.12);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(202, 160, 74, 0.38);
  }
  50% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(202, 160, 74, 0);
  }
}

@keyframes chatSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 26px 76px rgba(0, 0, 0, 0.28), 0 0 36px rgba(167, 127, 47, 0.14);
  }
}

@keyframes statusPop {
  from {
    opacity: 0.72;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

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

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .header-cta {
    min-height: 40px;
  }

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

  .service-grid,
  .gallery-grid,
  .runako-feature,
  .runako-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .gallery-large {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    padding-top: 178px;
  }

  .brand img {
    width: 236px;
    height: 126px;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero-actions,
  .quick-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-checker {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .stats,
  .service-grid,
  .gallery-grid,
  .product-strip,
  .runako-feature,
  .runako-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .gallery-grid .gallery-large {
    grid-column: auto;
    min-height: 360px;
  }

  .gallery-grid figure {
    min-height: 330px;
  }

  .product-strip img {
    height: 310px;
  }

  .runako-grid img {
    height: 330px;
  }

  .contact-form {
    padding: 20px;
  }

  .chat-options {
    grid-template-columns: 1fr;
  }
}
