@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --red: #b22222;
  --burgundy: #5a1818;
  --burgundy-deep: #3c0909;
  --wine: #741012;
  --wine-deep: #570508;
  --gold: #c9a45b;
  --gold-accent: #d2a64f;
  --navy: #061727;
  --text: #181515;
  --muted: #6f6a68;
  --line: #e7e2de;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 12px 35px rgba(44, 13, 10, 0.08);

  /* GOV.UK Frontend 6 scale + W3C 1.5 reading line-height. Visible text never drops below 16px. */
  --type-scale-80-size: 5rem;
  --type-scale-80-line: 5rem;
  --type-scale-48-size: 3rem;
  --type-scale-48-line: 3.125rem;
  --type-scale-36-size: 2.25rem;
  --type-scale-36-line: 2.5rem;
  --type-scale-27-size: 1.6875rem;
  --type-scale-27-line: 1.875rem;
  --type-scale-24-size: 1.5rem;
  --type-scale-24-line: 1.875rem;
  --type-scale-19-size: 1.1875rem;
  --type-scale-19-line: 1.5625rem;
  --type-scale-17-size: 1.0625rem;
  --type-scale-17-line: 1.375rem;
  --type-scale-16-size: 1rem;
  --type-scale-16-line: 1.25rem;
  --type-reading-19-line: 1.875rem;
  --type-reading-16-line: 1.5rem;

  --type-display-large-size: var(--type-scale-48-size);
  --type-display-large-line: var(--type-scale-48-line);
  --type-display-medium-size: var(--type-scale-48-size);
  --type-display-medium-line: var(--type-scale-48-line);
  --type-display-small-size: var(--type-scale-36-size);
  --type-display-small-line: var(--type-scale-36-line);
  --type-headline-large-size: var(--type-scale-36-size);
  --type-headline-large-line: var(--type-scale-36-line);
  --type-headline-medium-size: var(--type-scale-27-size);
  --type-headline-medium-line: var(--type-scale-27-line);
  --type-headline-small-size: var(--type-scale-24-size);
  --type-headline-small-line: var(--type-scale-24-line);
  --type-title-large-size: var(--type-scale-24-size);
  --type-title-large-line: var(--type-scale-24-line);
  --type-title-medium-size: var(--type-scale-19-size);
  --type-title-medium-line: var(--type-scale-19-line);
  --type-title-small-size: var(--type-scale-17-size);
  --type-title-small-line: var(--type-scale-17-line);
  --type-body-large-size: var(--type-scale-19-size);
  --type-body-large-line: var(--type-reading-19-line);
  --type-body-medium-size: var(--type-scale-16-size);
  --type-body-medium-line: var(--type-reading-16-line);
  --type-body-small-size: var(--type-scale-16-size);
  --type-body-small-line: var(--type-reading-16-line);
  --type-label-large-size: var(--type-scale-16-size);
  --type-label-large-line: var(--type-scale-16-line);
  --type-label-medium-size: var(--type-scale-16-size);
  --type-label-medium-line: var(--type-scale-16-line);
  --type-label-small-size: var(--type-scale-16-size);
  --type-label-small-line: var(--type-scale-16-line);

  --type-mobile-heading-xl-size: 2rem;
  --type-mobile-heading-xl-line: 2.1875rem;
  --type-mobile-heading-large-size: 1.6875rem;
  --type-mobile-heading-large-line: 1.875rem;
  --type-mobile-heading-medium-size: 1.3125rem;
  --type-mobile-heading-medium-line: 1.5625rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--type-body-medium-size);
  line-height: var(--type-body-medium-line);
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* Container */
.wide-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: clamp(22px, 5.75vw, 92px);
}

/* Header / Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.topbar-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: 140px;
  height: auto;
}

.logo {
  display: inline-flex;
  width: 140px;
  flex-direction: column;
  align-items: center;
  color: var(--wine);
  line-height: 1;
}

.logo-name {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 7px;
  font-family: var(--serif);
  font-size: var(--type-display-medium-size);
  font-weight: 500;
  line-height: var(--type-display-medium-line);
  letter-spacing: -0.065em;
  text-align: center;
}

.logo-name::before,
.logo-name::after {
  position: absolute;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.logo-name::before {
  top: 2px;
  right: 7px;
  left: 7px;
}

.logo-name::after {
  right: 0;
  bottom: 3px;
  width: 52%;
}

.logo-tagline {
  margin-top: 0;
  font-size: var(--type-label-medium-size);
  font-weight: 500;
  line-height: var(--type-label-medium-line);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  white-space: nowrap;
  color: var(--text);
  letter-spacing: 0.5px;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--gold);
}

.main-nav .has-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-chevron {
  margin-left: 6px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.2s ease;
  color: var(--muted);
}

.has-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  stroke: var(--wine);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 6px;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
  background: #ffffff;
  border: 1px solid rgba(212, 173, 103, 0.35);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7, 21, 37, 0.14), 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-width: 580px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover {
  background: #faf7f2;
  transform: translateX(3px);
}

.dropdown-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(104, 16, 18, 0.07);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.dropdown-item:hover .dropdown-item-icon {
  background: var(--wine);
  color: #fff;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.dropdown-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.dropdown-item-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.consult-box {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consult-title {
  font-size: var(--type-label-small-size);
  line-height: var(--type-label-small-line);
  font-weight: 600;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-icon {
  color: var(--gold-accent);
  flex-shrink: 0;
}

.consult-box strong {
  font-size: var(--type-title-medium-size);
  line-height: var(--type-title-medium-line);
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #061524;
  background-image:
    linear-gradient(90deg,
      #061524 0%,
      #061524 41%,
      rgba(6, 21, 36, 0.99) 46%,
      rgba(6, 21, 36, 0.88) 52%,
      rgba(6, 21, 36, 0.25) 63%,
      rgba(6, 21, 36, 0) 78%),
    url("hero-bg.png");
  background-size: cover;
  background-position: center center;
  padding-block: 84px 170px;
  min-height: 560px;
}

.hero-container {
  position: relative;
}

.hero-slides {
  display: grid;
  grid-template-areas: "hero-slide-area";
  width: 100%;
}

.hero-slide {
  grid-area: hero-slide-area;
  width: 100%;
  max-width: 680px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
  pointer-events: auto;
}

.hero-copy {
  max-width: 680px;
  z-index: 2;
  position: relative;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  letter-spacing: 0;
  margin: 0 0 16px;
  font-weight: 500;
}

.hero-copy h1 span {
  color: var(--gold-accent);
}

.hero-copy h2 {
  font-size: var(--type-headline-small-size);
  line-height: var(--type-headline-small-line);
  margin: 0 0 16px;
  font-weight: 600;
  color: #f8f6f2;
}

.hero-copy p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  margin: 0 0 28px;
  color: #e7e2de;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--wine), var(--wine-deep));
  font-weight: 700;
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-btn span {
  font-size: var(--type-headline-small-size);
  font-weight: 400;
  line-height: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 28px;
  line-height: 42px;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.hero-arrow-left {
  left: 0;
}

.hero-arrow-right {
  right: 0;
}

.hero-dots {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 6;
}

.hero-dots button,
.hero-dots i {
  width: 24px;
  height: 6px;
  border-radius: 4px;
  border: 0;
  padding: 0;
  background: rgba(212, 173, 103, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots button:hover,
.hero-dots i:hover {
  background: rgba(212, 173, 103, 0.8);
}

.hero-dots button.is-active,
.hero-dots button.on,
.hero-dots i.on {
  background: #fff;
  width: 44px;
}

/* Benefits */
.benefits-section {
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.benefits {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 32px 16px;
}

.benefits article {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits article:last-child {
  border-right: 0;
}

.benefits img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.benefits h3 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--wine);
  margin: 0 0 8px;
  font-weight: 700;
}

.benefits p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  margin: 0;
  color: var(--text);
}

/* Solutions */
.solutions {
  padding-block: 64px;
  background: #fff;
}

.ornament-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.ornament-title h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  line-height: var(--type-headline-large-line);
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

.ornament-title span {
  display: block;
  flex: 1;
  max-width: 320px;
  height: 1px;
  background: var(--line);
  position: relative;
}

.ornament-title span:first-child::after,
.ornament-title span:last-child::before {
  content: "◇";
  position: absolute;
  top: -9px;
  color: var(--gold);
  background: #fff;
  font-size: 14px;
}

.ornament-title span:first-child::after {
  right: -7px;
}

.ornament-title span:last-child::before {
  left: -7px;
}

.solution-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.solution-grid article {
  padding: 32px 18px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  transition: background 0.2s ease;
}

.solution-grid article:last-child {
  border-right: 0;
}

.solution-grid article:hover {
  background: #fcfbf9;
}

.solution-grid img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}

.num {
  display: block;
  font-family: var(--serif);
  font-size: var(--type-headline-medium-size);
  line-height: var(--type-headline-medium-line);
  color: var(--gold);
  margin: 4px 0 8px;
}

.solution-grid h3 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--wine);
  min-height: 52px;
  margin: 0 0 16px;
  font-weight: 700;
}

.solution-grid ul {
  margin: 0;
  padding-left: 16px;
  text-align: left;
  list-style: none;
  width: 100%;
}

.solution-grid li {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  margin-bottom: 6px;
  position: relative;
  color: var(--text);
}

.solution-grid li::before {
  content: "•";
  position: absolute;
  left: -12px;
  color: var(--gold);
  font-size: 14px;
}

/* About + News */
.content-row {
  padding-block: 24px 64px;
  background: #fff;
}

.content-row-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 24px;
}

.about-panel,
.news-panel {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.about-panel {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, #681012 0%, #771419 54%, #681012 66%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.about-text {
  position: relative;
  z-index: 3;
  max-width: 420px;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  line-height: var(--type-headline-large-line);
  margin: 0 0 16px;
  font-weight: 500;
}

.about-text p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  margin: 0 0 24px;
  color: #f8f6f2;
}

.about-text a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  font-weight: 600;
  color: #fff;
  transition: background 0.2s ease;
}

.about-text a:hover {
  background: rgba(210, 166, 79, 0.2);
}

.about-text a span {
  font-size: 20px;
}

.about-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: url("../assets/about-building.png") center/cover no-repeat;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.about-photo::before {
  content: "";
  position: absolute;
  left: 15%;
  top: -20%;
  width: 6px;
  height: 140%;
  background: var(--gold);
  transform: rotate(14deg);
  transform-origin: center;
}

.news-panel {
  padding: 24px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.panel-head h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-small-size);
  line-height: var(--type-headline-small-line);
  color: var(--wine);
  margin: 0;
  font-weight: 600;
}

.panel-head a {
  font-size: var(--type-label-medium-size);
  line-height: var(--type-label-medium-line);
  color: var(--wine);
  font-weight: 600;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding-block: 10px;
  border-top: 1px solid var(--line);
}

.news-item:first-of-type {
  border-top: 0;
}

.news-item img {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.news-item small {
  display: block;
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--muted);
  margin-bottom: 4px;
}

.news-item b {
  display: block;
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  font-weight: 600;
  color: var(--text);
}

/* Partners */
.partners {
  padding-block: 32px 56px;
  background: #fff;
}

.ornament-title.small h2 {
  font-size: var(--type-headline-small-size);
  line-height: var(--type-headline-small-line);
}

.partners-carousel {
  margin-top: 28px;
  position: relative;
  padding-inline: 12px;
}

.partners-carousel .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 12px 18px;
  background: #faf8f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.partners-carousel .partner-item:hover {
  background: #ffffff;
  border-color: rgba(104, 16, 18, 0.35);
  box-shadow: 0 6px 20px rgba(7, 21, 37, 0.09);
  transform: translateY(-2px);
}

.partners-carousel .partner-item img {
  height: 48px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partners-carousel .partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.partners-carousel.owl-theme .owl-nav {
  margin-top: 0;
}

.partners-carousel.owl-theme .owl-nav [class*='owl-'] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine) !important;
  color: #fff !important;
  font-size: 24px !important;
  line-height: 34px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.partners-carousel.owl-theme .owl-nav [class*='owl-']:hover {
  background: var(--wine-deep) !important;
  transform: translateY(-50%) scale(1.08);
}

.partners-carousel.owl-theme .owl-nav .owl-prev {
  left: -20px;
}

.partners-carousel.owl-theme .owl-nav .owl-next {
  right: -20px;
}

/* CTA */
.cta {
  padding-block: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 50%, rgba(130, 20, 20, 0.5), transparent 45%),
    linear-gradient(90deg, #5f090c, #760f12 56%, #5a080b);
}

.cta-inner {
  display: grid;
  grid-template-columns: 120px 1fr 260px;
  align-items: center;
  gap: 32px;
}

.cta-inner>img {
  width: 100px;
  height: 94px;
  object-fit: contain;
}

.cta-copy h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  line-height: var(--type-headline-large-line);
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 8px;
}

.cta-copy p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  margin: 0;
  color: #f8f6f2;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cta-action a {
  padding: 14px 28px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--wine-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-action a span {
  font-size: 20px;
}

.cta-action strong {
  font-size: var(--type-title-medium-size);
  line-height: var(--type-title-medium-line);
  font-weight: 600;
  color: #fff;
}

/* Footer */
.footer {
  padding-block: 64px 32px;
  background:
    radial-gradient(circle at 35% -80%, rgba(31, 75, 113, 0.32), transparent 55%),
    linear-gradient(95deg, #071727, #071525 62%, #0a1c2f);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  margin: 0 0 16px;
  color: #e7e2de;
}

.social {
  display: flex;
  gap: 12px;
}

.social span {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: var(--type-label-large-size);
  color: #fff;
}

.footer-col h3 {
  font-size: var(--type-title-medium-size);
  line-height: var(--type-title-medium-line);
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  margin: 0 0 10px;
  color: #e7e2de;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--type-body-small-size);
  color: #a0aab5;
}

.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom i {
  display: block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}

/* Breadcrumb */
.breadcrumb-wrapper {
  padding-block: 20px 10px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

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

.breadcrumb .separator {
  color: #ccc;
}

.breadcrumb .current {
  color: var(--wine);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* About Intro Page Section */
.about-intro {
  padding-block: 24px 64px;
  background: #fff;
}

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

.about-main-copy .decor-eyebrow {
  display: block;
  font-size: var(--type-label-medium-size);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-main-copy h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  color: var(--wine);
  margin: 0 0 16px;
  font-weight: 500;
}

.title-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

.about-main-copy p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  color: var(--text);
  margin: 0 0 18px;
}

/* Value List 4-column Grid */
.value-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-block: 32px 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.value-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(116, 16, 18, 0.06);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.value-item h3 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.value-item p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--muted);
  margin: 0;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  background: var(--wine);
  color: #fff;
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(116, 16, 18, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.about-btn:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.about-btn span {
  font-size: 20px;
}

.about-main-photo {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pillars Section */
.pillars-section {
  padding-block: 64px;
  background: #fdfbf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.pillar-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-copy h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-small-size);
  line-height: var(--type-headline-small-line);
  color: var(--wine);
  margin: 0 0 8px;
  font-weight: 600;
}

.pillar-copy p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--text);
  margin: 0;
}

/* Stats Section */
.stats-section {
  padding-block: 64px;
  background: #fff;
  text-align: center;
}

.stats-title {
  font-size: var(--type-label-large-size);
  line-height: var(--type-label-large-line);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 40px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf8f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.stat-item strong {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  color: var(--wine);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item small {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* Page Inner Heros (Services, Team, Projects, News, Careers) */
.services-hero,
.team-hero,
.projects-hero,
.news-hero,
.career-hero {
  padding-block: 24px 48px;
  background: #fff;
}

.services-hero h1,
.team-hero h1,
.projects-hero h1,
.news-hero h1,
.career-hero h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  color: var(--wine);
  margin: 0 0 16px;
  font-weight: 500;
}

.services-hero p,
.team-hero p,
.projects-hero p,
.news-hero p,
.career-hero p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  color: var(--text);
  max-width: 800px;
  margin: 0;
}

/* Services Page */
.services-page {
  padding-block: 24px 64px;
  background: #faf8f5;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(116, 16, 18, 0.06);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-item h2 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--wine);
  font-weight: 700;
  margin: 0 0 12px;
}

.service-card-item p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--text);
  margin: 0 0 24px;
  flex: 1;
}

.service-card-link {
  font-size: var(--type-label-large-size);
  font-weight: 700;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-action-banner {
  margin-top: 48px;
  text-align: center;
}

/* Team Page */
.team-section {
  padding-block: 24px 64px;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
}

.team-info h2 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--wine);
  font-weight: 700;
  margin: 0 0 4px;
}

.team-info p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--muted);
  margin: 0;
}

.values-band {
  padding-block: 56px;
  background: linear-gradient(120deg, var(--wine-deep) 0%, var(--wine) 100%);
  color: #fff;
  text-align: center;
}

.values-band h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  line-height: var(--type-headline-large-line);
  margin: 0 0 36px;
  font-weight: 500;
}

.values-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.values-band-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
}

.values-band-grid strong {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.values-band-grid small {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: rgba(255, 255, 255, 0.7);
}

/* Projects Page */
.projects-section {
  padding-block: 24px 64px;
  background: #fff;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tabs button {
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: var(--type-label-large-size);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.project-image {
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 24px;
}

.project-tag {
  display: inline-block;
  font-size: var(--type-label-small-size);
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.project-info h2 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--text);
  font-weight: 700;
  margin: 0 0 8px;
}

.project-info p {
  font-size: var(--type-body-small-size);
  line-height: var(--type-body-small-line);
  color: var(--muted);
  margin: 0;
}

/* News Page */
.news-feature {
  padding-block: 24px 64px;
  background: #fff;
}

.news-feature-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.featured-story {
  position: relative;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.featured-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.news-tag {
  display: inline-block;
  font-size: var(--type-label-small-size);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.featured-overlay h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-medium-size);
  line-height: var(--type-headline-medium-line);
  margin: 0 0 8px;
  font-weight: 500;
}

.featured-overlay time {
  font-size: var(--type-body-small-size);
  color: #ccc;
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-side-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf8f5;
}

.news-side-item h3 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  margin: 6px 0 12px;
  font-weight: 600;
}

.news-side-item h3 a {
  color: var(--text);
}

.news-side-item h3 a:hover {
  color: var(--wine);
}

.news-side-item footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--type-body-small-size);
  color: var(--muted);
}

.read-more {
  font-weight: 600;
  color: var(--wine);
}

/* Careers Page */
.career-banner {
  padding-block: 24px 48px;
  background: #fff;
}

.career-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}

.career-image {
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}

.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perk-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #faf8f5;
  text-align: center;
}

.perk-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.perk-card span {
  font-size: var(--type-label-large-size);
  font-weight: 700;
  color: var(--wine);
}

.jobs-section {
  padding-block: 24px 64px;
  background: #fff;
}

.jobs-heading {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  line-height: var(--type-headline-large-line);
  color: var(--wine);
  margin: 0 0 32px;
  font-weight: 500;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.job-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.job-card:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
}

.job-card h3 {
  font-size: var(--type-title-small-size);
  line-height: var(--type-title-small-line);
  color: var(--wine);
  font-weight: 700;
  margin: 0 0 8px;
}

.job-card p {
  font-size: var(--type-body-small-size);
  color: var(--muted);
  margin: 0 0 24px;
  flex: 1;
}

.job-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: var(--type-body-small-size);
}

.job-card footer span {
  color: var(--muted);
}

.job-card footer strong {
  color: var(--wine);
}

/* Contact Page */
.contact-section {
  padding-block: 24px 64px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}

.contact-info h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  color: var(--wine);
  margin: 0 0 16px;
  font-weight: 500;
}

.contact-info p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  color: var(--text);
  margin: 0 0 32px;
}

.contact-address-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 24px;
}

.contact-item strong {
  display: block;
  font-size: var(--type-title-small-size);
  color: var(--wine);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: var(--type-body-small-size);
  margin: 0;
  color: var(--text);
}

.contact-form {
  background: #faf8f5;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--type-body-small-size);
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: var(--type-body-small-size);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--wine);
}

/* Detail Pages (Service, Article, Career Detail) */
.detail-banner {
  padding-block: 24px 48px;
  background: linear-gradient(120deg, var(--wine-deep) 0%, var(--wine) 100%);
  color: #fff;
}

.detail-banner .breadcrumb a,
.detail-banner .breadcrumb span,
.detail-banner .breadcrumb strong {
  color: rgba(255, 255, 255, 0.8);
}

.banner-badge {
  display: inline-block;
  font-size: var(--type-label-small-size);
  font-weight: 700;
  color: var(--gold);
  margin-block: 16px 8px;
}

.detail-banner-copy h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  margin: 0 0 12px;
  font-weight: 500;
}

.detail-banner-copy p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  color: #f8f6f2;
  margin: 0;
  max-width: 800px;
}

.detail-section {
  padding-block: 48px;
  background: #fff;
}

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

.detail-copy h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  color: var(--wine);
  margin: 0 0 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  color: var(--text);
}

.detail-image {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-services {
  padding-block: 48px;
  background: #faf8f5;
}

.related-services>.wide-container>h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  color: var(--wine);
  margin: 8px 0 32px;
}

.article-detail,
.career-detail {
  padding-block: 24px 64px;
  background: #fff;
}

.article-detail-grid,
.career-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 24px;
}

.article-body h1,
.career-body h1 {
  font-family: var(--serif);
  font-size: var(--type-display-large-size);
  line-height: var(--type-display-large-line);
  color: var(--wine);
  margin: 8px 0 16px;
}

.article-body time {
  display: block;
  font-size: var(--type-body-small-size);
  color: var(--muted);
  margin-bottom: 24px;
}

.article-body h2,
.career-body h2 {
  font-size: var(--type-headline-small-size);
  color: var(--wine);
  margin: 32px 0 16px;
}

.article-body ul,
.career-body ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.article-body li,
.career-body li {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  margin-bottom: 8px;
}

.share-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.job-meta {
  display: flex;
  gap: 24px;
  font-size: var(--type-body-large-size);
  color: var(--wine);
  margin-bottom: 20px;
}

.article-media,
.career-media {
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
}

.article-media img,
.career-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 404 Error Page */
.error-section {
  padding-block: 64px;
  background: #fff;
}

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

.error-code {
  font-family: var(--serif);
  font-size: var(--type-scale-80-size);
  line-height: var(--type-scale-80-line);
  color: var(--wine);
  margin: 0 0 16px;
}

.error-copy h2 {
  font-family: var(--serif);
  font-size: var(--type-headline-large-size);
  margin: 0 0 16px;
  color: var(--navy);
}

.error-copy p {
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
  margin: 0 0 32px;
  color: var(--text);
}

.error-image {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

.error-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .topbar-inner {
    height: auto;
    padding-block: 16px;
    flex-wrap: wrap;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: var(--type-label-medium-size);
  }

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

  .solution-grid article {
    border-bottom: 1px solid var(--line);
  }

  .content-row-inner {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .services-cards-grid,
  .projects-grid,
  .team-grid,
  .news-feature-grid,
  .career-banner-grid,
  .job-grid,
  .contact-grid,
  .detail-grid,
  .article-detail-grid,
  .career-detail-grid,
  .error-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

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

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .main-nav {
    display: none;
  }

  .hero-copy h1 {
    font-size: var(--type-mobile-heading-xl-size);
    line-height: var(--type-mobile-heading-xl-line);
  }

  .hero-copy h2 {
    font-size: var(--type-mobile-heading-medium-size);
    line-height: var(--type-mobile-heading-medium-line);
  }

  .hero-arrow {
    display: none;
  }

  .benefits-section {
    margin-top: 0;
  }

  .benefits {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-block: 16px;
  }

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

  .solution-grid article {
    border-right: 0;
  }

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

  .value-item:nth-child(2) {
    border-right: 0;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-action {
    align-items: center;
  }

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

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