:root {
  --sage: #9caf9a;
  --deep-teal: #2f4f4f;
  --cream: #f5f3ef;
  --terracotta: #d8a48f;
  --terracotta-dark: #bd8067;
  --warm-gray: #6e6e6e;
  --sage-mist: #e8efe7;
  --line: rgba(47, 79, 79, 0.12);
  --shadow: 0 20px 40px rgba(47, 79, 79, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(156, 175, 154, 0.2), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(216, 164, 143, 0.18), transparent 18%),
    var(--cream);
  color: var(--deep-teal);
}

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

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

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

.page-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.55;
}

.glow-left {
  top: 120px;
  left: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(156, 175, 154, 0.34);
}

.glow-right {
  top: 420px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 42% 58% 57% 43%;
  background: rgba(216, 164, 143, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 239, 0.76);
  border-bottom: 1px solid rgba(47, 79, 79, 0.08);
}

.header-shell,
.section,
.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(156, 175, 154, 0.14), rgba(216, 164, 143, 0.16));
}

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

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.site-footer strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.brand-copy span,
.site-footer span {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

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

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(47, 79, 79, 0.84);
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover {
  background: rgba(156, 175, 154, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.lang-switch a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(47, 79, 79, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.lang-switch a.is-active {
  background: var(--sage);
  color: var(--deep-teal);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--deep-teal);
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.mobile-nav .mobile-book {
  justify-content: center;
  background: var(--deep-teal) !important;
  color: #f5f3ef !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.mobile-nav .mobile-book:hover,
.mobile-nav .mobile-book:focus-visible {
  background: #274141 !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 79, 79, 0.72) 0%, rgba(47, 79, 79, 0.28) 48%, rgba(47, 79, 79, 0.12) 100%),
    linear-gradient(180deg, rgba(19, 29, 29, 0.12), rgba(19, 29, 29, 0.28));
}

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

.hero-content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 84px;
  color: #f7f5f2;
  max-width: 1240px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(245, 243, 239, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.section .eyebrow,
.site-footer .eyebrow,
.about-copy .eyebrow,
.section-heading .eyebrow,
.booking-card .eyebrow,
.philosophy-copy .eyebrow {
  color: rgba(47, 79, 79, 0.68);
}

.hero h1,
.section h2,
.booking-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.section h2,
.booking-card h2 {
  color: var(--deep-teal);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.hero p,
.section p,
.point-card p,
.testimonial-card p,
.booking-card p {
  color: rgba(245, 243, 239, 0.88);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section p,
.point-card p,
.testimonial-card p,
.booking-card p,
.service-copy p,
.about-copy p {
  color: var(--warm-gray);
}

.hero-content p {
  max-width: 620px;
  margin: 22px 0 0;
}

.hero-actions-row,
.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 14px 30px rgba(216, 164, 143, 0.28);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.section .btn-secondary,
.booking-card .btn-secondary,
.header-book {
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep-teal);
  border: 1px solid rgba(47, 79, 79, 0.12);
}

.hero-card {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin-left: auto;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(245, 243, 239, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 243, 239, 0.24);
  color: #fff;
}

.hero-card small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.86;
}

.hero-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-card p {
  margin: 0;
  font-size: 0.95rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(232, 239, 231, 0.9), rgba(245, 243, 239, 0.98));
}

.about-grid,
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.about-visual,
.service-card,
.testimonial-card,
.booking-card,
.gallery-card,
.philosophy-visual,
.about-copy,
.contact-card,
.map-card,
.modal-dialog {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.about-visual {
  overflow: hidden;
  min-height: 560px;
}

.about-visual img,
.service-media img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding: 42px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

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

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

.service-card {
  appearance: none;
  display: grid;
  grid-template-rows: 340px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  padding: 0;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-8px) rotate(-0.8deg);
  box-shadow: 0 24px 44px rgba(47, 79, 79, 0.12);
}

.service-media {
  height: 340px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.service-card:hover .service-media img,
.service-card:focus-visible .service-media img {
  transform: scale(1.06);
  filter: saturate(1.04);
}

.services-grid .service-card:nth-child(1) .service-media img {
  object-position: center 32%;
}

.services-grid .service-card:nth-child(2) .service-media img {
  object-position: center 35%;
}

.services-grid .service-card:nth-child(3) .service-media img {
  object-position: center 24%;
}

.service-copy {
  padding: 24px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.service-copy h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.service-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  color: var(--terracotta-dark);
  font-weight: 700;
}

.section-dark {
  background: linear-gradient(180deg, rgba(47, 79, 79, 0.97), rgba(61, 90, 90, 0.96));
}

.section-dark h2,
.section-dark p,
.section-dark .eyebrow,
.section-dark strong {
  color: #f5f3ef;
}

.philosophy-copy {
  padding: 18px 18px 18px 30px;
}

.philosophy-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin-right: 24px;
  border: 1px solid rgba(245, 243, 239, 0.14);
}

.philosophy-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.6s ease;
}

.philosophy-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.philosophy-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(245, 243, 239, 0.16);
  border: 1px solid rgba(245, 243, 239, 0.22);
  backdrop-filter: blur(12px);
}

.philosophy-badge strong {
  color: #f5f3ef;
  font-size: 1.02rem;
  line-height: 1.5;
}

.testimonial-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: var(--deep-teal);
}

.booking-card {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 42px;
  background: linear-gradient(135deg, rgba(232, 239, 231, 0.95), rgba(245, 243, 239, 0.96));
  border: 1px solid var(--line);
}

.contact-section {
  padding-top: 44px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
}

.contact-card,
.map-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.contact-card {
  padding: 30px;
}

.contact-item + .contact-item {
  margin-top: 22px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.contact-item p {
  margin: 4px 0 0;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 16px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 36, 36, 0.48);
}

.modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  margin: 52px auto;
  padding: 28px;
  background: rgba(245, 243, 239, 0.98);
  border: 1px solid var(--line);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep-teal);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-copy {
  max-width: 580px;
  color: var(--warm-gray);
  line-height: 1.8;
}

.booking-form {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(47, 79, 79, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep-teal);
}

.booking-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--terracotta-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 40px 0 54px;
  border-top: 1px solid rgba(47, 79, 79, 0.1);
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-teal);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(156, 175, 154, 0.22);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--deep-teal);
}

body.modal-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(47, 79, 79, 0.12);
  background: rgba(245, 243, 239, 0.96);
  box-shadow: 0 16px 34px rgba(47, 79, 79, 0.16);
  backdrop-filter: blur(14px);
}

.cookie-banner p {
  margin: 0;
  color: var(--warm-gray);
  line-height: 1.7;
}

.cookie-banner a {
  color: var(--deep-teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-teal);
  border: 1px solid rgba(47, 79, 79, 0.12);
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .about-grid,
  .philosophy-grid,
  .booking-card,
  .services-grid,
  .testimonials-grid,
  .site-footer,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-card {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .header-shell,
  .section,
  .site-footer,
  .mobile-nav,
  .hero-content,
  .hero-card {
    width: min(100%, calc(100% - 22px));
  }

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

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 150px 0 34px;
  }

  .hero h1,
  .section h2,
  .booking-card h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .section {
    padding: 82px 0;
  }

  .about-grid,
  .philosophy-grid,
  .services-grid,
  .testimonials-grid,
  .site-footer,
  .booking-card,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .booking-card,
  .contact-card,
  .modal-dialog,
  .service-copy {
    padding: 24px;
  }

  .about-visual {
    min-height: 340px;
  }

  .service-media {
    height: 260px;
  }

  .hero-card {
    margin: 0 auto 26px;
    max-width: none;
  }

  .philosophy-visual {
    min-height: 340px;
    margin-right: 0;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .modal {
    padding: 10px 0;
  }

  .modal-dialog {
    width: min(100%, calc(100% - 18px));
    margin: 10px auto;
    max-height: calc(100vh - 20px);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
