:root {
  --ink: #12202b;
  --ink-soft: #3e4b54;
  --paper: #ffffff;
  --paper-alt: #f6f4ef;
  --brass: #a9793b;
  --brass-deep: #8a6027;
  --line: #ded9cd;
  --serif: "Fraunces", serif;
  --sans: "Inter", sans-serif;
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

::selection {
  background: var(--brass);
  color: #fff;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  transition:
    background 0.5s ease,
    padding 0.4s ease,
    border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  /* font-family: var(--serif); */
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

header.scrolled .logo,
header.scrolled nav a,
header.scrolled .header-cta,
header.scrolled .country-btn {
  color: var(--ink);
}

.logo:not(.dark),
nav a:not(.dark),
.header-cta:not(.dark),
.country-btn:not(.dark) {
  color: #fff;
}

header.on-light .logo,
header.on-light nav a,
header.on-light .header-cta,
header.on-light .country-btn {
  color: var(--ink);
}

header.on-light .header-cta,
header.on-light .country-btn {
  border-color: var(--ink);
}

.logo svg {
  width: 26px;
  height: 26px;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 3px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s ease;
}

nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Country Selector */
.country-select {
  position: relative;
}

.country-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 13px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
  line-height: 1;
}

.country-btn .flag-slot {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.country-btn .country-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.country-btn .country-chevron {
  width: 8px;
  height: 5px;
  stroke: currentColor;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.country-select.open .country-btn .country-chevron {
  transform: rotate(180deg);
}

header.scrolled .country-btn {
  border-color: rgba(18, 32, 43, 0.22);
}

.country-btn.dark {
  color: var(--ink);
  border-color: rgba(18, 32, 43, 0.22);
}

.country-btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.country-btn.dark:hover,
header.scrolled .country-btn:hover {
  border-color: var(--brass-deep);
  color: var(--brass-deep);
}

/* Country Dropdown */
.country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow:
    0 14px 32px rgba(18, 32, 43, 0.12),
    0 2px 6px rgba(18, 32, 43, 0.04);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 120;
}

.country-select.open .country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.country-option:hover {
  background: rgba(169, 121, 59, 0.08);
  color: var(--brass-deep);
}

.country-option.active {
  background: rgba(169, 121, 59, 0.12);
  color: var(--brass-deep);
  font-weight: 600;
}

.country-option .option-sub {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-left: auto;
  margin-right: 6px;
}

.country-option .check-icon {
  width: 12px;
  height: 12px;
  color: var(--brass-deep);
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.country-option.active .check-icon {
  opacity: 1;
}

/* India coming soon notice toast */
.country-notice {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(18, 32, 43, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  max-width: 92vw;
  width: max-content;
}

.country-notice.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.country-notice .notice-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.country-notice .notice-text {
  font-size: 13px;
  line-height: 1.45;
}

.country-notice .notice-text strong {
  display: block;
  font-weight: 600;
  color: #e7c793;
  margin-bottom: 2px;
}

.country-notice .notice-text span {
  color: rgba(255, 255, 255, 0.85);
}

.country-notice .notice-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  margin-left: 6px;
  transition: color 0.2s ease;
}

.country-notice .notice-close:hover {
  color: #fff;
}

.header-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 9px 18px;
  border-radius: 2px;
  transition: all 0.35s ease;
}

header.scrolled .header-cta {
  border-color: var(--ink);
}

.header-cta:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
}

/* ---------- Single Page Home (Locked 100vh, No Scroll) ---------- */
body[data-page="home"] {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 36px;
  background: linear-gradient(
    180deg,
    rgba(12, 24, 34, 0.95) 0%,
    rgba(12, 24, 34, 0) 100%
  );
  pointer-events: none;
}

.logo-centered {
  color: #ffffff;
  /* font-family: var(--serif); */
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  pointer-events: auto;
}

.logo-centered svg {
  width: 26px;
  height: 26px;
  color: #e7c793;
}

.single-home {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 30px;
  background: #0c1822;
  box-sizing: border-box;
}

.single-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.single-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(0.8);
}

.single-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(18, 32, 43, 0.3) 0%,
    rgba(12, 24, 34, 0.85) 65%,
    rgba(9, 18, 25, 0.98) 100%
  );
}

.home-split {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
  color: #ffffff;
  opacity: 1 !important;
}

.home-main {
  max-width: 660px;
  opacity: 1 !important;
}

.home-flags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  opacity: 1 !important;
}

.flag-badge {
  display: inline-flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.6),
    0 0 0 1.5px rgba(231, 199, 147, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 1 !important;
}

.flag-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.7),
    0 0 0 1.5px var(--brass);
}

.flag-icon-prominent {
  width: 50px;
  height: 33px;
  display: block;
}

.home-title {
  /* font-family:var(--serif); */
  font-weight: 400;
  font-size: clamp(44px, 4.8vw, 76px);
  line-height: 1.02;
  color: #ffffff !important;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  opacity: 1 !important;
}

.home-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #e7c793 !important;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  opacity: 1 !important;
}

.home-about {
  font-family: var(--sans);
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 22px;
  font-weight: 400;
  opacity: 1 !important;
}

.home-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
  opacity: 1 !important;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: #e7c793 !important;
  border-bottom: 1px solid rgba(231, 199, 147, 0.5);
  padding-bottom: 2px;
  transition: all 0.25s ease;
  opacity: 1 !important;
}

.contact-email:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
}

/* Right Side: Our Companies Highlighted Panel */
.home-companies-aside {
  width: 100%;
  opacity: 1 !important;
}

.companies-panel {
  background: rgba(15, 27, 37, 0.92);
  border: 1.5px solid rgba(231, 199, 147, 0.5);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 40px rgba(169, 121, 59, 0.16);
  border-radius: 8px;
  padding: 32px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.companies-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 500;
  color: #e7c793 !important;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1 !important;
}

.companies-title::after {
  content: "";
  width: 36px;
  height: 1.5px;
  background: #e7c793;
  opacity: 0.65;
}

.companies-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1 !important;
}

.company-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1 !important;
  visibility: visible !important;
}

.company-card:hover {
  background: rgba(169, 121, 59, 0.28);
  border-color: #e7c793;
  transform: translateX(6px);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(231, 199, 147, 0.25);
}

.company-name {
  /* font-family: var(--serif); */
  font-size: clamp(15px, 1.15vw, 16.5px);
  line-height: 1.35;
  color: #ffffff !important;
  font-weight: 500;
  opacity: 1 !important;
  display: block;
}

.company-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #e7c793 !important;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
  opacity: 1 !important;
}

.company-card:hover .company-arrow {
  transform: translate(3px, -3px);
  color: #ffffff !important;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  transform: scale(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 43, 0.35) 0%,
    rgba(18, 32, 43, 0.15) 35%,
    rgba(18, 32, 43, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 40px 90px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.04;
  max-width: 920px;
  letter-spacing: -0.01em;
}

.hero-sub {
  max-width: 460px;
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.hero-meta {
  display: flex;
  gap: 60px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-meta div {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
}

.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.hero-meta span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  height: 66vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-media img {
  transform: scale(1.04);
}

.breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 40px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--brass);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 40px 70px;
}

.page-hero-inner .brand-tag {
  color: #e7c793;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.08;
  max-width: 820px;
}

/* ---------- Intro ---------- */
.intro {
  padding: 130px 0 100px;
  border-bottom: 1px solid var(--line);
}

.intro .wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.intro-label {
  font-size: 13px;
  color: var(--brass-deep);
  font-weight: 600;
}

.intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.32;
  color: var(--ink);
  max-width: 640px;
}

.intro-foot {
  display: flex;
  gap: 50px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.intro-foot div {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.intro-foot strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ---------- Content block (subpages) ---------- */
.content {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.content .wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}

.content-label {
  font-size: 13px;
  color: var(--brass-deep);
  font-weight: 600;
}

.content-body p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 680px;
}

.content-note {
  margin-top: 40px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 560px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brass-deep);
  margin-top: 40px;
}

.back-link svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

/* ---------- Verticals ---------- */
.verticals {
  background: var(--paper-alt);
  padding: 110px 0 60px;
}

.verticals-head {
  padding: 0 40px 70px;
  max-width: 640px;
}

.verticals-head .intro-label {
  margin-bottom: 18px;
  display: block;
}

.verticals-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
}

.brand-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.brand-row:last-child {
  border-bottom: 1px solid var(--line);
}

.brand-row.reverse {
  direction: rtl;
}

.brand-row.reverse > * {
  direction: ltr;
}

.brand-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.brand-media .clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 100% 0);
}

.brand-media img {
  transform: scale(1.12);
}

.brand-copy {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--brass-deep);
  margin-bottom: 20px;
}

.brand-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.18;
  margin-bottom: 18px;
}

.brand-tag {
  font-size: 14px;
  color: var(--brass-deep);
  font-weight: 600;
  margin-bottom: 22px;
}

.brand-copy p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 34px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    gap 0.3s ease;
}

.brand-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.brand-link:hover {
  color: var(--brass-deep);
  border-color: var(--brass-deep);
  gap: 14px;
}

.brand-link:hover svg {
  transform: translate(2px, -2px);
}

/* ---------- Stats ---------- */
.stats {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 3.6vw, 50px);
  color: var(--ink);
  margin-bottom: 10px;
}

.stat span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: block;
  max-width: 180px;
}

/* ---------- CTA / Contact ---------- */
.cta {
  padding: 130px 0;
  text-align: center;
}

.cta .intro-label {
  display: block;
  margin-bottom: 22px;
}

.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 5vw, 58px);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.18;
}

.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brass-deep);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-brand {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.foot-top p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.foot-col h4 {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

.foot-col a,
.foot-col div {
  display: block;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.65);
}

.foot-col a:hover {
  color: var(--brass);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 26px;
  height: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .intro .wrap,
  .content .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-row,
  .brand-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .brand-media {
    min-height: 320px;
  }

  .brand-copy {
    padding: 48px 28px;
  }

  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wrap {
    padding: 0 22px;
  }

  header {
    padding: 20px 22px;
  }

  .hero-inner {
    padding: 0 22px 60px;
  }

  .breadcrumb,
  .page-hero-inner {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* Single home responsive */
  body[data-page="home"] {
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .home-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-home {
    height: auto;
    min-height: 100vh;
    max-height: none;
    overflow: visible;
    padding: 100px 24px 60px;
    align-items: flex-start;
  }

  .home-header {
    padding: 20px 24px;
  }

  .home-main {
    max-width: 100%;
  }

  .companies-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .header-actions {
    gap: 8px;
  }

  .country-btn {
    padding: 7px 9px;
    font-size: 12px;
    gap: 6px;
  }

  .country-btn .country-label {
    font-size: 12px;
  }

  .header-cta {
    padding: 7px 12px;
    font-size: 12px;
  }

  .country-dropdown {
    min-width: 160px;
  }

  .home-header {
    padding: 16px 20px;
  }

  .logo-centered {
    font-size: 21px;
    gap: 9px;
  }

  .logo-centered svg {
    width: 22px;
    height: 22px;
  }

  .flag-icon-prominent {
    width: 42px;
    height: 28px;
  }

  .single-home {
    padding: 88px 18px 44px;
  }

  .companies-panel {
    padding: 22px 16px;
  }

  .company-card {
    padding: 16px 16px;
    gap: 12px;
  }
}

/* ---------- Dedicated Company Page ---------- */
body[data-page="dedicated"] {
  background: #0c1822;
  color: #ffffff;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.dedicated-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  box-sizing: border-box;
  background: #0c1822;
  position: relative;
}

.dedicated-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

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

.dedicated-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(231, 199, 147, 0.3);
  background: #132431;
}

.dedicated-media.dedicated-gallery {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dedicated-image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(231, 199, 147, 0.3);
  background: #132431;
}

.dedicated-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

.dedicated-gallery .dedicated-image {
  height: 250px;
  max-height: 250px;
  transition: transform 0.35s ease;
}

.dedicated-media.dedicated-gallery-trio {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dedicated-gallery-trio .dedicated-image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(231, 199, 147, 0.3);
  background: #132431;
}

.dedicated-gallery-trio .dedicated-image-card.cash-bottom {
  grid-column: 1 / -1;
}

.dedicated-gallery-trio .land-one .dedicated-image,
.dedicated-gallery-trio .land-two .dedicated-image {
  width: 100%;
  height: 210px;
  max-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.dedicated-gallery-trio .cash-bottom .dedicated-image {
  width: 100%;
  /* height: 210px; */
  /* max-height: 210px; */
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.dedicated-gallery-trio .dedicated-image-card:hover .dedicated-image,
.dedicated-image-card:hover .dedicated-image {
  transform: scale(1.025);
}

.dedicated-media.dedicated-gallery-pair {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dedicated-gallery-pair .dedicated-image-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(231, 199, 147, 0.3);
  background: #132431;
}

.dedicated-gallery-pair .dedicated-image {
  width: 100%;
  height: 310px;
  max-height: 310px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.dedicated-content {
  color: #ffffff;
}

.dedicated-title {
  /* font-family: var(--serif); */
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.08;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.dedicated-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  color: #e7c793;
  line-height: 1.3;
  margin-bottom: 22px;
  font-weight: 400;
}

.dedicated-body {
  font-family: var(--sans);
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.dedicated-body p {
  margin-bottom: 16px;
}

.dedicated-body p:last-child {
  margin-bottom: 0;
}

.dedicated-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.dedicated-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: #ffffff !important;
  text-decoration: none;
  /* font-family: var(--serif); */
  font-size: 15px;
  font-weight: 400;
  transition: all 0.25s ease;
}

.dedicated-nav-item:hover {
  background: rgba(169, 121, 59, 0.2);
  border-color: #e7c793;
  transform: translateX(5px);
  color: #ffffff !important;
}

.nav-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #e7c793;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.dedicated-nav-item:hover .nav-arrow {
  transform: translate(2px, -2px);
  color: #ffffff;
}

@media (max-width: 960px) {
  .dedicated-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .dedicated-page {
    padding: 40px 24px;
    align-items: flex-start;
  }

  .dedicated-image {
    max-height: 380px;
  }

  .dedicated-gallery .dedicated-image {
    height: 220px;
    max-height: 220px;
  }

  .dedicated-gallery-trio {
    gap: 10px;
  }

  .dedicated-gallery-trio .land-one .dedicated-image,
  .dedicated-gallery-trio .land-two .dedicated-image {
    height: 160px;
    max-height: 160px;
  }

  .dedicated-gallery-trio .cash-bottom .dedicated-image {
    height: 180px;
    max-height: 180px;
  }

  .dedicated-gallery-pair {
    gap: 10px;
  }

  .dedicated-gallery-pair .dedicated-image {
    height: 220px;
    max-height: 220px;
  }
}

@media (max-width: 540px) {
  .dedicated-gallery-trio {
    grid-template-columns: 1fr;
  }

  .dedicated-gallery-trio .dedicated-image-card.cash-bottom {
    grid-column: auto;
  }

  .dedicated-gallery-trio .land-one .dedicated-image,
  .dedicated-gallery-trio .land-two .dedicated-image,
  .dedicated-gallery-trio .cash-bottom .dedicated-image {
    height: 180px;
    max-height: 180px;
  }

  .dedicated-gallery-pair {
    grid-template-columns: 1fr;
  }

  .dedicated-gallery-pair .dedicated-image {
    height: 190px;
    max-height: 190px;
  }
}
