:root {
  --teal-950: #073f42;
  --teal-900: #0d5558;
  --teal-700: #16777a;
  --aqua: #69c9c8;
  --cream: #fbf7ed;
  --cream-deep: #efe5d2;
  --gold: #c79236;
  --gold-light: #edca79;
  --ink: #073f42;
  --shadow: 0 28px 80px rgb(4 49 51 / 24%);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--teal-950);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  color: var(--cream);
  background: var(--teal-950);
  border: 1px solid var(--gold);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(480px, 44%) 1fr;
  background: var(--cream);
  overflow: hidden;
}

.hero__photo {
  grid-column: 2;
  min-height: 720px;
  background-image:
    linear-gradient(90deg, var(--cream) 0%, rgb(251 247 237 / 8%) 21%, transparent 38%),
    linear-gradient(0deg, rgb(7 63 66 / 19%), transparent 45%),
    url("assets/interior.jpg");
  background-size: cover;
  background-position: right center;
}

.hero__content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(640px, calc(100% - 4rem));
  margin: 2rem 0 2rem max(2rem, 6vw);
  padding: 2.4rem clamp(2rem, 4vw, 4.5rem) 2rem;
  text-align: center;
  background:
    linear-gradient(rgb(255 252 245 / 97%), rgb(251 247 237 / 97%)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__content::before {
  inset: 9px;
  border: 1px solid rgb(199 146 54 / 48%);
}

.hero__content::after {
  inset: 17px;
  border: 1px solid rgb(13 85 88 / 9%);
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(124px, 15vw, 180px);
  height: auto;
  margin: -0.8rem auto 0.6rem;
  padding: 5px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgb(6 64 66 / 14%);
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 9em;
  margin: 0 auto 0.8rem;
  color: var(--teal-950);
  font-size: clamp(2.7rem, 4.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

h1 em {
  color: var(--teal-700);
  font-style: italic;
  white-space: nowrap;
}

.intro {
  position: relative;
  z-index: 1;
  margin: 0 auto 0.75rem;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.45;
}

.offer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  color: var(--teal-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer p {
  margin: 0;
}

.offer span {
  color: var(--gold);
  font-size: 0.48rem;
}

.reserve-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  color: #153c3e;
  background: linear-gradient(135deg, #f2d288 0%, #c79236 52%, #e9c269 100%);
  border: 1px solid #ac7825;
  box-shadow: 0 8px 22px rgb(169 117 31 / 24%), inset 0 1px rgb(255 255 255 / 50%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.reserve-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reserve-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 12px 28px rgb(169 117 31 / 31%), inset 0 1px rgb(255 255 255 / 50%);
}

.reserve-button:active {
  transform: translateY(0);
}

.reserve-button:focus-visible,
.details a:focus-visible,
.socials a:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  margin: 1.25rem 0 0;
  font-family: Arial, Helvetica, sans-serif;
}

.details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.address {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.address svg,
.email svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.socials {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--teal-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cream);
  background: var(--teal-900);
  border: 1px solid var(--teal-900);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.socials a:hover {
  color: var(--teal-900);
  background: transparent;
  transform: translateY(-2px);
}

.socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.socials a:last-of-type svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.socials a:last-of-type .socials__dot {
  fill: currentColor;
  stroke: none;
}

.ornament {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament span {
  font-size: 0.8rem;
}

.ornament--top {
  margin: -0.3rem 0 0.7rem;
}

.ornament--bottom {
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    display: block;
    padding: clamp(2rem, 8vw, 5rem) 1rem;
    background:
      linear-gradient(90deg, rgb(5 55 57 / 56%), rgb(5 55 57 / 12%)),
      url("assets/interior.jpg") right center / cover;
  }

  .hero__photo {
    display: none;
  }

  .hero__content {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(3rem, 9vw, 5rem);
  }
}

@media (max-width: 560px) {
  html {
    min-height: 100%;
    background-image:
      linear-gradient(rgb(7 63 66 / 48%), rgb(7 63 66 / 62%)),
      url("assets/interior.jpg");
    background-position: center, right center;
    background-size: auto, cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  body {
    min-height: 100vh;
    min-height: 100dvh;
    background: transparent;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: clamp(0.75rem, 4vw, 1.1rem);
    padding-top: max(clamp(0.75rem, 4vw, 1.1rem), env(safe-area-inset-top));
    padding-right: max(clamp(0.75rem, 4vw, 1.1rem), env(safe-area-inset-right));
    padding-bottom: max(clamp(0.75rem, 4vw, 1.1rem), env(safe-area-inset-bottom));
    padding-left: max(clamp(0.75rem, 4vw, 1.1rem), env(safe-area-inset-left));
    background: transparent;
  }

  .hero::before {
    content: none;
  }

  .hero__content {
    margin: 0 auto;
    padding: 2rem 1.35rem 1.6rem;
    box-shadow: 0 20px 52px rgb(4 49 51 / 35%);
  }

  .hero__content::before {
    inset: 8px;
  }

  .logo {
    width: 132px;
  }

  .offer {
    flex-direction: column;
    gap: 0.35rem;
  }

  .offer span {
    display: none;
  }

  .reserve-button {
    width: 100%;
  }

  .socials span {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
