/* =========================================
   VARIABLES & GLOBALS
   ========================================= */
:root {
  /* German Corporate Consulting Palette */
  --clr-red: #e50000; /* Bold Corporate Red */
  --clr-red-hover: #b30000;
  --clr-dark: #1a1a1a; /* Near Black */
  --clr-dark-lighter: #2a2a2a;
  --clr-white: #ffffff;
  --clr-light: #f4f4f4; /* Very Light Gray */
  --clr-gray: #cccccc; /* Medium Gray for borders */
  --clr-gray-dark: #666666; /* Dark Gray for text on light bg */
  --clr-gray-light: #aaaaaa; /* Light Gray for text on dark bg */

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;

  /* Metrics */
  --trans: 0.3s ease-in-out;
  --rad-none: 0px; /* Strict, sharp corners for corporate look */
  --rad-sm: 4px;

  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Reset - strict prevention of horizontal scrolling */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Utility Backgrounds & Colors (High Contrast Enforced) */
.bg-dark {
  background-color: var(--clr-dark);
  color: var(--clr-white);
}
.bg-light {
  background-color: var(--clr-light);
  color: var(--clr-dark);
}
.bg-white {
  background-color: var(--clr-white);
  color: var(--clr-dark);
}
.bg-red {
  background-color: var(--clr-red);
  color: var(--clr-white);
}

.text-white {
  color: var(--clr-white) !important;
}
.text-dark {
  color: var(--clr-dark) !important;
}
.text-red {
  color: var(--clr-red) !important;
}
.text-gray {
  color: var(--clr-gray-dark) !important;
} /* For light bg */
.text-gray-light {
  color: var(--clr-gray-light) !important;
} /* For dark bg */

.border-gray {
  border: 1px solid var(--clr-gray);
}
.border-dark {
  border: 1px solid var(--clr-dark-lighter);
}

.text-center {
  text-align: center;
}
.w-full {
  width: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-800 {
  max-width: 800px;
}
.max-w-300 {
  max-width: 300px;
}

.mt-6 {
  margin-top: 24px;
}
.mt-8 {
  margin-top: 32px;
}
.mt-auto {
  margin-top: auto;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.p-12 {
  padding: 48px;
}
@media (max-width: 768px) {
  .p-12 {
    padding: 32px 24px;
  }
}

.font-bold {
  font-weight: 700;
}
.text-sm {
  font-size: 0.9rem;
}
.text-lg {
  font-size: 1.15rem;
}
.inline-flex {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.opacity-90 {
  opacity: 0.9;
}
.opacity-70 {
  opacity: 0.7;
}

.shadow-md {
  box-shadow: var(--shadow-md);
}
.shadow-lg {
  box-shadow: var(--shadow-lg);
}
.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.link-red {
  color: var(--clr-red);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}
.link-red:hover {
  color: var(--clr-dark);
}
.bg-dark .link-red:hover {
  color: var(--clr-white);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}
.hero-title span {
  color: var(--clr-red);
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
}
.sec-sub {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: -16px;
  margin-bottom: 40px;
  color: var(--clr-gray-dark);
}
h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1.05rem;
  margin: 0 0 20px 0;
  font-weight: 400;
}
.hero-desc {
  font-size: 1.15rem;
  max-width: 650px;
  color: var(--clr-gray-light);
}
.bg-light p,
.bg-white p {
  color: var(--clr-gray-dark);
}
.bg-dark p {
  color: var(--clr-gray-light);
}

.red-line {
  width: 60px;
  height: 4px;
  background-color: var(--clr-red);
  margin-bottom: 24px;
}
.center-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.center-title .red-line {
  margin: 0 auto 24px;
}

/* Buttons */
.btn-primary,
.btn-primary-sm,
.btn-outline-white,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--rad-none);
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-primary:hover {
  background-color: var(--clr-dark);
  border-color: var(--clr-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-primary-sm {
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn-primary-sm:hover {
  background-color: var(--clr-dark);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--clr-white);
  color: var(--clr-white);
  padding: 14px 34px;
  font-size: 1rem;
}
.btn-outline-white:hover {
  background-color: var(--clr-white);
  color: var(--clr-dark);
}

.btn-dark {
  background-color: var(--clr-dark);
  color: var(--clr-white);
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-dark:hover {
  background-color: var(--clr-red);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Header & Nav */
.ger-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clr-gray);
  transition: var(--trans);
}
.ger-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.header-flex {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
}
.ger-header.scrolled .header-flex {
  height: 75px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  position: relative;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-dark);
  transition: var(--trans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-red);
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--clr-dark);
  border-radius: var(--rad-none);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--clr-dark);
  transition: var(--trans);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}

/* Mobile Menu - FIXED OVERLAP ISSUE */
.mob-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-white);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
body.no-scroll .mob-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--clr-gray);
}
@media (max-width: 576px) {
  .mob-header {
    padding: 20px 24px;
  }
}
.close-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--clr-dark);
  border-radius: var(--rad-none);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--clr-dark);
  transition: var(--trans);
}
.close-btn:hover {
  background: var(--clr-red);
  color: var(--clr-white);
  border-color: var(--clr-red);
  transform: rotate(90deg);
}

/* BUG FIX: justify-content: flex-start and padding-top 80px */
.mob-nav-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mob-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-dark);
  transition: var(--trans);
  text-transform: uppercase;
}
.mob-link:hover {
  color: var(--clr-red);
  transform: translateX(10px);
}

.mob-footer {
  padding: 32px;
  border-top: 1px solid var(--clr-dark-lighter);
}
.mob-footer p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.mob-footer i {
  flex-shrink: 0;
}

/* Sections Layout */
.sec-content {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-content {
    padding: 80px 0;
  }
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.align-center {
  align-items: center;
}
@media (max-width: 991px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Default reverse on mobile for better flow */
  .split-layout .text-col {
    order: 1;
  }
  .split-layout .visual-col {
    order: 2;
  }
}

/* Hero Section */
.sec-hero {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  position: relative;
}
.sec-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--clr-red);
  opacity: 0.05;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }
}

.corporate-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 2px solid var(--clr-red);
  color: var(--clr-red);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.img-main {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 8px solid var(--clr-dark);
}
.stat-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  padding: 32px;
  border: 4px solid var(--clr-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.stat-txt {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .stat-card {
    bottom: -20px;
    left: 20px;
    right: 20px;
    align-items: center;
    text-align: center;
  }
}

/* Expertise Section */
.geometric-frame {
  position: relative;
  padding: 20px 20px 0 0;
}
.img-fluid {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  border: 1px solid var(--clr-gray);
}
.geometric-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-red);
  z-index: 1;
  transform: translate(20px, 20px);
}
@media (max-width: 768px) {
  .geometric-frame {
    padding: 0;
  }
  .geometric-frame::after {
    display: none;
  }
}

/* Strategy Bento */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.bento-card {
  padding: 48px;
  transition: var(--trans);
  border-top: 4px solid transparent;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--clr-red);
  box-shadow: var(--shadow-lg);
}
.bento-card.wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .bento-card.wide {
    grid-column: span 1;
  }
}

.icon-box {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.icon-box i {
  width: 32px;
  height: 32px;
}
.icon-box-lg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-box-lg i {
  width: 40px;
  height: 40px;
}
.card-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.flex-bw {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 576px) {
  .flex-bw {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .icon-box-lg {
    margin-bottom: 24px;
  }
}

/* DACH Market Banner */
.market-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clr-white);
  border: 1px solid var(--clr-gray);
}
@media (max-width: 991px) {
  .market-banner {
    grid-template-columns: 1fr;
  }
}
.mb-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--clr-gray);
}
@media (max-width: 991px) {
  .mb-text {
    border-right: none;
    border-bottom: 1px solid var(--clr-gray);
  }
}
.mb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  filter: grayscale(50%);
}

/* Audit Section */
.massive-icon {
  width: 80px;
  height: 80px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  transition: var(--trans);
  border-left: 4px solid transparent;
}
.faq-item.active {
  border-left-color: var(--clr-red);
  box-shadow: var(--shadow-md);
  background: var(--clr-white);
}
.faq-trigger {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .faq-trigger {
    padding: 20px 24px;
    font-size: 1rem;
  }
}
.faq-trigger i {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
  color: var(--clr-dark) !important;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-panel p {
  padding: 0 32px 32px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .faq-panel p {
    padding: 0 24px 24px;
  }
}

/* Form Section */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--clr-dark);
}
@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--clr-dark-lighter);
}
@media (max-width: 991px) {
  .form-info {
    border-right: none;
    border-bottom: 1px solid var(--clr-dark-lighter);
  }
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 500;
}
.c-row i {
  flex-shrink: 0;
  margin-top: 2px;
}

.form-head {
  font-size: 2rem;
  text-align: center;
}
.input-block {
  margin-bottom: 24px;
}
.input-block label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.input-rel {
  position: relative;
}
.input-rel i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.input-rel input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border-radius: var(--rad-none);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--trans);
  border: 1px solid var(--clr-gray);
}
.input-rel input:focus {
  outline: none;
  border-color: var(--clr-red);
  background: var(--clr-white);
  box-shadow: 0 0 0 2px rgba(229, 0, 0, 0.1);
}

.checkbox-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-block input {
  margin-top: 6px;
  width: 20px;
  height: 20px;
  accent-color: var(--clr-red);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-block label {
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.5;
  color: var(--clr-gray-dark);
}

/* Footer */
.ger-footer {
  padding: 80px 0 0;
  border-top: 4px solid var(--clr-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.f-title {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.f-list li {
  margin-bottom: 16px;
}
.f-list a {
  font-size: 0.95rem;
}
.f-list a:hover {
  color: var(--clr-red) !important;
  padding-left: 6px;
}

.contact-list-f li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-list-f i {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--clr-dark-lighter);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  max-width: 420px;
  border-left: 4px solid var(--clr-red);
  padding: 24px;
  z-index: 9999;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 576px) {
  .cookie-popup {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.c-wrap {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.c-icon i {
  width: 32px;
  height: 32px;
}
.c-head {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.c-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
