/* Doranax Albion Holdings — shared styles
   Design system: navy (#0A1F44) + white + light gray. Flat, no shadows/gradients.
   Big bold headlines, rectangular buttons (4-6px radius), arrow links, line-art icons. */

:root {
  --navy: #0A1F44;
  --navy-dark: #071530;
  --navy-mid: #123166;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray: #6B7280;
  --gray-light: #E4E8EF;
  --radius: 5px;
  --max-width: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

body.theme-luxury .nav-toggle span {
  background: var(--luxury-ink);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 100%;
}

/* ---------- Arrow links / rectangular buttons ---------- */

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.arrow-link:hover {
  gap: 13px;
}

.arrow-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.arrow-link-light {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--navy-mid);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ---------- Full-bleed hero (with overlay + stat row) ---------- */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,21,48,0.92) 0%, rgba(10,31,68,0.6) 55%, rgba(10,31,68,0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0 0;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 32px;
}

.stat-row {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 72px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* Smaller hero used on sector/service/contact pages (no stat row) */

.page-hero {
  min-height: 26vh;
  align-items: flex-end;
}

.page-hero .hero-inner {
  padding: 28px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0;
}

.page-hero-subheading {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-top: 12px;
}

.page-hero .back-link {
  margin-bottom: 20px;
}

/* ---------- Content split section (text + asymmetric image stack) ---------- */

.split-section {
  padding: 36px 0;
}

.split-section.compact {
  padding: 24px 0 8px;
}

.split-section.compact .split-text p {
  max-width: 640px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-grid.reverse .split-text {
  order: 2;
}

.split-grid.reverse .split-images {
  order: 1;
}

.split-text h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}

.split-text p {
  color: #3E4C61;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.split-images {
  position: relative;
  min-height: 420px;
}

.split-image-main {
  width: 72%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.split-images.single {
  min-height: 0;
}

.split-images.single .split-image-main {
  width: 100%;
}

.split-image-secondary {
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 48%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  border: 6px solid var(--white);
}

/* ---------- Dark navy icon-grid section ---------- */

.dark-section {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
}

.dark-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.dark-section-header h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}

.icon-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.icon-col svg {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--white);
}

.icon-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.icon-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

/* ---------- Homepage sector photo tiles ---------- */

.sectors-section {
  padding: 48px 0 64px;
}

.sectors-section .section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.sector-tile {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.sector-tile.wide {
  grid-column: span 3;
  aspect-ratio: 2 / 1;
}

.sector-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0.1) 0%, rgba(7,21,48,0.85) 100%);
  z-index: 0;
  transition: background 0.3s ease;
}

.sector-tile:hover::after {
  background: linear-gradient(180deg, rgba(10,31,68,0.3) 0%, rgba(7,21,48,0.92) 100%);
}

.sector-tile-label {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ---------- Sector page: services (click-to-expand chips) ---------- */

.services-section {
  padding: 16px 0 32px;
}

.services-section.front-and-center {
  padding-top: 0;
}

.services-section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pill:hover {
  background: var(--off-white);
}

.pill.active {
  background: var(--navy);
  color: var(--white);
}

.pill .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.pill.active .chevron {
  transform: rotate(180deg);
}

.pill.pill-disabled {
  cursor: default;
  opacity: 0.55;
  pointer-events: none;
}

.badge-coming-soon {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--gray-light);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 999px;
}

.service-expand {
  display: none;
  margin-top: 20px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.service-expand.visible {
  display: block;
}

.service-expand-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.service-expand-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.service-expand-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-expand-body p {
  color: var(--gray);
  margin-bottom: 24px;
}

/* Additional services (Consultancy: Concierge, China) */

.additional-services {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-light);
}

.additional-services h2 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.additional-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
}

.additional-image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.additional-card h3 {
  font-size: 1.1rem;
  margin: 20px 24px 10px;
}

.additional-card p {
  color: var(--gray);
  margin: 0 24px 24px;
  font-size: 0.95rem;
}

/* ---------- Featured showcase (large hero-style highlight) ---------- */

.featured-showcase-section {
  padding-top: 0;
}

.featured-showcase {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
}

.featured-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,48,0.1) 0%, rgba(7,21,48,0.9) 100%);
}

.featured-showcase-inner {
  position: relative;
  z-index: 1;
  padding: 48px 48px 44px;
  max-width: 620px;
}

.featured-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.featured-showcase-inner h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.featured-showcase-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
}

/* ---------- Rich service page blocks ---------- */

.rich-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

.rich-intro-text p {
  color: var(--gray);
  margin-bottom: 18px;
}

.rich-intro-text-full p {
  max-width: 760px;
}

.rich-intro-text p:last-child {
  margin-bottom: 0;
}

.rich-intro-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.rich-intro-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.rich-description p {
  color: var(--gray);
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.rich-description p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(var(--feature-cols, 4), 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

video.feature-card-image {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--navy);
}

.feature-card-image-glow {
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(176, 141, 79, 0.35), 0 0 32px 6px rgba(176, 141, 79, 0.28);
}

body.theme-luxury .feature-card-image-glow {
  box-shadow: 0 0 0 1px var(--luxury-gold), 0 0 36px 8px rgba(176, 141, 79, 0.4);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin: 18px 20px 4px;
}

.feature-card-subheading {
  color: var(--navy-mid);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 20px 8px;
}

.feature-card p:not(.feature-card-subheading) {
  color: var(--gray);
  margin: 0 20px 20px;
  font-size: 0.92rem;
}

.feature-card-client-featured {
  width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center top;
  margin: 0 20px 14px;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.18);
}

.feature-card-client-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 20px 20px;
}

.feature-card-client-photo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.18);
}

.category-cards-section {
  background: var(--off-white);
  padding: 56px 0;
}

.category-cards-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 32px;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
}

.category-card-photo {
  padding: 0 0 24px;
  overflow: hidden;
  text-align: center;
}

.category-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.category-card-photo .category-card-title {
  margin-bottom: 8px;
  padding: 0 24px;
}

.category-card-body {
  color: var(--gray);
  padding: 0 24px;
  margin: 0;
}

.category-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.category-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-card-list li {
  color: var(--navy);
  font-weight: 400;
  text-align: left;
  padding: 6px 0;
  border-top: 1px solid var(--gray-light);
}

.category-card-list li:first-child {
  border-top: none;
}

.category-cards-contact {
  display: block;
  text-align: center;
  margin-top: 28px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  padding: 28px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ---------- Product grid (e.g. Yoga Mats) ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 20px;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.product-sold-out {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(10,31,68,0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: var(--radius);
}

.product-card-name {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 16px 0 4px;
}

.product-card-price {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

/* ---------- Scrollable carousel (e.g. bundle variants) ---------- */

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.carousel-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: start;
}

.carousel-card-image {
  aspect-ratio: 1 / 1;
  background: var(--off-white);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.carousel-card-name {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 16px;
}

body.theme-luxury .carousel-card-image {
  filter: saturate(0.85) sepia(0.08);
  border: 1px solid var(--luxury-gold);
}

/* ---------- Yacht listing grid ---------- */

.yacht-grid-intro {
  color: var(--gray);
  max-width: 640px;
  margin: -16px 0 28px;
}

.yacht-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.yacht-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.yacht-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.yacht-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
}

.yacht-card-body {
  padding: 24px;
}

.yacht-card-type {
  color: var(--navy-mid);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.yacht-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.yacht-card-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.yacht-card-location {
  color: #2563eb;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.yacht-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  color: var(--gray);
  font-size: 0.85rem;
}

.yacht-spec {
  display: flex;
  align-items: center;
  gap: 6px;
}

.yacht-spec svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.yacht-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-compare {
  background: var(--gray-light);
  color: var(--navy);
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.yacht-card-avatar {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  flex-shrink: 0;
}

.yacht-card-avatar svg {
  width: 20px;
  height: 20px;
}

/* ---------- Broker contact ---------- */

.broker-contact {
  padding: 56px 0;
  background: var(--off-white);
  scroll-margin-top: 100px;
}

.broker-contact-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.broker-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.broker-photo-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px dashed var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 20px;
  color: var(--gray);
}

.broker-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 20px;
}

.broker-photo-placeholder svg {
  width: 32px;
  height: 32px;
}

.broker-photo-placeholder span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.broker-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.broker-title,
.broker-company {
  color: var(--gray);
  font-size: 0.9rem;
}

.broker-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  text-align: left;
}

.broker-details p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.broker-details p:last-child {
  margin-bottom: 0;
}

.broker-form h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/* ---------- Service page gallery ---------- */

.gallery-section {
  padding: 0 0 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

/* ---------- Service page inline enquiry form ---------- */

.service-enquiry {
  padding-top: 0;
  border-top: 1px solid var(--gray-light);
}

.service-enquiry h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.service-enquiry .contact-form {
  max-width: 520px;
}

/* ---------- Contact page ---------- */

.contact-body {
  padding: 56px 0 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-details h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin: 28px 0 8px;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-details a {
  color: var(--navy);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-status {
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.2em;
}

.form-status-success {
  color: var(--navy);
  font-weight: 600;
}

.form-status-error {
  color: #b3261e;
  font-weight: 600;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 13px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 44px 0;
  font-size: 0.85rem;
  text-align: center;
}

.site-footer strong {
  color: rgba(255,255,255,0.85);
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin: 0;
  max-width: 640px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn,
.cookie-banner-actions .btn-outline {
  padding: 10px 20px;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn,
  .cookie-banner-actions .btn-outline {
    flex: 1;
    text-align: center;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-grid.reverse .split-text,
  .split-grid.reverse .split-images {
    order: initial;
  }
  .split-images {
    min-height: 340px;
  }
  .icon-grid,
  .icon-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sector-tile,
  .sector-tile.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .rich-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .yacht-grid {
    grid-template-columns: 1fr;
  }
  .broker-contact-grid {
    grid-template-columns: 1fr;
  }
  .additional-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-expand-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .stat {
    border-right: none;
    width: 50%;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: 12px;
  }
  .logo {
    font-size: 0.98rem;
    gap: 8px;
    min-width: 0;
  }
  .logo-mark {
    width: 26px;
    height: 26px;
  }
  .site-header .container {
    flex-wrap: nowrap;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero p {
    font-size: 0.98rem;
  }
  .page-hero h1 {
    font-size: 1.7rem;
  }
  .split-text h2,
  .section-heading h2 {
    font-size: 1.55rem;
  }
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .sector-tile,
  .sector-tile.wide {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
  .sector-tile-label {
    font-size: 1.05rem;
    padding: 18px;
  }
  .featured-showcase-inner h2,
  .dark-section-header h2 {
    font-size: 1.6rem;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  body.theme-luxury .site-nav {
    background: var(--luxury-cream);
    border-bottom: 1px solid var(--luxury-gold);
  }
  body.nav-open .site-nav {
    max-height: 220px;
  }
  .site-nav a {
    width: 100%;
    padding: 16px 20px;
    border-top: 1px solid var(--gray-light);
    font-size: 1rem;
  }
  body.theme-luxury .site-nav a {
    border-top: 1px solid var(--luxury-gold);
  }
  .site-header .container {
    position: relative;
  }
  .container {
    padding: 0 20px;
  }
  .icon-grid,
  .icon-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .pills-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pill {
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .process-grid,
  .rich-intro-images {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yacht-card-actions {
    flex-wrap: wrap;
  }
  .featured-showcase-inner {
    padding: 32px 24px 28px;
  }
  .rich-intro-images .rich-intro-image:first-child:nth-last-child(3) {
    grid-column: span 1;
  }
  .split-section,
  .dark-section,
  .services-section {
    padding: 40px 0;
  }
  .stat {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .pills-wrap {
    grid-template-columns: 1fr;
  }
  .hero:not(.page-hero) {
    min-height: 70vh;
  }
}

/* ---------- Coming Soon (in-page panel content) ---------- */

.coming-soon-note {
  background: var(--off-white);
  border-left: 3px solid var(--navy);
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 0.95rem;
}

.coming-soon-banner {
  position: absolute;
  top: 18px;
  right: -42px;
  transform: rotate(40deg);
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 48px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.service-expand-image {
  position: relative;
  overflow: hidden;
}

/* ---------- Login mockup (gated-area design preview, non-functional) ---------- */

.login-mockup-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 72vh;
}

.login-mockup-image {
  background-size: cover;
  background-position: center;
}

.login-mockup-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--off-white);
}

.login-mockup-card {
  width: 100%;
  max-width: 380px;
}

.login-mockup-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.login-mockup-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
}

.login-mockup-body {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 0.98rem;
}

.login-mockup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.login-mockup-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.login-mockup-form input {
  padding: 13px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
}

.login-mockup-form .btn {
  margin-top: 6px;
  justify-content: center;
}

.login-mockup-footnote {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Old-money treatment when this page opts into the luxury theme */
body.theme-luxury .login-mockup-panel {
  background: var(--luxury-cream);
}

body.theme-luxury .login-mockup-card h2 {
  font-family: var(--font-display);
  color: var(--luxury-ink);
}

body.theme-luxury .login-mockup-eyebrow {
  color: var(--luxury-gold);
  font-weight: 600;
}

body.theme-luxury .login-mockup-form label {
  color: var(--luxury-ink);
}

body.theme-luxury .login-mockup-form input {
  background: transparent;
  border: 1px solid var(--luxury-gold);
  border-radius: 2px;
}

body.theme-luxury .login-mockup-form .btn {
  background: var(--luxury-ink);
  border-radius: 2px;
}

body.theme-luxury .login-mockup-image {
  filter: saturate(0.85) sepia(0.08);
}

@media (max-width: 900px) {
  .login-mockup-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .login-mockup-image {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- Contact card (named point-of-contact) ---------- */

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 360px;
  margin-top: 20px;
}

.contact-card-avatar-image,
.contact-card-avatar-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.contact-card-avatar-fallback {
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}

.contact-card-avatar-fallback svg {
  width: 26px;
  height: 26px;
}

.contact-card-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1.02rem;
}

.contact-card-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 2px;
}

body.theme-luxury .contact-card {
  background: var(--luxury-ink);
}

body.theme-luxury .contact-card-name {
  font-family: var(--font-display);
}

/* ---------- Video card (safe third-party video link-out) ---------- */

.video-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.video-card-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.25);
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform 0.2s ease;
}

.video-card-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-body {
  padding: 24px 32px;
}

.video-card-label {
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.video-card-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}

@media (max-width: 720px) {
  .video-card {
    grid-template-columns: 1fr;
  }
}

/* ---------- Logo grid (Advertising sectors/suppliers) ---------- */

.logo-grid-section h2 {
  margin-bottom: 28px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.logo-tile {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}

.logo-tile-image {
  height: 56px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1);
  opacity: 0.75;
  margin-bottom: 12px;
}

.logo-tile p {
  font-size: 0.85rem;
  color: var(--gray);
}

@media (max-width: 720px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Sports & Wellness — luxury / old-money treatment ---------- */
/* Scoped to body.theme-luxury so every page in the sector (hub,
   service, sub-service, rich) picks up the same warmer, more editorial
   styling without touching the shared default theme used elsewhere. */

body.theme-luxury {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --luxury-cream: #F7F3EC;
  --luxury-ink: #1C1A15;
  --luxury-accent: #2F3B2A;
  --luxury-gold: #B08D4F;
  background: var(--luxury-cream);
  color: var(--luxury-ink);
}

body.theme-luxury .site-header {
  background: var(--luxury-cream);
  border-bottom: 1px solid var(--luxury-gold);
}

body.theme-luxury .logo,
body.theme-luxury .site-nav a {
  color: var(--luxury-ink);
}

body.theme-luxury h1,
body.theme-luxury h2,
body.theme-luxury h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.theme-luxury .split-text h2::after,
body.theme-luxury .section-heading h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--luxury-gold);
  margin-top: 14px;
}

body.theme-luxury .arrow-link,
body.theme-luxury .split-text h2,
body.theme-luxury .section-heading h2 {
  color: var(--luxury-ink);
}

body.theme-luxury .btn {
  background: var(--luxury-accent);
  border-radius: 2px;
}

body.theme-luxury .btn-outline {
  border-color: var(--luxury-gold);
  color: var(--luxury-ink);
}

body.theme-luxury .dark-section {
  background: var(--luxury-ink);
}

body.theme-luxury .pill.active,
body.theme-luxury .pill:hover {
  border-color: var(--luxury-gold);
}

body.theme-luxury .split-section:not(.compact),
body.theme-luxury .services-section,
body.theme-luxury .dark-section {
  padding: 96px 0;
}

body.theme-luxury .split-image-main,
body.theme-luxury .split-image-secondary,
body.theme-luxury .feature-card-image,
body.theme-luxury .service-expand-image {
  filter: saturate(0.85) sepia(0.08);
  border: 1px solid var(--luxury-gold);
}

body.theme-luxury .hero {
  filter: saturate(0.85) sepia(0.08);
}

body.theme-luxury .sector-tile-label {
  font-family: var(--font-display);
}
