:root {
  --orange: #f47a20;
  --orange-deep: #e45f12;
  --ink: #101010;
  --muted: #5f6064;
  --line: #eeeeee;
  --hero-bg: #f4f4f4;
  --footer: #252525;
  --footer-deep: #181818;
  --footer-text: #c8c8c8;
  --dropdown: #242424;
  --dropdown-line: #3a3a3a;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  min-height: 100vh;
  min-width: 320px;
}

body.logo-intro-active {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

button {
  font: inherit;
}

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

/* Header */
.site-header {
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  gap: 28px;
  height: 104px;
  justify-content: space-between;
  padding: 0 34px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 315px;
}

.brand-logo {
  display: block;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.brand-logo.logo-intro-target {
  opacity: 0;
}

.logo-intro {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(244, 122, 32, 0.16), transparent 34%),
    #07101d;
  display: flex;
  inset: 0;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  z-index: 10000;
}

.logo-intro-image {
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.42));
  object-fit: contain;
  position: fixed;
  will-change: left, top, width, height, opacity;
}

.brand-mark {
  align-items: center;
  background: conic-gradient(from 8deg, var(--orange) 0 10deg, transparent 10deg 22deg, var(--orange) 22deg 32deg, transparent 32deg 45deg, var(--orange) 45deg 55deg, transparent 55deg 68deg, var(--orange) 68deg 78deg, transparent 78deg 91deg, var(--orange) 91deg 101deg, transparent 101deg 114deg, var(--orange) 114deg 124deg, transparent 124deg 137deg, var(--orange) 137deg 147deg, transparent 147deg 160deg, var(--orange) 160deg 170deg, transparent 170deg 183deg, var(--orange) 183deg 193deg, transparent 193deg 206deg, var(--orange) 206deg 216deg, transparent 216deg 229deg, var(--orange) 229deg 239deg, transparent 239deg 252deg, var(--orange) 252deg 262deg, transparent 262deg 275deg, var(--orange) 275deg 285deg, transparent 285deg 298deg, var(--orange) 298deg 308deg, transparent 308deg 321deg, var(--orange) 321deg 331deg, transparent 331deg 360deg);
  border-radius: 50%;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  position: relative;
  width: 52px;
}

.brand-mark span {
  background: radial-gradient(circle, #ffad35 0 28%, var(--orange) 29% 64%, transparent 65%);
  border-radius: 50%;
  height: 38px;
  width: 38px;
}

.brand-mark.small {
  height: 42px;
  width: 42px;
}

.brand-mark.small span {
  height: 30px;
  width: 30px;
}

.brand-copy,
.footer-logo > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name,
.footer-logo strong {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.brand-subtitle,
.footer-logo small {
  color: var(--orange-deep);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.75px;
  margin-top: 6px;
  white-space: nowrap;
}

/* Navigation and dropdown */
.primary-nav {
  align-items: stretch;
  display: flex;
  gap: clamp(8px, 1vw, 18px);
  height: 100%;
}

.nav-item {
  align-items: stretch;
  display: flex;
  height: 100%;
  position: relative;
}

.nav-link {
  align-items: center;
  background: transparent;
  border: 0;
  color: #5f5f5f;
  cursor: pointer;
  display: flex;
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
  white-space: nowrap;
}

.nav-link::after {
  background: var(--orange);
  bottom: 27px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.nav-link:hover,
.nav-link.active,
.has-dropdown:hover > .nav-link {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after,
.has-dropdown:hover > .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown-toggle::before {
  content: "";
}

.dropdown-menu {
  background: var(--dropdown);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
  display: none;
  left: 0;
  min-width: 235px;
  position: absolute;
  top: 100%;
  z-index: 1001;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  border-bottom: 1px solid var(--dropdown-line);
  color: #eeeeee;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 15px 18px;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
  white-space: nowrap;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: #181818;
  color: #ffffff;
  padding-left: 23px;
}

.dropdown-menu a:hover::before,
.dropdown-menu a.active::before {
  color: var(--orange);
  content: "> ";
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 8px;
  width: 46px;
}

.menu-toggle span {
  background: #303030;
  border-radius: 8px;
  display: block;
  height: 3px;
  margin: 6px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero slider */
.hero {
  background: var(--hero-bg);
  padding: 0;
  position: relative;
}

.slider {
  height: 570px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 89%;
}

.slide {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 700ms ease;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  width: 100%;
}

.slide-wash {
  background: linear-gradient(112deg, rgba(226, 236, 246, 0.72), rgba(170, 214, 238, 0.4) 44%, rgba(247, 202, 214, 0.5));
  inset: 0;
  mix-blend-mode: screen;
  position: absolute;
}

.slide::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.slide h1 {
  bottom: 116px;
  color: #050505;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  letter-spacing: 0.8px;
  line-height: 1.14;
  max-width: 640px;
  position: absolute;
  right: 8.8%;
  text-align: right;
  text-transform: uppercase;
  z-index: 3;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-size: 58px;
  font-weight: 200;
  line-height: 1;
  opacity: 0.95;
  padding: 12px 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
  z-index: 4;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.slider-arrow-left {
  left: 16px;
}

.slider-arrow-right {
  right: 16px;
}

.slider-dots {
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

.slider-dot {
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  height: 13px;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
  width: 13px;
}

.slider-dot.active,
.slider-dot:hover {
  background: #ffffff;
  transform: scale(1.08);
}

/* Home overview */
.overview {
  background: #ffffff;
  padding: 78px 0 86px;
}

.overview h2 {
  color: #000000;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}

.overview-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, 1fr);
}

.overview-card img {
  height: 220px;
  margin-bottom: 24px;
  object-fit: cover;
  width: 100%;
}

.overview-card h3 {
  color: #111111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.overview-card p {
  color: #161616;
  font-size: 16px;
  line-height: 1.76;
  text-align: justify;
}

/* Inner page banner */
.inner-banner {
  align-items: center;
  background: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1800&q=80") center 44% / cover no-repeat;
  display: flex;
  height: 124px;
  position: relative;
}

.inner-banner-overlay {
  background: rgba(245, 245, 245, 0.76);
  inset: 0;
  position: absolute;
}

.inner-banner-content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.inner-banner h1 {
  color: #080808;
  font-size: clamp(32px, 3.1vw, 42px);
  font-weight: 900;
  letter-spacing: -0.5px;
}

/* About company page */
.about-company {
  background: #ffffff;
  padding: 65px 0 88px;
}

.about-layout {
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

.about-text p {
  color: #111111;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 24px;
  text-align: justify;
}

.about-text strong {
  font-weight: 900;
}

.vision-mission {
  padding-top: 3px;
}

.quote-box {
  margin-bottom: 38px;
}

.quote-box h2 {
  background: var(--orange);
  color: #ffffff;
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 22px;
  min-width: 178px;
  padding: 14px 20px;
}

.quote-box blockquote {
  border-bottom: 1px solid #d9d9d9;
  color: #151515;
  font-size: 18px;
  font-style: italic;
  line-height: 1.58;
  padding-bottom: 24px;
}

/* What we do pages */
.acquisition-section {
  background: #ffffff;
  padding: 60px 0 86px;
}

.acquisition-content {
  max-width: 900px;
}

.acquisition-content p,
.acquisition-content li {
  color: #111111;
  font-size: 18px;
  line-height: 1.58;
}

.acquisition-content p {
  margin-bottom: 22px;
  text-align: justify;
}

.acquisition-content ul {
  margin: 0 0 24px 24px;
  padding-left: 18px;
}

.acquisition-content li {
  margin-bottom: 9px;
  padding-left: 4px;
}

/* Governance page */
.governance-section {
  background: #ffffff;
  padding: 65px 0 90px;
}

.governance-accordion {
  max-width: 1080px;
}

.governance-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}

.governance-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.governance-trigger {
  align-items: center;
  background: #ffffff;
  border: 0;
  color: #737373;
  cursor: pointer;
  display: grid;
  grid-template-columns: 62px 1fr 62px;
  min-height: 86px;
  padding: 0 18px;
  text-align: center;
  transition: color 160ms ease;
  width: 100%;
}

.governance-icon {
  color: #777777;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: color 160ms ease;
}

.governance-title {
  color: inherit;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.governance-item.featured .governance-trigger,
.governance-item.featured .governance-icon,
.governance-trigger:hover,
.governance-trigger:hover .governance-icon,
.governance-item.open .governance-trigger,
.governance-item.open .governance-icon {
  color: var(--orange);
}

.governance-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.governance-panel p {
  border-top: 1px solid #eeeeee;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 34px 22px 80px;
}

/* Grievance page */
.grievance-section {
  background: #ffffff;
  padding: 60px 0 90px;
}

.grievance-content {
  max-width: 950px;
}

.grievance-content p,
.grievance-content address {
  color: #111111;
  font-size: 18px;
  font-style: normal;
  line-height: 1.58;
  margin-bottom: 20px;
}

.grievance-content address {
  margin-left: 18px;
}

.grievance-topic {
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 12px;
}

.grievance-heading {
  font-weight: 800;
  margin-top: 32px;
}

.grievance-content a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.grievance-content a:hover {
  color: var(--orange);
}

/* Complaint filing page */
.complaint-section {
  background: #ffffff;
  padding: 45px 0 80px;
}

.complaint-form {
  max-width: 1080px;
}

.complaint-form h2 {
  color: #222222;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
}

.complaint-form input,
.complaint-form textarea {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  color: #111111;
  display: block;
  font-size: 16px;
  margin-bottom: 22px;
  outline: none;
  padding: 0 18px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.complaint-form input {
  height: 56px;
}

.complaint-form textarea {
  height: 125px;
  padding-top: 16px;
  resize: vertical;
}

.complaint-form input::placeholder,
.complaint-form textarea::placeholder {
  color: #8a8a8a;
}

.complaint-form input:focus,
.complaint-form textarea:focus,
.file-upload-box:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.12);
}

.file-upload-box {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  display: flex;
  height: 64px;
  margin-bottom: 22px;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.file-upload-box input {
  border: 0;
  height: auto;
  margin: 0;
  padding: 0;
}

.form-submit {
  background: #2f3d4b;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  min-width: 78px;
  padding: 11px 24px;
  transition: background 160ms ease;
}

.form-submit:hover {
  background: var(--orange);
}

/* Contact page */
.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
}

.contact-map {
  background: #ececec;
  line-height: 0;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 620px;
  width: 100%;
}

.contact-address-section {
  background: #ffffff;
  padding: 45px 0 28px;
}

.contact-address-grid {
  display: grid;
  gap: 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-address-grid.single-address {
  grid-template-columns: minmax(0, 620px);
}

.contact-address-grid.two-addresses {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-address-card h2 {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.35;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.contact-address-card p {
  color: #111111;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.contact-address-card a {
  color: #111111;
  text-decoration: none;
}

.contact-address-card a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.contact-icon {
  color: var(--orange);
  font-size: 16px;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 6px;
}

.contact-form-section {
  background: #ffffff;
  padding: 20px 0 80px;
}

.contact-form-section h2 {
  color: #222222;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 35px;
}

.contact-form {
  max-width: 1120px;
}

.contact-form-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  color: #111111;
  display: block;
  font-size: 16px;
  margin-bottom: 22px;
  outline: none;
  padding: 0 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.contact-form input {
  height: 58px;
}

.contact-form textarea {
  height: 140px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8b8b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.12);
}

.captcha-block {
  color: #222222;
  font-size: 15px;
  margin: 2px 0 18px;
}

.captcha-block p {
  margin-bottom: 9px;
}

.captcha-row {
  align-items: center;
  display: flex;
  gap: 8px;
}

.captcha-row input {
  height: 28px;
  margin: 0;
  padding: 0 4px;
  text-align: center;
  width: 28px;
}

.contact-submit {
  height: 46px;
  min-width: 100px;
  padding: 0 22px;
}

/* Auction page */
.auction-section {
  background: #ffffff;
  padding: 18px 0 72px;
}

.auction-shell {
  margin: 0 24px;
}

.auction-toolbar {
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #dddddd;
  border-bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 14px;
}

.auction-length,
.auction-search {
  align-items: center;
  color: #333333;
  display: flex;
  font-size: 14px;
  gap: 8px;
}

.auction-length select,
.auction-search input {
  background: #ffffff;
  border: 1px solid #cfcfcf;
  color: #222222;
  font-size: 14px;
  height: 32px;
  padding: 4px 8px;
}

.auction-search input {
  width: 210px;
}

.auction-table-wrap {
  border: 1px solid #d7d7d7;
  overflow-x: auto;
  width: 100%;
}

.auction-table {
  border-collapse: collapse;
  min-width: 1900px;
  width: 100%;
}

.auction-table th {
  background: #f9631e;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  height: 90px;
  line-height: 1.25;
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
}

.auction-table th:nth-child(1) {
  width: 70px;
}

.auction-table th:nth-child(2) {
  width: 135px;
}

.auction-table th:nth-child(3) {
  width: 210px;
}

.auction-table th:nth-child(4) {
  width: 520px;
}

.auction-table th:nth-child(7),
.auction-table th:nth-child(8) {
  width: 175px;
}

.auction-table th:nth-child(9) {
  width: 190px;
}

.sort-mark {
  font-size: 11px;
  font-weight: 700;
  margin-left: 5px;
  opacity: 0.75;
}

.auction-table td {
  border: 1px solid #dddddd;
  color: #111111;
  font-size: 14px;
  line-height: 1.45;
  padding: 14px 10px;
  text-align: center;
  vertical-align: top;
}

.auction-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.auction-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.auction-table .address-cell {
  text-align: left;
}

.auction-table a {
  color: #1862b7;
  text-decoration: none;
  word-break: break-word;
}

.auction-table a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.sale-note-table {
  min-width: 760px;
}

.sale-note-table th {
  height: 65px;
}

.sale-note-table td {
  height: 65px;
  vertical-align: middle;
}

.sale-note-table th:nth-child(1) {
  width: 110px;
}

.sale-note-table th:nth-child(2) {
  width: auto;
}

.sale-note-table th:nth-child(3) {
  width: 180px;
}

.download-link {
  display: inline-block;
  font-size: 16px;
  margin: 1px 2px;
}

.auction-footerbar {
  align-items: center;
  color: #333333;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 0;
}

.auction-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.auction-pagination button {
  background: #ffffff;
  border: 1px solid #d2d2d2;
  color: #333333;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px;
}

.auction-pagination button.active,
.auction-pagination button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

/* Promoters page */
.promoters-section {
  background: #ffffff;
  padding: 66px 0 92px;
}

.promoters-layout {
  display: grid;
  gap: 60px;
  grid-template-columns: 380px minmax(0, 1fr);
}

.promoter-list {
  width: 100%;
}

.promoter-tab {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid #dedede;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  gap: 12px;
  line-height: 1.25;
  min-height: 58px;
  padding: 17px 20px;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
  width: 100%;
}

.promoter-tab::before {
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  content: "";
  flex: 0 0 auto;
  height: 0;
  width: 0;
}

.promoter-tab:hover,
.promoter-tab.active {
  background: var(--orange);
  color: #ffffff;
}

.promoter-panel[hidden] {
  display: none;
}

.promoter-panel h2 {
  color: #111111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 8px;
}

.promoter-role {
  color: #6f6f6f;
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.promoter-photo {
  align-items: center;
  background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
  border: 1px solid #151515;
  color: #777777;
  display: flex;
  justify-content: center;
  margin: 14px 0 30px;
  overflow: hidden;
  position: relative;
}

.promoter-photo::before {
  content: attr(data-fallback);
  display: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 78%;
  position: absolute;
  text-align: center;
}

.promoter-photo.image-missing::before {
  display: block;
}

.promoter-photo img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.promoter-photo.image-missing img {
  display: none;
}

.promoter-photo-sakthivel {
  height: 360px;
  width: 240px;
}

.promoter-photo-lalwani {
  height: 360px;
  width: 260px;
}

.promoter-photo-director {
  height: 360px;
  width: 260px;
}

.promoter-panel > p:last-child {
  color: #111111;
  font-size: 18px;
  line-height: 1.58;
  max-width: 790px;
  text-align: justify;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  flex-shrink: 0;
}

.footer-main {
  padding: 54px 0 46px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.footer-logo {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo strong {
  font-size: 29px;
}

.footer-grid h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid address {
  color: var(--footer-text);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 8px;
}

.footer-icon {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  margin-right: 7px;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #eeeeee;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  min-width: 30px;
  padding: 0 8px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  background: var(--footer-deep);
  padding: 18px 0;
}

.footer-bottom-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-links,
.footer-copy {
  color: #bdbdbd;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  flex: 1 1 auto;
}

.footer-copy {
  flex: 0 1 auto;
  margin: 0;
  text-align: right;
}

.footer-links a:hover {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1260px) {
  .site-header {
    padding: 0 24px;
  }

  .brand {
    min-width: 235px;
  }

  .brand-name {
    font-size: 29px;
  }

  .primary-nav {
    gap: 13px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    height: 84px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    gap: 0;
    height: auto;
    left: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 10px 28px 22px;
    position: absolute;
    right: 0;
    top: 84px;
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-item {
    display: block;
    height: auto;
    width: 100%;
  }

  .nav-link {
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    padding: 15px 0;
    width: 100%;
  }

  .nav-link::after {
    bottom: 9px;
    width: 72px;
  }

  .dropdown-toggle {
    justify-content: space-between;
  }

  .dropdown-toggle::before {
    content: none;
  }

  .dropdown-toggle::after {
    background: transparent;
    bottom: auto;
    color: #777777;
    content: "+";
    height: auto;
    left: auto;
    opacity: 1;
    position: static;
    transform: none;
    width: auto;
  }

  .has-dropdown.open > .dropdown-toggle::after {
    content: "-";
  }

  .has-dropdown:hover .dropdown-menu {
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    box-shadow: none;
    left: auto;
    margin: 0 0 8px;
    min-width: 100%;
    position: static;
    top: auto;
  }

  .dropdown-menu a {
    font-size: 13px;
    padding: 14px 18px;
  }

  .slider {
    height: 400px;
    width: 100%;
  }

  .slide h1 {
    bottom: 82px;
    max-width: 480px;
    right: 6%;
  }

  .overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .promoters-layout {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .promoter-list {
    max-width: 480px;
  }

  .vision-mission {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
  }

  .contact-map iframe {
    height: 420px;
  }

  .contact-address-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-address-grid.two-addresses {
    grid-template-columns: 1fr;
  }

  .contact-address-grid {
    gap: 30px;
  }

  .quote-box {
    margin-bottom: 0;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 54px;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand-mark span {
    height: 30px;
    width: 30px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 6px;
    letter-spacing: 0.3px;
  }

  .primary-nav {
    max-height: calc(100vh - 76px);
    top: 76px;
  }

  .container {
    padding: 0 20px;
  }

  .slider {
    height: 350px;
  }

  .slide img {
    object-position: center left;
  }

  .slide h1 {
    bottom: 72px;
    font-size: 25px;
    max-width: 310px;
    right: 22px;
  }

  .slider-arrow {
    font-size: 38px;
    padding: 8px;
  }

  .slider-arrow-left {
    left: 4px;
  }

  .slider-arrow-right {
    right: 4px;
  }

  .overview {
    padding: 58px 0 62px;
  }

  .overview-grid,
  .footer-grid,
  .vision-mission {
    grid-template-columns: 1fr;
  }

  .overview-card img {
    height: 215px;
  }

  .overview-card h3 {
    font-size: 19px;
  }

  .inner-banner {
    height: 116px;
  }

  .inner-banner h1 {
    font-size: 30px;
  }

  .about-company {
    padding: 48px 0 62px;
  }

  .acquisition-section {
    padding: 46px 0 62px;
  }

  .governance-section {
    padding: 46px 0 64px;
  }

  .governance-trigger {
    grid-template-columns: 42px 1fr 42px;
    min-height: 70px;
    padding: 0 10px;
  }

  .governance-icon {
    font-size: 22px;
  }

  .governance-title {
    font-size: 17px;
  }

  .governance-panel p {
    font-size: 15px;
    padding: 15px 18px 18px 52px;
  }

  .grievance-section {
    padding: 46px 0 64px;
  }

  .complaint-section {
    padding: 38px 0 62px;
  }

  .contact-map iframe {
    height: 360px;
  }

  .contact-address-section {
    padding: 38px 0 24px;
  }

  .contact-form-section {
    padding: 14px 0 62px;
  }

  .contact-form-section h2 {
    font-size: 23px;
    margin-bottom: 26px;
  }

  .contact-form input {
    height: 52px;
  }

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

  .promoter-list {
    max-width: none;
    width: 100%;
  }

  .promoter-tab {
    font-size: 16px;
    min-height: 54px;
    padding: 15px 18px;
  }

  .promoter-panel h2 {
    font-size: 23px;
  }

  .promoter-role {
    font-size: 18px;
  }

  .promoter-photo {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .promoter-photo-sakthivel,
  .promoter-photo-lalwani,
  .promoter-photo-director {
    height: auto;
    max-height: 360px;
    min-height: 320px;
    width: min(100%, 260px);
  }

  .about-text p,
  .quote-box blockquote,
  .promoter-panel > p:last-child,
  .acquisition-content p,
  .acquisition-content li,
  .grievance-content p,
  .grievance-content address {
    font-size: 16px;
    line-height: 1.65;
  }

  .grievance-content address {
    margin-left: 0;
  }

  .complaint-form {
    max-width: 100%;
  }

.complaint-form h2 {
  font-size: 22px;
}

  .complaint-form input {
    height: 52px;
  }

  .auction-section {
    padding: 14px 0 58px;
  }

  .auction-shell {
    margin: 0 12px;
  }

  .auction-toolbar,
  .auction-footerbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .auction-search,
  .auction-search input {
    width: 100%;
  }

  .auction-table {
    min-width: 1650px;
  }

  .sale-note-table {
    min-width: 640px;
  }

  .auction-table th {
    font-size: 13px;
    height: 78px;
  }

  .sale-note-table th {
    height: 65px;
  }

  .auction-table td {
    font-size: 13px;
  }

  .acquisition-content p {
    text-align: left;
  }

  .quote-box h2 {
    font-size: 20px;
  }

  .footer-main {
    padding: 42px 0 36px;
  }
}

@media (max-width: 430px) {
  .brand-subtitle {
    max-width: 178px;
    white-space: normal;
  }

  .slider {
    height: 322px;
  }

  .slide h1 {
    font-size: 22px;
    max-width: 255px;
  }
}
