:root {
  --blue: #143463;
  --blue-2: #0e274d;
  --gold: #c9aa74;
  --wine: #8f2436;
  --paper: #f7f3ea;
  --ink: #17233a;
  --muted: #667085;
  --line: #dfd6c7;
  --white: #fff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
}

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

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

.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue);
  font-weight: 700;
}

.brand img {
  width: 78px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #39445c;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(10, 27, 52, 0.94) 0%, rgba(14, 39, 77, 0.78) 46%, rgba(14, 39, 77, 0.28) 100%),
    url("hero-larome-sky-restaurant.jpg") center right / cover no-repeat;
  color: var(--white);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 720px;
  padding: 108px 20px 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.46fr);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0;
  color: inherit;
}

h1 {
  font-size: 54px;
  max-width: 760px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  border: 1px solid rgba(201, 170, 116, 0.55);
  background: rgba(7, 20, 41, 0.7);
  backdrop-filter: blur(10px);
  padding: 26px;
}

.hero-card img {
  width: 148px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 22px;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.proof-strip {
  background: #102d56;
  border-top: 1px solid rgba(201, 170, 116, 0.35);
  border-bottom: 1px solid rgba(201, 170, 116, 0.35);
  color: var(--white);
}

.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-inner div {
  border-left: 1px solid rgba(201, 170, 116, 0.45);
  padding-left: 16px;
}

.proof-inner strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.2;
}

.proof-inner span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 20px;
}

.section.alt {
  max-width: none;
  background: var(--white);
}

.section.alt > .inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 100%;
}

.alt .card {
  background: var(--paper);
}

.card .kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.image-proof {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--blue-2);
  color: var(--white);
}

.image-card.small {
  min-height: 200px;
}

.image-card img,
.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img {
  position: absolute;
  inset: 0;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 28, 54, 0.05), rgba(9, 28, 54, 0.78));
}

.image-caption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
}

.image-caption strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.image-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.image-stack {
  display: grid;
  gap: 20px;
}

.portfolio-card {
  padding: 0;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.michelin-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-item {
  border-top: 1px solid var(--line);
  padding: 18px 0 6px;
}

.service-item strong {
  display: block;
  color: var(--blue);
}

.service-item span {
  color: var(--muted);
}

.case-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
}

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

.case-row p {
  margin: 0;
  color: var(--muted);
}

.case-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-2);
}

.case-copy h2 {
  margin-bottom: 10px;
  color: var(--blue);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-tags span {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  padding: 4px 10px;
  font-size: 13px;
}

.insight-list a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.insight-list a:hover h3 {
  color: var(--blue);
}

.insight-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta {
  background: var(--blue-2);
  color: var(--white);
  text-align: center;
}

.cta .section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 18px auto 28px;
}

.footer {
  background: #0b1f3e;
  color: rgba(255, 255, 255, 0.76);
  padding: 34px 20px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--white);
}

.page-hero {
  background: var(--blue);
  color: var(--white);
}

.page-hero .section {
  padding-top: 74px;
  padding-bottom: 62px;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-hero .page-note {
  margin-top: 18px;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.breadcrumb {
  color: var(--gold);
  margin-bottom: 14px;
}

.note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  color: var(--muted);
}

.article {
  max-width: 860px;
}

.article h2 {
  margin-top: 34px;
  font-size: 26px;
  color: var(--blue);
}

.article p {
  font-size: 17px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-inner,
  .section-head,
  .grid.three,
  .grid.two,
  .image-proof,
  .service-list,
  .case-row,
  .proof-inner {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(10, 27, 52, 0.94), rgba(14, 39, 77, 0.76)),
      url("hero-larome-sky-restaurant.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 82px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .image-card,
  .image-card.small {
    min-height: 320px;
  }
}
