:root {
  color-scheme: light;
  --bg: #f5f1e8;
  --bg-deep: #e7eef1;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: rgba(255, 252, 247, 0.94);
  --line: rgba(13, 49, 78, 0.16);
  --line-soft: rgba(13, 49, 78, 0.12);
  --gold: #d6ad5c;
  --gold-bright: #e8c977;
  --gold-dark: #9e7330;
  --ivory: #122f4a;
  --cream: #fff8ee;
  --muted: rgba(19, 43, 68, 0.68);
  --teal: #dceaf0;
  --sapphire: #1d3f68;
  --sapphire-deep: #153456;
  --shadow: rgba(19, 43, 68, 0.16);
  --max: 1180px;
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(21, 52, 86, 0.94);
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 0.8rem 2.6rem rgba(7, 28, 48, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-text {
  color: rgba(255, 248, 238, 0.76);
  font-size: 0.82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.7rem;
  color: rgba(255, 248, 238, 0.72);
  font-size: 0.88rem;
}

.nav-link {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 2.1rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  min-width: 2.3rem;
  min-height: 1.55rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  color: rgba(255, 248, 238, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.lang-button.active,
.lang-button:hover {
  color: var(--sapphire-deep);
  background: var(--gold-bright);
}

.main-nav a:hover,
.nav-link:hover,
.nav-cta:hover {
  color: var(--cream);
}

.nav-cta {
  color: var(--gold-bright);
  font-size: 0.88rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--sapphire-deep);
  border-bottom: 1px solid rgba(214, 173, 92, 0.28);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero-luxury-concierge.png") center right / cover no-repeat;
  opacity: 0.32;
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 10rem 0 4rem;
  display: grid;
  align-items: end;
}

.hero-copy {
  max-width: 43rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: 0.92;
  font-weight: 800;
  color: var(--cream);
}

.hero p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.button-primary:hover {
  color: var(--sapphire-deep);
}

.button-secondary:hover {
  color: var(--sapphire);
}

.button-primary {
  background: var(--gold-bright);
  color: var(--sapphire-deep);
  border-color: rgba(214, 173, 92, 0.8);
  box-shadow: 0 0.9rem 2rem rgba(7, 28, 48, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  border-color: rgba(255, 248, 238, 0.28);
}

.guide-secondary {
  color: var(--sapphire);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.guide-teaser {
  position: relative;
  z-index: 11;
  width: min(var(--max), calc(100% - 2rem));
  margin: -3rem auto 2rem;
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.58fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(214, 173, 92, 0.34);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 1.4rem 4rem rgba(19, 43, 68, 0.16);
}

.guide-teaser-media {
  position: relative;
  min-height: 15rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sapphire-deep);
}

.guide-teaser-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(232, 201, 119, 0.36);
  border-radius: calc(var(--radius) - 2px);
}

.guide-teaser-media::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(232, 201, 119, 0.2);
  border-radius: 50%;
}

.guide-preview-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  max-width: 18rem;
  padding: 1.5rem;
  color: var(--cream);
}

.guide-preview-card span,
.guide-teaser-copy > span {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-preview-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.guide-preview-card small {
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.55;
}

.guide-teaser-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  padding: clamp(0.4rem, 2vw, 1.2rem);
}

.guide-teaser-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.guide-teaser-copy p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.guide-teaser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guide-teaser-tags span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--sapphire);
  background: rgba(220, 234, 240, 0.42);
  font-size: 0.82rem;
  font-weight: 750;
}

.category-strip {
  position: sticky;
  z-index: 10;
  top: 4.1rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.9rem max(1rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 252, 247, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
  box-shadow: 0 0.7rem 2rem rgba(19, 43, 68, 0.08);
}

.guide-topic-detail {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.guide-topic-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  font-weight: 800;
}

.guide-topic-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.guide-card-block {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-soft);
}

.guide-card-block > h4 {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.guide-card-item {
  display: grid;
  gap: 0.45rem;
  padding: 0.85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.guide-card-item span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.guide-card-item h5 {
  margin: 0;
  color: var(--sapphire-deep);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 850;
}

.guide-card-item p {
  color: rgba(19, 43, 68, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.guide-note {
  padding: 0.85rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(220, 234, 240, 0.42);
}

.category-button {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.category-button.active,
.category-button:hover {
  color: var(--cream);
  border-color: var(--sapphire);
  background: var(--sapphire);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.4rem;
}

.section-heading h2,
.experience-copy h2,
.request-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.section-heading p,
.experience-copy p,
.request-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  box-shadow: 0 1.5rem 4rem rgba(19, 43, 68, 0.13);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.mini-card:hover {
  border-color: rgba(214, 173, 92, 0.55);
  transform: translateY(-2px);
}

.service-image {
  position: relative;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  background: var(--teal);
}

.service-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.status-pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(158, 115, 48, 0.32);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  color: var(--gold-dark);
  background: rgba(255, 252, 247, 0.76);
  box-shadow: 0 0.8rem 1.7rem rgba(19, 43, 68, 0.14);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.service-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  padding: 1.2rem;
  color: var(--cream);
  background: var(--sapphire-deep);
}

.service-placeholder span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.service-placeholder strong {
  max-width: 16rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.service-card:hover .service-image > img {
  transform: scale(1.04);
}

.service-body {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.service-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold-dark);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
}

.service-card p {
  margin: 0;
  min-height: 3.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.9rem;
}

.service-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: rgba(19, 43, 68, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-brand img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
}

.price {
  color: var(--ivory);
  font-weight: 700;
}

.select-service {
  min-height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.85rem;
  color: var(--sapphire);
  background: transparent;
  cursor: pointer;
}

.select-service.selected {
  color: var(--cream);
  background: var(--sapphire);
  border-color: var(--sapphire);
}

.select-service:disabled {
  color: rgba(19, 43, 68, 0.42);
  border-color: rgba(13, 49, 78, 0.1);
  background: rgba(255, 255, 255, 0.48);
  cursor: not-allowed;
}

.catalog {
  padding-top: 1rem;
}

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

.mini-card {
  display: grid;
  gap: 0.8rem;
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  min-height: 20rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1.1rem 2.8rem rgba(19, 43, 68, 0.1);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mini-card > div:not(.mini-image),
.mini-card > p,
.mini-card > .service-actions {
  margin-inline: 1rem;
}

.mini-card > .service-actions {
  margin-bottom: 1rem;
}

.mini-image {
  position: relative;
  aspect-ratio: 1 / 0.62;
  overflow: hidden;
  background: var(--teal);
}

.mini-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mini-card h3 {
  margin: 0.45rem 0 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 800;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mini-card > .service-brand {
  margin-inline: 1rem;
}

.mini-card .service-actions {
  align-self: end;
}

.experiences {
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background-color: var(--sapphire-deep);
  background-image: url("assets/private-yacht.png");
  background-position: center right;
  background-size: min(42rem, 48vw);
  background-repeat: no-repeat;
  border-top: 1px solid rgba(214, 173, 92, 0.22);
  border-bottom: 1px solid rgba(13, 49, 78, 0.14);
}

.experience-copy {
  max-width: 35rem;
}

.experience-copy h2 {
  color: var(--cream);
}

.experience-copy p {
  color: rgba(255, 248, 238, 0.78);
}

.experience-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  max-width: 40rem;
  margin-top: 2rem;
}

.experience-rail span {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  box-shadow: 0 0.8rem 1.8rem rgba(2, 10, 18, 0.16);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.selected-box {
  display: grid;
  gap: 0.4rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.72);
}

.selected-box span {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.selected-box strong {
  color: var(--ivory);
  line-height: 1.55;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 1.4rem 4rem rgba(19, 43, 68, 0.1);
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ivory);
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--gold);
}

.wide {
  grid-column: 1 / -1;
}

.form-output {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ivory);
  background: rgba(220, 234, 240, 0.45);
  line-height: 1.55;
  white-space: pre-wrap;
}

body.modal-open {
  overflow: hidden;
}

.service-modal[hidden],
.guide-modal[hidden] {
  display: none;
}

.service-modal,
.guide-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.guide-modal {
  z-index: 45;
}

.service-modal-backdrop,
.guide-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 31, 50, 0.58);
  backdrop-filter: blur(8px);
}

.service-modal-panel {
  position: relative;
  width: min(58rem, 100%);
  max-height: min(44rem, calc(100vh - 2rem));
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1fr);
  overflow: hidden;
  border: 1px solid rgba(214, 173, 92, 0.38);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 2rem 6rem rgba(7, 28, 48, 0.34);
}

.guide-menu-panel {
  position: relative;
  width: min(68rem, 100%);
  max-height: min(48rem, calc(100vh - 2rem));
  overflow: hidden;
  border: 1px solid rgba(214, 173, 92, 0.38);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 2rem 6rem rgba(7, 28, 48, 0.34);
}

.guide-menu-head {
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.2rem) 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}

.guide-menu-head > span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-menu-head h3 {
  max-width: 38rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 1.06;
  font-weight: 850;
}

.guide-menu-head p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-menu-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  max-height: calc(100vh - 13.5rem);
  overflow: hidden;
  padding: 1rem clamp(1.2rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2rem);
}

.guide-topic-list {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.guide-topic-button {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--sapphire);
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.guide-topic-button:hover,
.guide-topic-button.active {
  color: var(--sapphire-deep);
  border-color: rgba(214, 173, 92, 0.58);
  background: rgba(232, 201, 119, 0.22);
}

.guide-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}

.guide-related-label {
  flex-basis: 100%;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-service-link {
  min-height: 2.35rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(21, 52, 86, 0.18);
  border-radius: var(--radius);
  color: var(--sapphire-deep);
  background: rgba(220, 234, 240, 0.46);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 248, 238, 0.72);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(21, 52, 86, 0.88);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.service-modal-media {
  position: relative;
  min-height: 24rem;
  background: var(--bg-deep);
}

.service-modal-media > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-modal-content {
  display: grid;
  align-content: start;
  gap: 1rem;
  overflow-y: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.service-modal-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 800;
}

.service-modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-section {
  display: grid;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
}

.modal-section h4 {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.modal-section ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ivory);
  line-height: 1.55;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.hidden {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .guide-teaser,
  .request-section,
  .service-modal-panel,
  .guide-menu-layout {
    grid-template-columns: 1fr;
  }

  .guide-teaser {
    margin-top: 1rem;
  }

  .service-modal-panel {
    overflow-y: auto;
  }

  .service-modal-media {
    min-height: 18rem;
  }

  .guide-menu-layout {
    max-height: calc(100vh - 14rem);
    overflow-y: auto;
  }

  .guide-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-topic-button {
    min-height: 3.1rem;
    padding: 0.65rem 0.7rem;
    font-size: 0.9rem;
  }

  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand-text {
    display: none;
  }

  .nav-cta {
    font-size: 0.76rem;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .language-switch {
    min-height: 1.9rem;
  }

  .lang-button {
    min-width: 2rem;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .category-strip {
    top: 3.8rem;
  }

  .guide-teaser {
    width: calc(100% - 1.25rem);
    margin-bottom: 1rem;
    padding: 0.75rem;
  }

  .guide-teaser-media {
    min-height: 12.5rem;
  }

  .guide-teaser-copy {
    padding: 0.4rem;
  }

  .featured-grid,
  .catalog-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .experiences {
    background-color: var(--sapphire-deep);
    background-image: url("assets/private-yacht.png");
    background-position: bottom right;
    background-size: 19rem;
    background-repeat: no-repeat;
    padding-bottom: 14rem;
  }
}
