:root {
  --primary: #0a7b78;
  --primary-dark: #075c5a;
  --primary-light: #dff5f1;
  --accent: #c9a86a;
  --ink: #173238;
  --muted: #64777b;
  --paper: #ffffff;
  --soft: #f5faf9;
  --line: #dce9e7;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(18, 58, 62, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --hero-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=90");
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 123, 120, 0.3);
  outline-offset: 3px;
}

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  color: #fff;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
}

h3 {
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.alt-section {
  background: var(--soft);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: -9999px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 78px;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(22, 61, 66, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.site-header.scrolled .brand,
.site-header.scrolled .nav-link {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #13aaa5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  font-weight: 800;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  transition: 0.2s ease;
}

.site-header.scrolled .menu-toggle span {
  background: var(--ink);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(10, 123, 120, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-outline {
  color: var(--primary-dark);
  border-color: var(--primary);
  background: transparent;
}

.btn-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 160px;
  background: var(--hero-image) center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 39, 40, 0.9) 0%, rgba(4, 39, 40, 0.72) 46%, rgba(4, 39, 40, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light,
.section-heading.light p,
.section-heading.light h2 {
  color: #fff;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.trust-row {
  display: grid;
  max-width: 920px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 50%;
}

.split-grid,
.hospitality-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.image-card {
  position: relative;
}

.image-card img,
.contact-visual > img {
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  max-width: 230px;
  padding: 18px 22px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.content-block > p:not(.eyebrow) {
  font-size: 1.02rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stats-grid div {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.feature-card:hover {
  border-color: rgba(10, 123, 120, 0.45);
  box-shadow: 0 16px 40px rgba(20, 64, 68, 0.11);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 20px;
  place-items: center;
  background: var(--primary-light);
  border-radius: 15px;
  font-size: 1.5rem;
}

.service-card h3,
.feature-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.feature-card p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.text-button {
  padding: 0;
  color: var(--primary-dark);
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
}

.process-section,
.testimonial-section {
  color: #fff;
  background: linear-gradient(135deg, #073d3c, #0a6966);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.process-card strong {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 50%;
}

.process-card p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.booking-grid {
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: 110px;
}

.booking-intro img {
  height: 330px;
  margin-top: 28px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.booking-note {
  padding: 20px;
  margin-top: 26px;
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
}

.booking-note p {
  margin: 6px 0 0;
}

.booking-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #ccdeda;
  border-radius: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 123, 120, 0.08);
  outline: none;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--danger);
}

.error-message {
  min-height: 18px;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.76rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-field label {
  margin: 0;
}

.checkbox-field .error-message {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.86rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.tag-list span {
  padding: 9px 13px;
  color: var(--primary-dark);
  background: var(--primary-light);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.area-card {
  display: grid;
  min-height: 130px;
  place-items: center;
  padding: 18px;
  color: var(--primary-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 800;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card p {
  color: #fff;
  font-size: 1.05rem;
}

.testimonial-card footer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  margin: 0;
}

.contact-section {
  background: var(--soft);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list > * {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list > * > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 12px;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: var(--muted);
}

.contact-visual {
  position: relative;
}

.contact-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-card p {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  color: #fff;
  background: #052e2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.footer-grid h3 {
  margin-bottom: 18px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-brand {
  margin-bottom: 18px;
}

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

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 20px;
  z-index: 900;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.floating-whatsapp {
  bottom: 22px;
  background: #25d366;
  font-size: 0.72rem;
  font-weight: 900;
}

.scroll-top {
  right: 84px;
  bottom: 22px;
  background: var(--primary-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1050px) {
  .primary-nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.84rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 78px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 16px 4px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: 700px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .hospitality-grid,
  .booking-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-intro {
    position: static;
  }

  .image-card img,
  .contact-visual > img {
    height: 480px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    min-height: 760px;
    padding-top: 135px;
    background-position: 63% center;
  }

  .hero-overlay {
    background: rgba(4, 39, 40, 0.78);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .trust-row,
  .stats-grid,
  .services-grid,
  .feature-grid,
  .process-grid,
  .form-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 10px;
    margin-top: 38px;
  }

  .image-card img,
  .contact-visual > img {
    height: 390px;
  }

  .floating-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .booking-form {
    padding: 22px;
  }

  .area-card {
    min-height: 90px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top {
    right: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ------------------------------------------- standalone content pages */

.text-page {
  padding-top: 170px;
}

.container.narrow {
  width: min(820px, calc(100% - 36px));
}

.text-page h2 {
  margin-bottom: 26px;
}

.text-page p {
  font-size: 1.02rem;
}
