/* ──────────────────────────────────────────────────────────
   BASE STYLES
────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1b2a;
  --navy-mid: #152338;
  --gold: #c9a552;
  --gold-light: #dfc07a;
  --warm-white: #f8f5ef;
  --off-white: #f1ece3;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #e4ddd2;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 165, 82, 0.15);
  z-index: 200;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.nav-logo img.logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links>li>a {
  color: rgba(248, 245, 239, 0.8);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links>li>a:hover {
  color: var(--gold);
}

.nav-links>li>a.active {
  color: var(--gold);
}

.nav-links .has-drop {
  position: relative;
}

.nav-links .has-drop .sub {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  background: var(--navy);
  min-width: 200px;
  padding: 8px 0;
  border-top: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

@media (hover: hover) {
  .nav-links .has-drop:hover .sub {
    display: block;
  }
}

.nav-links .has-drop .sub::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-links .sub a {
  display: block;
  padding: 10px 20px;
  width: 100%;
  color: rgba(248, 245, 239, 0.75);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  text-transform: none;
  font-weight: 400;
}

.nav-links .sub a:hover {
  color: var(--gold);
  background: rgba(201, 165, 82, 0.06);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 22px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 628px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 27, 42, 0.93) 0%, rgba(13, 27, 42, 0.65) 55%, rgba(13, 27, 42, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  padding: 13px 32px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

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

/* ── METRICS BAR ── */
.metrics-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.metric {
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.metric:last-child {
  border-right: none;
}

.metric-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-num sup {
  font-size: 22px;
  color: var(--gold);
  vertical-align: super;
}

.metric-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── SECTION RESETS ── */
.sec {
  padding: 96px 60px;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sec-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.sec-title.on-dark {
  color: #fff;
}

.sec-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── ABOUT ── */
.about {
  background: var(--warm-white);
}

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

.about-text .sec-body {
  max-width: 500px;
}

.about-text .sec-body+.sec-body {
  margin-top: 20px;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-photos .col-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.about-photos .col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-photos .photo {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-color: var(--navy-mid);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.about-photos .photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.15);
}

.about-photos .photo.tall {
  height: 340px;
}

.about-photos .photo.short {
  height: 220px;
}

/* ── WHAT WE DO ── */
.wwd {
  background: var(--navy);
  color: #fff;
  padding: 96px 60px;
}

.wwd-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.wwd-tier-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 165, 82, 0.6);
  display: block;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wwd-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 2px;
}

.wwd-growth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.biz-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 40px;
  transition: background 0.25s;
}

.biz-card:hover {
  background: rgba(201, 165, 82, 0.07);
}

.biz-card.core {
  padding: 56px 48px;
}

.biz-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.biz-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.biz-card.core h3 {
  font-size: 30px;
}

.biz-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.biz-card ul {
  list-style: none;
  margin-top: 16px;
}

.biz-card ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 300;
}

.biz-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── OPERATIONS GRID ── */
.operations {
  background: var(--off-white);
}

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

.op-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}

.op-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
}

.op-card-top {
  position: relative;
  height: 160px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.op-card-top>* {
  z-index: 2;
  position: relative;
}

.op-card-body {
  padding: 28px 26px 32px;
}

.op-card-flag {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.08);
  margin-bottom: 16px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.op-card-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.op-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-weight: 300;
}

.op-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.op-link:hover {
  color: var(--navy);
}

.op-soon {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201, 165, 82, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(201, 165, 82, 0.3);
}

/* ── NEWS ── */
.news {
  background: #fff;
}

.news-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

/* News Nav Buttons */
.news-nav-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Bottom nav buttons — hidden on desktop, shown on mobile */
.news-nav-btns--bottom {
  display: none;
}

.news-prev,
.news-next {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.news-prev:hover,
.news-next:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Slider Track — 3-per-view carousel */
.news-slider-wrap {
  overflow: hidden;
  margin: 0 max(40px, calc((100% - 1200px)/2));
}

.news-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Slide — width set by JS */
.news-slide {
  flex-shrink: 0;
  padding: 48px 0;
  border-top: 2px solid var(--gold);
  position: relative;
}

.news-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.news-slide h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

.news-title-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--navy), var(--navy));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s ease;
}

.news-title-link:hover {
  background-size: 100% 1px;
}

.news-slide p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* Progress */
.news-progress-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 0 60px;
}

.news-progress-bar {
  flex: 1;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.news-progress-fill {
  height: 100%;
  background: var(--navy);
  width: 50%;
  transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.news-counter {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  white-space: nowrap;
}

/* ── CONTACT CTA ── */
.cta {
  background: var(--navy);
  text-align: center;
  padding: 96px 60px;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #080f18;
  padding: 96px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-mark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 220px;
  margin: 18px 0 24px;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  font-weight: 300;
}

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

.footer-col address {
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

/* ──────────────────────────────────────────────────────────
   INNER PAGE STYLES
────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
  filter: grayscale(100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 860px;
}

.page-hero-content .eyebrow {
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 580px;
  font-weight: 300;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.brand-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 90px;
  opacity: 1;
}

.brand-cell:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.06);
  transform: translateY(-4px);
}

@media (min-width: 993px) {
  .brand-cell:nth-child(15) {
    grid-column-start: 3;
  }
}

.brand-cell img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: grayscale(100%) contrast(120%) brightness(70%);
}

.entity-block {
  padding: 96px 60px;
  border-bottom: 1px solid var(--border);
}

.entity-block:last-child {
  border-bottom: none;
}

.entity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.entity-inner.single {
  grid-template-columns: 1fr;
  max-width: 780px;
}

.entity-text .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.entity-text h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.entity-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 16px;
}

.entity-img {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-mid);
  display: block;
  filter: grayscale(100%) contrast(120%) brightness(70%);
}

.entity-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--navy-mid);
}



.entity-slider {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  align-items: center;
}

.entity-slider .slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
}

.entiti-slider-container {
  width: 100% !important;
  background-color: transparent;
  margin: 0 auto;
}

.entiti-slider-container .slide {
  object-fit: contain;
  width: 100%;
  height: auto;
  background-color: transparent;
}

.slider-btn {
  display: none !important;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.15);
  backdrop-filter: blur(8px);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dots .dot:hover {
  background: rgba(13, 27, 42, 0.6);
}

.slider-dots .dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.entity-list {
  list-style: none;
  margin-top: 16px;
}

.entity-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.entity-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.restaurant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.restaurant-grid .restaurant-card {
  flex: 0 0 calc(33.333% - 16px);
}

.restaurant-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}

.restaurant-card-img {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}

.restaurant-card-img img {
  filter: grayscale(100%) contrast(120%) brightness(70%);
  transition: transform 0.4s ease;
}

.restaurant-card-img span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  padding: 20px;
  text-align: center;
}

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

.restaurant-card-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.restaurant-card-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-top: 52px;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card-photo {
  width: 65%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: top center;
  background-color: var(--off-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
}

.team-card-photo span {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
}

.team-card-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-card-bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
  font-weight: 300;
}

.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.mgmt-card {
  text-align: center;
}

.mgmt-photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--navy-mid);
  background-size: cover;
  background-position: center center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  filter: grayscale(100%);
}

.mgmt-photo span {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
}

.mgmt-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.mgmt-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

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

.contact-info-item {
  margin-bottom: 28px;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ──────────────────────────────────────────────────────────
   MOBILE RESPONSIVENESS
────────────────────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  z-index: 201;
  padding: 8px;
}

@media (max-width: 992px) {

  /* Hide standard nav, show button */
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 72px;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    transform: translateY(10px);
  }

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

  .nav-links>li>a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: block;
    line-height: 1.2;
  }

  .nav-links>li>a:hover,
  .nav-links>li>a.active {
    color: var(--gold);
  }

  .nav-links .has-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* Space between label and countries */
  }

  /* Display the "Operations" parent as a subtle section label */
  .nav-links .has-drop>a {
    display: block;
    font-size: 0;
    /* Hide original text "Operations ▾" */
    pointer-events: none;
    margin: 0;
    /* Remove negative margin that caused overlap */
  }

  .nav-links .has-drop>a::after {
    content: "Our Operations";
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
  }

  .nav-links .has-drop .sub {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Tighter gap for countries to group them visually */
    background: transparent;
    box-shadow: none;
    border: none;
    text-align: center;
    margin-top: 0;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-links .has-drop .sub::before {
    display: none;
  }

  /* Override desktop hover rule — keep flex on mobile to prevent spacing glitch */
  .nav-links .has-drop:hover .sub {
    display: flex;
  }

  /* Remove tap highlight block on mobile */
  .nav-links a,
  .nav-links .sub a {
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links .sub a {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.2;
  }

  .nav-links .sub a:hover,
  .nav-links .sub a.active {
    color: var(--gold);
  }

  /* Section Spacing */
  nav {
    padding: 0 20px;
  }

  .sec,
  .wwd,
  .cta,
  .entity-block {
    padding: 60px 20px;
  }

  footer {
    padding: 60px 20px 40px;
  }

  .hero-content,
  .page-hero-content {
    padding: 0 20px;
  }

  /* Grid Adjustments */
  .about-grid,
  .contact-grid,
  .entity-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .metric {
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 30px 10px;
  }

  .metric:nth-child(even) {
    border-right: none;
  }

  .metric:last-child {
    grid-column: span 2;
    border-bottom: none;
    border-right: none;
  }

  .wwd-core,
  .wwd-growth {
    grid-template-columns: 1fr;
  }

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

  .news-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Hide header nav, show bottom nav on mobile */
  .news-nav-btns:not(.news-nav-btns--bottom) {
    display: none;
  }

  .news-nav-btns--bottom {
    display: flex;
  }

  .news-slide {
    padding: 32px 0;
  }

  .news-slide h3 {
    font-size: 18px;
  }

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

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

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

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

  /* Font size fixes */
  .hero h1 {
    font-size: 40px;
  }

  .sec-title {
    font-size: 32px;
  }

  .about-photos {
    gap: 16px;
    margin-top: 20px;
  }

  .about-photos .col-left {
    margin-top: 0;
    gap: 16px;
  }

  .about-photos .col-right {
    gap: 16px;
  }

  .about-photos .photo.tall {
    height: 240px;
  }

  .about-photos .photo.short {
    height: 160px;
  }
}

@media (max-width: 576px) {

  .hero h1,
  .page-hero-content h1 {
    font-size: 36px;
  }

  .sec-title {
    font-size: 28px;
  }

  .ops-grid,

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brand-cell {
    padding: 24px 16px;
    min-height: 100px;
  }

  .brand-cell img {
    max-height: 60px;
    max-width: 95%;
  }

  /* F&B Operations – polished mobile layout */
  .restaurant-grid {
    flex-direction: column;
    gap: 32px;
  }

  .restaurant-grid .restaurant-card {
    flex: 0 0 100%;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
  }

  .restaurant-grid .restaurant-card:last-child {
    border-bottom: none;
  }

  .restaurant-card-img {
    height: 260px !important;
  }

  /* Enlarge F&B operation logos on mobile */
  .restaurant-card-img>div>img {
    max-height: 48px !important;
    max-width: 160px !important;
  }

  .restaurant-card-body {
    padding: 20px 0 24px !important;
  }

  .restaurant-card-body h3 {
    font-size: 22px !important;
  }

  .restaurant-card-body p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }

  /* Vertical card in 2-col grid */
  .team-card {
    display: flex !important;
    flex-direction: column !important;
  }

  .team-card-photo {
    width: 100% !important;
    aspect-ratio: 3/4;
    margin-bottom: 12px !important;
  }

  .team-card-name {
    font-size: 16px;
  }

  .team-card-title {
    font-size: 10px;
  }

  .team-card-bio {
    font-size: 12px;
    line-height: 1.6;
  }

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

  .mgmt-photo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats grid on team page */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Global slider mobile styling – all pages */
  .entity-slider-container {
    width: 100% !important;
  }

  .entity-slider-container .slide {
    height: auto;
  }
}

/* ------------------------
   NEW ITALY PAGE STYLES
------------------------ */
.strategy-box {
  background: var(--navy);
  color: #fff;
  padding: 48px 52px;
  margin-bottom: 60px;
  border-left: 4px solid var(--gold);
}

.strategy-box p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-style: italic;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: #fff;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(13, 27, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.1);
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
}

.product-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .strategy-box {
    padding: 32px 24px;
  }

  .strategy-box p {
    font-size: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}