:root {
  --ink: #1f2528;
  --muted: #65706d;
  --paper: #f3f5f2;
  --paper-strong: #ffffff;
  --sage: #315f52;
  --sage-deep: #203f39;
  --aubergine: #4b3045;
  --copper: #b66b45;
  --mist: #dfe7e2;
  --line: rgba(31, 37, 40, 0.14);
  --shadow: 0 22px 60px rgba(31, 37, 40, 0.16);
  font-family: Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(243, 245, 242, 0.96), rgba(236, 241, 237, 0.98)),
    repeating-linear-gradient(90deg, rgba(49, 95, 82, 0.045) 0 1px, transparent 1px 84px);
}


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


a {
  color: inherit;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.4rem;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(243, 245, 242, 0.92);
  backdrop-filter: blur(18px);
}


.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}


.brand__logo {
  width: clamp(15rem, 24vw, 20rem);
  height: 5.1rem;
  object-fit: contain;
  object-position: center;
}


.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
}


.nav a,
.text-link {
  text-decoration: none;
}


.nav a:hover,
.text-link:hover {
  color: var(--sage);
}


.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
}


.hero__content {
  max-width: 780px;
}


.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


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


figure {
  margin-inline: 0;
  margin-bottom: 0;
}


h1 {
  margin-bottom: 1.2rem;
  max-width: 850px;
  font-size: clamp(2.65rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}


h2 {
  margin-bottom: 0.8rem;
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}


h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  line-height: 1.12;
}


.lead {
  max-width: 640px;
  color: #485451;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}


.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}


.button:hover {
  transform: translateY(-1px);
}


.button--primary {
  color: white;
  background: var(--sage);
}


.button--secondary {
  color: var(--aubergine);
  border-color: rgba(75, 48, 69, 0.22);
  background: rgba(255, 255, 255, 0.72);
}


.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 0.75rem;
  min-height: 34rem;
}


.hero__photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sage-deep);
}


.hero__photo--lyo {
  margin-top: 2rem;
}


.hero__photo--cris {
  margin-bottom: 2rem;
}


.hero__photo img {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  object-fit: cover;
}


.hero__photo figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: white;
  background: rgba(31, 37, 40, 0.68);
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}


.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}


.intro-band span {
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--sage-deep);
  font-weight: 750;
  text-align: center;
}


.intro-band span:last-child {
  border-right: 0;
}


.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}


.section__heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 2rem;
}


.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}


.hotel-card {
  display: grid;
  grid-template-rows: 22rem auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}


.hotel-card__image {
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: var(--mist);
}


.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}


.hotel-card:hover .hotel-card__image img {
  transform: scale(1.025);
}


.hotel-card__body {
  padding: clamp(1.25rem, 3vw, 2rem);
}


.hotel-card__kicker {
  margin-bottom: 0.85rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}


.hotel-card__body p {
  color: var(--muted);
  line-height: 1.65;
}


.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--sage);
  font-weight: 800;
}


.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  background: var(--sage-deep);
  color: white;
}


.section--split .eyebrow {
  color: #e2a06f;
}


.approach-list {
  display: grid;
  gap: 0.8rem;
}


.approach-list article {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


.approach-list span {
  grid-row: span 2;
  color: #e2a06f;
  font-weight: 850;
}


.approach-list p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}


.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}


.contact-section__intro p:last-child {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}


.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 14px 36px rgba(31, 37, 40, 0.08);
}


.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--sage-deep);
  font-weight: 760;
}


.contact-form__message,
.contact-form button,
.contact-form__status {
  grid-column: 1 / -1;
}


.contact-form__hidden {
  position: absolute;
  left: -9999px;
}


.contact-form__status {
  display: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  line-height: 1.45;
}


.contact-form__status--ok {
  color: #1c5a35;
  background: rgba(49, 95, 82, 0.12);
}


.contact-form__status--error {
  color: #7a2b2b;
  background: rgba(122, 43, 43, 0.1);
}


.contact-ok .contact-form__status--ok,
.contact-error .contact-form__status--error {
  display: block;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 37, 40, 0.18);
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: rgba(243, 245, 242, 0.65);
  font: inherit;
}


.contact-form textarea {
  resize: vertical;
}


.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(49, 95, 82, 0.14);
}


.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem) 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}


.site-footer p {
  margin: 0;
}


.site-footer a {
  color: var(--sage);
  text-decoration: none;
}


@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2.5rem;
  }


  .hero__media {
    min-height: 26rem;
  }


  .hero__photo img {
    min-height: 26rem;
  }
}


@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }


  .hotel-grid,
  .section--split,
  .contact-section {
    grid-template-columns: 1fr;
  }


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


  .intro-band span:nth-child(2) {
    border-right: 0;
  }


  .intro-band span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}


@media (max-width: 560px) {
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.88rem;
  }


  h1 {
    font-size: 3rem;
  }


  .hero__actions {
    width: 100%;
  }


  .button {
    width: 100%;
  }


  .hero__media {
    grid-template-columns: 1fr;
    min-height: 0;
  }


  .hero__photo--lyo,
  .hero__photo--cris {
    margin: 0;
  }


  .hero__photo img,
  .hotel-card__image img {
    min-height: 20rem;
  }


  .hotel-card {
    grid-template-rows: 18rem auto;
  }


  .contact-form {
    grid-template-columns: 1fr;
  }


  .brand__logo {
    width: 15rem;
    height: 4.7rem;
  }
}
