:root {
  --ink: #082f35;
  --ink-soft: #295158;
  --deep: #07383e;
  --deep-2: #0d4b52;
  --mint: #b9ddd5;
  --foam: #e9f4f1;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --copper: #d9825b;
  --line: rgba(8, 47, 53, 0.16);
  --shadow: 0 24px 70px rgba(5, 44, 49, 0.16);
  --radius: 1.35rem;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 12% 5%, rgba(185, 221, 213, 0.3), transparent 28%), radial-gradient(circle at 86% 34%, rgba(217, 130, 91, 0.12), transparent 22%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0.85rem auto 0;
  padding: 0.8rem 0.9rem 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.88);
  box-shadow: 0 12px 40px rgba(8, 47, 53, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.65rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.32rem;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.language-toggle,
.menu-toggle {
  min-height: 2.7rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.language-toggle {
  min-width: 3.45rem;
  padding: 0 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  appearance: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-note {
  max-width: 41rem;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--deep);
  border-radius: 999px;
  color: var(--white);
  background: var(--deep);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--deep-2);
  box-shadow: 0 12px 30px rgba(7, 56, 62, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1.05rem;
  font-size: 0.88rem;
}

.button-light {
  border-color: var(--white);
  color: var(--deep);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
}

.text-link,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--ink);
  font-weight: 750;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(calc(100% - 2rem), var(--max));
  min-height: calc(100vh - 6rem);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.hero-copy {
  padding: 2rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--deep-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

h1,
h2,
h3,
blockquote {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.9rem;
  font-size: 1.75rem;
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 2.3rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 0.88rem;
  font-weight: 650;
}

.trust-list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--copper);
}

.hero-visual {
  position: relative;
  min-height: 42rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: -1.1rem;
  width: 54%;
  height: 58%;
  border: 1px solid rgba(8, 47, 53, 0.3);
  border-radius: 50% 50% 45% 55%;
  transform: rotate(8deg);
}

.hero-visual img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 91%;
  height: 100%;
  border-radius: 48% 48% 1.5rem 1.5rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.availability-card {
  position: absolute;
  right: auto;
  bottom: 2.1rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 40px rgba(8, 47, 53, 0.16);
  backdrop-filter: blur(14px);
}

.availability-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 5px rgba(217, 130, 91, 0.18);
}

.availability-card div {
  display: grid;
}

.availability-card span:last-child {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--deep);
}

.booking-strip p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr 0.8fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading > * {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.66);
}

.service-card-featured {
  color: var(--white);
  background: var(--deep);
}

.service-card-featured a {
  color: var(--white);
}

.service-number {
  margin-bottom: auto;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card a {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.about,
.atmosphere {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.about-image,
.atmosphere-image {
  position: relative;
}

.about-image::after,
.atmosphere-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mint);
  filter: blur(1px);
}

.about-image::after {
  right: -8%;
  bottom: -10%;
}

.atmosphere-image::after {
  top: -7%;
  left: -8%;
  background: rgba(217, 130, 91, 0.28);
}

.about img,
.atmosphere img {
  width: 100%;
  height: min(64vw, 38rem);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy p,
.atmosphere-copy > p:last-of-type {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

blockquote {
  margin: 2rem 0;
  padding-left: 1.4rem;
  border-left: 3px solid var(--copper);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.details-list {
  margin: 2rem 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--ink-soft);
}

.details-list dd {
  margin: 0;
  font-weight: 750;
}

.atmosphere-copy > .button {
  margin-top: 1.5rem;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 8vw, 7rem);
  width: min(calc(100% - 2rem), var(--max));
  margin-bottom: 2rem;
  padding: clamp(3rem, 7vw, 5.5rem);
  border-radius: calc(var(--radius) * 1.25);
  color: var(--white);
  background: var(--deep);
}

.contact h2 {
  max-width: 11ch;
}

.contact > div > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
}

.social-panel {
  display: grid;
  align-content: center;
}

.social-panel p {
  color: var(--mint) !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-panel a {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2.4rem 0 3rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer > div {
  display: grid;
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
}

.link-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: grid;
  max-width: 22rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: var(--white);
  background: var(--deep);
  box-shadow: var(--shadow);
}

.link-notice[hidden] {
  display: none;
}

.link-notice span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    border-radius: 1.2rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 35rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 18rem;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    width: calc(100% - 1rem);
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.6rem;
  }

  .brand-copy small,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .header-actions {
    justify-self: stretch;
  }

  .language-toggle {
    margin-left: auto;
  }

  .hero,
  .section,
  .contact,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-actions,
  .booking-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    margin-top: 0.4rem;
  }

  .hero-visual {
    min-height: 29rem;
  }

  .hero-visual img {
    width: 96%;
  }

  .availability-card {
    bottom: 1rem;
    left: 0;
  }

  .booking-strip {
    padding: 1.3rem 1rem;
  }

  .about,
  .atmosphere {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .atmosphere-copy {
    order: 2;
  }

  .about img,
  .atmosphere img {
    height: 28rem;
  }

  .contact {
    padding: 2rem 1.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.3rem;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

