/* Al Majdal Group — Corporate Holding Company Styles */

:root {
  --navy-900: #0f1a2e;
  --navy-800: #1a2744;
  --navy-700: #243556;
  --gold-500: #c9a227;
  --gold-400: #d4b44a;
  --gold-300: #e0c878;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6eb;
  --gray-400: #8b95a5;
  --gray-600: #5a6474;
  --gray-800: #2d3544;
  --shadow-sm: 0 2px 8px rgba(15, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 26, 46, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 26, 46, 0.14);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --font-heading: "Cormorant Garamond", "Cairo", Georgia, serif;
  --font-body: "Source Sans 3", "Cairo", system-ui, sans-serif;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
  font-family: "Cairo", var(--font-body);
}

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

a {
  color: var(--navy-800);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-500);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-900);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: "Cairo", var(--font-heading);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

[dir="rtl"] .logo-main {
  font-family: "Cairo", serif;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy-800);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  color: var(--gray-600);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy-900);
  background: var(--gray-100);
}

.main-nav a.nav-external::after {
  content: " ↗";
  font-size: 0.7em;
  opacity: 0.6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.25rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--gray-600);
  transition: var(--transition);
  font-family: inherit;
}

.lang-btn.active {
  background: var(--navy-800);
  color: var(--white);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.45);
  pointer-events: none;
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-glow-navy::after {
  box-shadow: 0 0 24px rgba(26, 39, 68, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

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

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--white);
  padding-top: var(--header-height);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

[dir="rtl"] .hero-tagline {
  font-family: "Cairo", serif;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Homepage enhancements ── */
.page-loading main {
  opacity: 0;
}

body.page-ready main {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(212, 180, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(36, 53, 86, 0.6) 0%, transparent 70%);
  animation: meshShift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes meshShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-1%, 1%); }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  color: rgba(201, 162, 39, 0.15);
  width: 120px;
  height: 120px;
}

.hero-shape--1 { top: 15%; right: 12%; animation: floatShape 12s ease-in-out infinite; }
.hero-shape--2 { top: 60%; right: 25%; width: 80px; height: 80px; animation: floatShape 15s ease-in-out infinite reverse; }
.hero-shape--3 { bottom: 20%; left: 8%; width: 100px; height: 100px; animation: floatShape 14s ease-in-out infinite 2s; }
.hero-shape--4 { top: 25%; left: 15%; width: 60px; height: 60px; color: rgba(255, 255, 255, 0.06); animation: floatShape 10s ease-in-out infinite 1s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(8deg); }
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider--hero svg { height: 80px; }
.section-divider--hero-invert { bottom: -1px; }

body[data-page="home"] .section-textured,
body[data-page="home"] .section-alt,
body[data-page="home"] .section-invest,
body[data-page="home"] .section-commerce {
  position: relative;
}

body[data-page="home"] .section-textured {
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 26, 46, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  padding-bottom: calc(5rem + 40px);
}

body[data-page="home"] .section-alt {
  padding-bottom: calc(5rem + 40px);
}

body[data-page="home"] .section-commerce {
  padding-bottom: calc(5rem + 60px);
}

.section-invest {
  position: relative;
  overflow: hidden;
}

.invest-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 26, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.brand-desc {
  color: var(--gray-600);
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
}

.tag-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.tag-icon:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.tag-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.brand-visual {
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.brand-visual:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.brand-accent-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}

.brand-accent-ring::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(201, 162, 39, 0.12);
  border-radius: 50%;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.invest-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.invest-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.invest-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.invest-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: transform var(--transition);
}

.invest-card:hover .invest-card-icon {
  transform: scale(1.08);
}

.invest-card-icon svg {
  width: 24px;
  height: 24px;
}

.invest-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.invest-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.investment-table-wrap {
  transition: box-shadow var(--transition), transform var(--transition);
}

.investment-table-wrap:hover {
  box-shadow: var(--shadow-md);
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-commerce {
  position: relative;
  overflow: hidden;
}

.commerce-network {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.commerce-network-svg {
  width: 100%;
  height: 100%;
}

.net-node {
  fill: var(--gold-400);
}

.net-line {
  stroke: rgba(201, 162, 39, 0.25);
  stroke-width: 1;
}

.commerce-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.commerce-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.card-icon-svg {
  font-size: 0;
}

.card-icon-svg svg {
  width: 22px;
  height: 22px;
}

.commerce-item .card-icon {
  animation: iconPulse 3s ease-in-out infinite;
}

.commerce-item:nth-child(2) .card-icon { animation-delay: 0.5s; }
.commerce-item:nth-child(3) .card-icon { animation-delay: 1s; }

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
  50% { box-shadow: 0 0 16px 2px rgba(201, 162, 39, 0.15); }
}

.contact-icon-svg {
  font-size: 0;
  transition: all var(--transition);
}

.contact-icon-svg svg {
  width: 18px;
  height: 18px;
}

.contact-info-list li {
  transition: background var(--transition);
  border-radius: var(--radius);
  padding-inline: 0.5rem;
}

.contact-info-list li:hover {
  background: rgba(255, 255, 255, 0.6);
}

.contact-info-list li:hover .contact-icon-svg {
  background: var(--navy-800);
  color: var(--gold-400);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.map-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.map-card-header svg {
  color: var(--gold-500);
}

.map-card-address {
  padding: 0.5rem 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.map-card-visual {
  position: relative;
  height: 160px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--gold-500);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
  z-index: 1;
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pinRipple 2.5s ease-out infinite;
}

@keyframes pinRipple {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.social-link-svg {
  font-size: 0;
}

.social-link-svg svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(15, 26, 46, 0.15);
}

.social-link-svg:hover svg {
  stroke: var(--gold-400);
}

[dir="rtl"] .hero-shape--1 { right: auto; left: 12%; }
[dir="rtl"] .hero-shape--2 { right: auto; left: 25%; }
[dir="rtl"] .hero-shape--3 { left: auto; right: 8%; }
[dir="rtl"] .hero-shape--4 { left: auto; right: 15%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-mesh,
  .hero-shape,
  .hero-animate,
  .brand-accent-ring,
  .commerce-item .card-icon,
  .map-pin::after {
    animation: none !important;
  }

  .hero-animate {
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-loading main,
  body.page-ready main {
    opacity: 1;
    transition: none;
  }

  .btn-glow::after,
  .social-link:hover,
  .brand-visual:hover,
  .invest-card:hover,
  .commerce-item:hover,
  .map-card:hover,
  .tag-icon:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-shapes .hero-shape--3,
  .hero-shapes .hero-shape--4 {
    display: none;
  }

  .invest-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .invest-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-400);
  font-size: 1.25rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── Brand showcase ── */
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-visual {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.brand-logo-text {
  position: relative;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-400);
  margin-bottom: 0.5rem;
}

.brand-logo-sub {
  position: relative;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--gray-100);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* ── Investment table ── */
.investment-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.investment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.investment-table th,
.investment-table td {
  padding: 1.1rem 1.5rem;
  text-align: start;
  border-bottom: 1px solid var(--gray-200);
}

.investment-table th {
  background: var(--navy-800);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.investment-table tr:last-child td {
  border-bottom: none;
}

.investment-table tr:hover td {
  background: var(--cream);
}

/* ── Digital commerce ── */
.commerce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.commerce-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.commerce-item .card-icon {
  margin: 0 auto 1.25rem;
}

/* ── Contact preview ── */
.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--gray-800);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── About content ── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-600);
}

.about-content h3 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-inline-start: 3px solid var(--gold-500);
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.notice-box {
  background: #fff8e6;
  border: 1px solid #f0dfa0;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #7a6520;
}

/* ── Contact page ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
}

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

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--navy-800);
  color: var(--white);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-main {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.site-footer .social-links {
  margin-top: 1.25rem;
}

.site-footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .social-link:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

.site-footer .social-link-svg:hover svg {
  stroke: var(--navy-900);
}

.footer-col h4 {
  color: var(--gold-400);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .brand-showcase,
  .contact-preview,
  .contact-page-grid,
  .commerce-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 0;
  }

  .section {
    padding: 3.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
