:root {
  /* Brand palette reference:
     #f2a77d, #d87053, #fecdad, #f9e1dd, #d1a854, #801500, #4f1c12 */
  --color-primary: #c9a86c;
  --color-secondary: #2c2c2c;
  --color-background: #faf9f7;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-accent: #e8dfd5;
  --brand-peach: #f2a77d;
  --brand-terracotta: #d87053;
  --brand-light-peach: #fecdad;
  --brand-blush: #f9e1dd;
  --brand-gold: #d1a854;
  --brand-burgundy: #801500;
  --brand-brown: #4f1c12;
  --font-lazuardi: "Lazuardi", serif;
  --font-heading: "M PLUS 2", system-ui, sans-serif;
  --font-body: "M PLUS 2", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container::before {
  content: "";
  position: absolute;
  top: 34rem;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
  background-image:
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png"),
    url("./brand-cloud.png");
  background-position:
    left -380px top 1rem,
    right -430px top 12rem,
    left -410px top 31rem,
    right -360px top 50rem,
    left -440px top 72rem,
    right -430px top 92rem,
    left -390px bottom 13rem,
    right -400px bottom -4rem;
  background-repeat: no-repeat;
  background-size:
    780px auto,
    690px auto,
    740px auto,
    800px auto,
    690px auto,
    760px auto,
    700px auto,
    720px auto;
  opacity: 0.64;
  filter: saturate(1.18) contrast(1.14);
  mix-blend-mode: multiply;
}

/* Header */
.header {
  --header-padding: clamp(3rem, 8vw, 6rem);
  --logo-width: min(60vw, 720px);
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--header-padding) 0 calc(var(--header-padding) * 0.7);
  background:
    url("./brand-cloud.png") center 42% / min(720px, 72vw) auto no-repeat,
    transparent;
}

.logo {
  display: block;
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 1.25rem;
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.1rem 0;
  border-bottom: 1px solid transparent;
  color: var(--brand-brown);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  border-color: currentColor;
  color: var(--brand-terracotta);
}

.nav-link:focus-visible {
  outline: 1px solid var(--brand-brown);
  outline-offset: 5px;
}

/* Main Content */
.main {
  position: relative;
  z-index: 0;
  padding: 4rem 0;
}

.info-section {
  text-align: center;
  margin-bottom: 4rem;
}

.info-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.address {
  background: transparent;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: none;
  display: inline-block;
  min-width: 300px;
}

address {
  font-style: normal;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

address p {
  color: var(--color-text);
}

.hours {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-top: 1rem;
  border-top: 1px solid var(--color-accent);
}

.hours strong {
  color: var(--color-secondary);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-media {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  min-height: 340px;
  overflow: hidden;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 24vw, 260px);
  height: clamp(180px, 24vw, 260px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(79, 28, 18, 0.14);
}

.about-media::before,
.about-media::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: clamp(118px, 16vw, 178px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.58;
  pointer-events: none;
}

.about-media::before {
  right: calc(50% + 253px);
  top: 91%;
  aspect-ratio: 764 / 1103;
  background-image: url("./albero-1.png");
  transform: translateY(-50%) scale(1.46, -1.2) rotate(-86deg);
  transform-origin: right center;
}

.about-media::after {
  left: 50%;
  top: 39%;
  aspect-ratio: 764 / 1103;
  background-image: url("./albero-1.png");
  transform: translate(144px, -54%) scaleX(1.46) rotate(18deg);
  transform-origin: left center;
}

.about-content {
  order: 1;
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  color: var(--brand-terracotta);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.about-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.about-content .about-subtitle {
  color: var(--brand-terracotta);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-content p {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.contact-section {
  margin-bottom: 4rem;
}

.contact-content {
  width: min(100%, 780px);
  margin: 0 auto;
  text-align: center;
}

.contact-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.contact-address {
  margin: 1.5rem 0 1.75rem;
  color: var(--color-text);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.contact-link {
  color: var(--brand-brown);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  transition: color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--brand-terracotta);
}

.contact-link:focus-visible {
  outline: 1px solid var(--brand-brown);
  outline-offset: 5px;
}

/* Booking Section */
.booking-section {
  text-align: center;
}

.booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  background: #d87053;
  color: white;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(216, 112, 83, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-button:hover,
.booking-button:focus-visible {
  background: #801500;
  box-shadow: 0 12px 28px rgba(128, 21, 0, 0.22);
  transform: translateY(-1px);
}

.booking-button:focus-visible {
  outline: 2px solid #4f1c12;
  outline-offset: 3px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--color-accent);
  margin-top: 2rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    --header-padding: clamp(2.5rem, 14vw, 4rem);
    --logo-width: 82vw;
  }

  .main {
    padding: 3rem 0;
  }

  .container::before {
    top: 28rem;
    background-position:
      left -310px top 0,
      right -340px top 12rem,
      left -340px top 30rem,
      right -310px top 48rem,
      left -350px top 66rem,
      right -340px top 82rem,
      left -320px bottom 10rem,
      right -330px bottom -2rem;
    background-size:
      500px auto,
      470px auto,
      500px auto,
      520px auto,
      460px auto,
      500px auto,
      460px auto,
      480px auto;
    opacity: 0.48;
    filter: saturate(1.12) contrast(1.1);
  }

  .address {
    min-width: auto;
    width: 100%;
    padding: 2rem;
  }

  .booking-button {
    width: 100%;
    max-width: 22rem;
  }

  .site-nav {
    top: 0.85rem;
    right: 1rem;
    gap: 0.85rem;
  }

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

  .about-section {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about-photo {
    width: 190px;
    height: 190px;
  }

  .about-media {
    min-height: 260px;
  }

  .about-media::before {
    right: calc(50% + 95px);
    width: 112px;
    transform: translateY(-46%) scale(1.34, -1) rotate(-18deg);
  }

  .about-media::after {
    width: 112px;
    transform: translate(56px, -54%) scaleX(1.34) rotate(18deg);
  }

  .contact-section {
    margin-bottom: 3rem;
  }

  .contact-links {
    align-items: center;
    flex-direction: column;
  }
}
