:root {
  --ink: #272122;
  --muted: #716769;
  --paper: #f7f3f1;
  --white: #ffffff;
  --sand: #ead8d4;
  --sand-dark: #a45b56;
  --sea: #8b4541;
  --sea-dark: #261f21;
  --line: rgba(39, 33, 34, .13);
  --shadow: 0 24px 70px rgba(78, 39, 41, .16);
  --radius: 1.25rem;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--white);
  border-radius: .5rem;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.25rem), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--sand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.display, h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.35rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.24rem); line-height: 1.75; }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head p:last-child { margin-bottom: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255,255,255,.94);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(39,33,34,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { text-decoration: none; display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 212px; height: auto; max-height: 58px; object-fit: contain; object-position: left center; }
.footer-brand .brand-logo { width: 220px; max-height: 62px; }
.nav-list { display: flex; align-items: center; gap: 1.6rem; margin: 0; padding: 0; list-style: none; }
.nav-list a { text-decoration: none; font-size: .87rem; font-weight: 750; letter-spacing: .04em; }
.nav-list a:not(.nav-cta):hover { color: var(--sand-dark); }
.nav-cta {
  padding: .72rem 1.05rem;
  color: var(--white);
  background: var(--sea);
  border-radius: 999px;
}
.lang-link { opacity: .72; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero {
  min-height: 100svh;
  padding: 9.25rem 0 5.25rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(164,91,86,.20), transparent 31rem),
    linear-gradient(180deg, #f9f5f3, #fff 78%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 37rem; height: 37rem;
  right: -19rem; bottom: -18rem;
  border: 1px solid rgba(164,91,86,.22);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.5rem, 6vw, 6.5rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 9ch; margin-bottom: 1.5rem; }
.hero .lead { max-width: 545px; margin-bottom: 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn {
  min-height: 51px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--sea); }
.btn-primary:hover { background: #703431; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.65); }
.btn-secondary:hover { border-color: var(--sea); }
.hero-visual { position: relative; min-height: 650px; }
.hero-photo-main {
  position: absolute;
  inset: 0 7% 4% 0;
  width: 93%; height: 96%;
  object-fit: cover;
  object-position: center;
  border-radius: 16rem 16rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
  clip-path: inset(0 round 16rem 16rem 1.35rem 1.35rem);
}
.hero-photo-card {
  position: absolute;
  right: 0; bottom: 0;
  width: 35%; height: 53%;
  object-fit: cover;
  object-position: center;
  border: 6px solid var(--white);
  border-radius: 1.2rem;
  box-shadow: 0 18px 45px rgba(78,39,41,.18);
  clip-path: inset(0 round 1.2rem);
}
.hero-badge {
  position: absolute;
  left: -2rem; bottom: 4.5rem;
  width: 135px; height: 135px;
  display: grid; place-items: center;
  padding: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--sea);
  text-align: center;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  box-shadow: 0 20px 45px rgba(78,39,41,.24);
}

.quick-facts { padding: 0 0 3rem; margin-top: -1rem; position: relative; z-index: 3; }
.fact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(39,33,34,.09); overflow: hidden;
}
.fact { min-height: 145px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact svg { flex: 0 0 32px; color: var(--sand-dark); }
.fact strong { display: block; margin-bottom: .2rem; font-family: Georgia, serif; font-size: 1.17rem; font-weight: 500; }
.fact span { color: var(--muted); font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-image-wrap { position: relative; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow); background: #ede3df; }
.about-image { width: 100%; aspect-ratio: 4 / 5.2; object-fit: cover; object-position: center; border-radius: inherit; }
.about-copy h2 { max-width: 10ch; margin-bottom: 1.4rem; }
.about-copy .lead { margin-bottom: 1.5rem; }
.about-notes { display: grid; gap: 1rem; margin-top: 2rem; }
.about-note { display: flex; gap: .9rem; align-items: flex-start; }
.about-note b { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--paper); color: var(--sand-dark); display: grid; place-items: center; }

.amenities { color: var(--white); background: var(--sea-dark); position: relative; overflow: hidden; }
.amenities::before {
  content: ""; position: absolute; inset: -20rem auto auto -18rem; width: 43rem; height: 43rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
}
.amenities .eyebrow { color: var(--sand); }
.amenities .lead { color: rgba(255,255,255,.7); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; }
.amenity-card {
  min-height: 195px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1rem;
  background: rgba(255,255,255,.045);
}
.amenity-card svg { width: 31px; height: 31px; color: var(--sand); margin-bottom: 1.5rem; }
.amenity-card h3 { margin-bottom: .55rem; font-size: 1.25rem; }
.amenity-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .9rem; }

.rooms { background: var(--paper); }
.room-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.room-gallery { display: grid; grid-template-columns: 1.18fr .82fr; gap: 1rem; align-items: center; min-width: 0; }
.room-gallery img { display: block; width: 100%; object-fit: cover; object-position: center; border-radius: 1rem; box-shadow: 0 14px 38px rgba(39,33,34,.10); }
.room-gallery img:first-child { height: 560px; }
.room-gallery img:last-child { height: 455px; }
.room-copy h2 { margin-bottom: 1.3rem; }
.room-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.25rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.room-list li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: .94rem; }
.room-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--sand-dark); }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--paper); border-radius: 1rem; box-shadow: 0 10px 30px rgba(39,33,34,.07); min-height: 260px; grid-column: span 3; aspect-ratio: 1 / 1; }
.gallery-item.landscape { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-item.portrait { grid-column: span 3; aspect-ratio: 3 / 4; }
.gallery-item.featured { grid-column: span 6; aspect-ratio: 16 / 11; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.gallery-item::after { content: "+"; position: absolute; right: 1rem; bottom: 1rem; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); font-size: 1.4rem; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.location { padding-bottom: 0; background: var(--paper); }
.location-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 2rem; align-items: stretch; }
.location-copy { padding: clamp(2rem, 5vw, 4.5rem); color: var(--white); background: var(--sea); border-radius: 1rem; }
.location-copy .eyebrow { color: var(--sand); }
.location-copy h2 { margin-bottom: 1.3rem; }
.location-copy p { color: rgba(255,255,255,.76); }
.location-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.location-list li { display: flex; gap: .8rem; align-items: flex-start; }
.location-list svg { flex: 0 0 22px; margin-top: .12rem; color: var(--sand); }
.map-wrap { min-height: 570px; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 570px; border: 0; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.contact-copy h2 { margin-bottom: 1.4rem; }
.contact-details { margin-top: 2rem; display: grid; gap: .65rem; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { color: var(--sand-dark); }
.contact-form { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); border: 1px solid var(--line); border-radius: 1rem; box-shadow: 0 18px 55px rgba(39,33,34,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .42rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: .72rem;
  background: #fff;
  padding: .84rem .9rem;
  color: var(--ink);
  outline: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--sand-dark); box-shadow: 0 0 0 3px rgba(164,91,86,.14); }
.form-field textarea { resize: vertical; min-height: 145px; }
.form-consent { display: flex; gap: .65rem; align-items: flex-start; color: var(--muted); font-size: .8rem; }
.form-consent input { margin-top: .25rem; }
.form-status { min-height: 1.5rem; margin: .9rem 0 0; font-size: .88rem; }
.form-status.success { color: #187344; }
.form-status.error { color: #a52b2b; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { color: rgba(255,255,255,.72); background: var(--sea-dark); }
.footer-top { padding: 4.5rem 0 3rem; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.footer-brand .brand { color: var(--white); margin-bottom: 1.4rem; }
.footer-brand p { max-width: 420px; }
.footer-col h3 { color: var(--white); margin-bottom: 1rem; font-family: inherit; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-col a { display: block; margin: .5rem 0; text-decoration: none; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; font-size: .78rem; }

.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 2rem; background: rgba(26,18,20,.95); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 87vh; border-radius: .8rem; box-shadow: 0 24px 80px rgba(0,0,0,.4); }
.lightbox-close { position: fixed; top: 1.2rem; right: 1.2rem; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 1.5rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .nav-list {
    position: fixed; inset: 0; z-index: 1001;
    display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
    background: var(--paper);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .nav-list.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-list a { font-size: 1.2rem; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid, .about-grid, .room-layout, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 8rem; }
  .hero-copy { max-width: 700px; }
  .hero-visual { min-height: 590px; }
  .quick-facts { margin-top: 0; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .room-copy { order: -1; }
  .map-wrap, .map-wrap iframe { min-height: 470px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .section { padding: 4.5rem 0; }
  .nav-wrap { min-height: 70px; }
  .brand-logo { width: 148px; max-height: 42px; }
  .hero { min-height: auto; padding: 7.6rem 0 4rem; }
  .hero h1 { max-width: 10ch; font-size: clamp(2.85rem, 16vw, 4.4rem); }
  .hero-visual { min-height: 490px; }
  .hero-photo-main { inset: 0 5% 3% 0; width: 95%; border-radius: 9rem 9rem 1rem 1rem; }
  .hero-photo-card { width: 39%; height: 48%; border-width: 7px; }
  .hero-badge { left: -.3rem; bottom: 2rem; width: 104px; height: 104px; font-size: .59rem; }
  .fact-grid, .amenities-grid { grid-template-columns: 1fr; }
  .fact + .fact { border-left: 0; border-top: 1px solid var(--line); }
    .room-gallery { grid-template-columns: 1fr; }
  .room-gallery img:first-child, .room-gallery img:last-child { height: 360px; }
  .room-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; width: 100%; height: 320px; min-height: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.footer-credit { display: inline-flex; align-items: center; margin-left: auto; text-decoration: none; opacity: .9; transition: opacity .2s ease, transform .2s ease; }
.footer-credit:hover { opacity: 1; transform: translateY(-1px); }
.footer-credit img { display: block; width: 96px; height: auto; max-height: 28px; object-fit: contain; }

@media (max-width: 980px) { .gallery-item, .gallery-item.landscape, .gallery-item.portrait, .gallery-item.featured { grid-column: span 6; aspect-ratio: 4 / 3; } }
@media (max-width: 640px) { .brand-logo { width: 186px; max-height: 50px; } .gallery-item, .gallery-item.landscape, .gallery-item.portrait, .gallery-item.featured { grid-column: span 12; aspect-ratio: 4 / 3; } .footer-bottom { justify-content:flex-start; } }

@media (max-width: 640px) { .footer-bottom { justify-content: space-between; align-items: center; } .footer-credit { margin-left: 0; } .footer-credit img { width: 88px; } }


/* Contact block without form */
.contact-simple {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.contact-simple-copy h2 { margin-bottom: 1.4rem; max-width: 12ch; }
.contact-simple-copy .lead { max-width: 560px; margin-bottom: 0; }
.contact-options { display: grid; gap: 1rem; }
.contact-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(39,33,34,.07);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
a.contact-option:hover {
  transform: translateY(-2px);
  border-color: var(--sea);
  box-shadow: 0 18px 48px rgba(39,33,34,.11);
}
.contact-option span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-option strong {
  text-align: right;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 500;
}

/* Larger THAZA signature */
.footer-credit img { width: 138px; max-height: 42px; }

@media (max-width: 980px) {
  .contact-simple { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-option { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .contact-option strong { text-align: left; overflow-wrap: anywhere; }
  .footer-credit img { width: 124px; max-height: 38px; }
}

/* V8 — robust mobile navigation */
@media (max-width: 980px) {
  .site-header {
    background: rgba(255,255,255,.97);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 26px rgba(39,33,34,.07);
    backdrop-filter: blur(16px);
  }

  .nav-wrap {
    position: relative;
    justify-content: flex-start;
  }

  .nav-wrap > .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .menu-toggle {
    -webkit-appearance: none;
    appearance: none;
    display: grid;
    place-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1003;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: var(--sea);
    background: rgba(143,53,57,.08);
    outline: none;
  }

  .menu-toggle span {
    width: 26px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-wrap > nav {
    position: absolute;
    top: calc(100% + .55rem);
    right: 0;
    width: min(360px, calc(100vw - 1.25rem));
    margin: 0;
    z-index: 1002;
  }

  .nav-list {
    position: static;
    inset: auto;
    width: 100%;
    max-height: calc(100svh - 100px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .15rem;
    padding: .65rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,.99);
    box-shadow: 0 22px 55px rgba(39,33,34,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.985);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }

  .nav-list.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a,
  .nav-list .nav-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: .75rem .9rem;
    border-radius: .7rem;
    color: var(--ink);
    background: transparent;
    font-size: 1rem;
    line-height: 1.2;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--sea);
    background: rgba(143,53,57,.07);
    outline: none;
  }

  .nav-list .nav-cta {
    justify-content: center;
    margin-top: .3rem;
    color: #fff;
    background: var(--sea);
  }

  .nav-list .nav-cta:hover,
  .nav-list .nav-cta:focus-visible {
    color: #fff;
    background: var(--sea-dark);
  }

  .lang-link {
    opacity: 1;
  }

  body.nav-open {
    overflow: auto;
  }
}

@media (max-width: 640px) {
  .nav-wrap > nav {
    right: 0;
    width: min(330px, calc(100vw - 1.25rem));
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }
}
