:root {
  --color-primary: #236ba1;
  --color-secondary: #1cbde4;
  --color-bg: #ffffff;
  --color-text: #626464;
  --color-heading: #1f4f77;
  --color-soft: #eef8fd;
  --color-border: #d7e8f3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
  font-family: "Montserrat", sans-serif;
}

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

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

iframe {
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.shell-header {
  padding: 1rem 0;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  width: 156px;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.desktop-nav a,
.mobile-pill {
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--color-secondary);
}

.mobile-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.mobile-pill {
  white-space: nowrap;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.mobile-pill:hover,
.mobile-pill.is-active {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.button-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 20px 45px rgba(35, 107, 161, 0.18);
}

.button-primary:hover {
  color: #fff;
  background: var(--color-secondary);
}

.button-outline {
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-border);
}

.button-outline:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.hero-home,
.hero-page {
  background:
    radial-gradient(circle at top left, rgba(28, 189, 228, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(35, 107, 161, 0.12), transparent 36%);
}

.hero-home {
  overflow: hidden;
}

.hero-home-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

.hero-copy,
.hero-page-inner,
.section-heading {
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.hero-home h1,
.hero-page h1,
.section-heading h2,
.cta-box h2,
.card-title,
.page-title {
  margin: 0;
  color: var(--color-heading);
}

.hero-name {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.hero-role {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-copy-text,
.hero-page-text,
.section-heading p,
.card-text,
.rich-copy,
.cta-box p,
.faq-answer {
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-copy-text {
  max-width: 42rem;
  margin: 0.5rem auto 0;
}

.hero-copy-text p {
  margin: 0;
}

.hero-copy-text p + p {
  margin-top: 1rem;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-image-wrap,
.image-card {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 24px 60px rgba(35, 107, 161, 0.12);
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.grid-conditions,
.grid-cards,
.grid-blog,
.grid-two,
.grid-contact,
.grid-featured {
  display: grid;
  gap: 1rem;
}

.card-surface,
.simple-card,
.contact-card,
.status-message,
.cta-box,
.blog-card {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 60px rgba(35, 107, 161, 0.08);
  backdrop-filter: blur(16px);
}

.simple-card,
.blog-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.simple-card strong,
.card-title,
.faq-question,
.footer-title {
  color: var(--color-heading);
}

.mode-card {
  overflow: hidden;
  border-radius: 2rem;
}

.mode-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mode-card-body {
  padding: 1.75rem;
}

.cta-box {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 2.5rem;
  padding: clamp(2.75rem, 6vw, 4.75rem);
  text-align: center;
}

.cta-box h2 {
  max-width: 48rem;
  margin: 0.9rem auto 0;
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1.05;
}

.cta-box p {
  max-width: 52rem;
  margin: 1.35rem auto 0;
}

.cta-box .button-row {
  justify-content: center;
  margin-top: 2.25rem;
}

.cta-box .button {
  min-width: 280px;
}

.about-grid,
.hero-home-grid,
.reserve-grid {
  display: grid;
  gap: 2rem;
}

.highlight-list {
  display: grid;
  gap: 0.75rem;
}

.highlight-item {
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 1rem 1.25rem;
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-question {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-answer {
  margin: 1rem 0 0;
}

.category-label {
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.blog-card h3 {
  margin: 1rem 0 0;
  color: var(--color-heading);
  font-size: 1.6rem;
  line-height: 1.2;
}

.blog-card p {
  margin: 1rem 0 0;
}

.blog-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-page {
  border-bottom: 1px solid var(--color-border);
}

.hero-page-inner {
  padding: 4rem 0;
}

.hero-page h1 {
  max-width: 56rem;
  margin: 0.75rem auto 0;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1;
}

.hero-page-text {
  max-width: 48rem;
  margin: 1rem auto 0;
}

.content-section {
  padding: 4.5rem 0;
}

.content-block {
  max-width: 64rem;
}

.content-block + .content-block {
  margin-top: 2rem;
}

.soft-subheading {
  margin: 0 0 1rem;
  color: var(--color-heading);
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-card {
  border-radius: 2rem;
  padding: 1.75rem;
}

.contact-card h2 {
  margin: 1rem 0 0;
  color: var(--color-heading);
  font-size: 1.9rem;
}

.contact-card .contact-lines {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-card .contact-lines p {
  margin: 0.2rem 0 0;
}

.contact-card .footer-title {
  color: var(--color-primary);
}

.map-frame {
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 18rem;
  border: 0;
}

.status-message {
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-success {
  border-color: #b7e5cf;
  background: #ecfbf3;
  color: #166844;
}

.status-error {
  border-color: #f0bec7;
  background: #fff1f4;
  color: #a12d43;
}

.form-card {
  border-radius: 2rem;
  padding: 1.75rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  color: var(--color-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--color-text);
  font: inherit;
  font-weight: 300;
}

.field textarea {
  min-height: 10rem;
  border-radius: 1.5rem;
  resize: vertical;
}

.legal-note {
  font-size: 0.9rem;
  line-height: 1.7;
}

.response-note {
  font-size: 0.78rem;
  line-height: 1.7;
}

.site-footer {
  margin-top: 3rem;
  background: var(--color-heading);
  color: #fff;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-logo {
  width: 180px;
  height: auto;
}

.footer-brand p {
  max-width: 38rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 700;
}

.footer-contact a:hover {
  color: #c7f3fb;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.blog-order-card .meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-date {
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .brand-logo {
    width: 190px;
  }

  .hero-name {
    white-space: nowrap;
    font-size: 2.6rem;
  }

  .hero-role {
    white-space: nowrap;
    font-size: 1.45rem;
  }

  .button-row {
    flex-direction: row;
    justify-content: center;
  }

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

  .form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mobile-nav {
    display: none;
  }

  .hero-home-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    padding: 6rem 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .hero-image-wrap {
    height: 100%;
  }

  .hero-copy,
  .hero-page-inner,
  .section-heading {
    text-align: left;
  }

  .hero-copy-text,
  .hero-page h1,
  .hero-page-text,
  .section-heading {
    margin-left: 0;
    margin-right: 0;
  }

  .button-row {
    justify-content: flex-start;
  }

  .cta-box .button-row {
    justify-content: center;
  }

  .hero-image {
    height: 100%;
    min-height: 520px;
    max-height: 620px;
    object-position: center top;
  }

  .grid-conditions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }

  .reserve-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .grid-blog,
  .grid-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .blog-order-card .meta-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
