/* ============================================
   Image & Reputation - Trust & Authority Theme
   Colors: Black & Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #9A7B0A;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: rgba(10, 10, 10, 0.85);
  --chrome-1: #1a1a1a;
  --chrome-2: #2d2d2d;
  --chrome-3: #4a4a4a;
  --chrome-highlight: #c0c0c0;
  --text-primary: #f0ece0;
  --text-muted: #a89f8a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--gold-glow);
}

.logo span {
  color: var(--text-primary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ---- Layout ---- */
main {
  padding-top: var(--nav-height);
}

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

.section {
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 2rem;
}

/* ---- Hero ---- */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  position: relative;
}

.hero-image {
  position: absolute;
  top: 2rem;
  left: 5%;
  z-index: 2;
}

.hero-image img {
  width: auto;
  max-width: 220px;
  height: auto;
  display: block;
  padding: 1rem;
  background: #ffffff;
  border: 2px solid var(--gold);
  box-shadow: 0 0 50px var(--gold-glow), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .motto {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero .slogan {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 25px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

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

.card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- Vision / Mission blocks ---- */
.dual-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-block {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.5rem;
  text-align: center;
}

.highlight-block h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.highlight-block p {
  color: var(--text-primary);
  font-size: 1.05rem;
}

/* ---- Values bento grid ---- */
.values-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.value-tile {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.value-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-tile:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(212, 175, 55, 0.12);
}

.value-tile:hover::before {
  transform: scaleX(1);
}

.value-tile--wide:nth-child(4) {
  grid-column: 2 / span 2;
}

.value-tile--wide:nth-child(5) {
  grid-column: 4 / span 2;
}

.value-icon {
  font-size: 0.65rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.value-tile h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .values-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-tile,
  .value-tile--wide:nth-child(4),
  .value-tile--wide:nth-child(5) {
    grid-column: span 1;
  }

  .value-tile:last-child {
    grid-column: 1 / -1;
  }
}

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

  .value-tile,
  .value-tile--wide:nth-child(4),
  .value-tile--wide:nth-child(5),
  .value-tile:last-child {
    grid-column: span 1;
  }
}

/* ---- Objectives list ---- */
/* ---- Objectives grid ---- */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.objective-card {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.objective-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.objective-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 175, 55, 0.1);
}

.objective-card:hover::after {
  opacity: 1;
}

.objective-card-top {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(10, 10, 10, 0.6));
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.objective-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.objective-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  padding: 1.5rem 1.5rem 0.75rem;
  line-height: 1.3;
}

.objective-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0 1.5rem 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .objectives-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ---- Services list ---- */
/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
  opacity: 0.5;
  transition: opacity var(--transition), width var(--transition);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
  box-shadow: -4px 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.08);
}

.service-card:hover::before {
  opacity: 1;
  width: 4px;
}

.service-dot {
  position: absolute;
  top: 1.75rem;
  left: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* ---- Quote block ---- */
.quote-block {
  text-align: center;
  padding: 4rem 2rem;
  margin: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03), transparent, rgba(212, 175, 55, 0.03));
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.quote-block cite {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
}

/* ---- About page: Director ---- */
.director-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3rem;
  margin-top: 2rem;
}

.director-photo {
  width: 240px;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px var(--gold-glow);
  flex-shrink: 0;
  border-radius: 4px;
}

.director-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.director-info .role {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.director-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Consultancy panel ---- */
.consultancy-panel {
  max-width: 1000px;
  margin: 0 auto;
}

.consultancy-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.consultancy-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(10, 10, 10, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  transition: all var(--transition);
}

.consultancy-features li:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 10, 10, 0.9));
  transform: scale(1.02);
}

.consultancy-features-wide {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.consultancy-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  margin-top: 0.1rem;
}

.consultancy-features li span:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .consultancy-features {
    grid-template-columns: 1fr;
  }

  .consultancy-features-wide {
    grid-column: span 1;
    max-width: 100%;
  }
}

/* ---- Info boxes ---- */
.info-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  margin-top: 2rem;
}

.info-box h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

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

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

.map-placeholder {
  margin-top: 3rem;
  padding: 3rem;
  text-align: center;
  background: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.map-placeholder h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.map-placeholder address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 2;
  font-size: 0.95rem;
}

/* ---- Page header (inner pages) ---- */
.page-header {
  text-align: center;
  padding: 5rem 5% 3rem;
  position: relative;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ---- Footer ---- */
.footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem 5% 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto 2.5rem;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  line-height: 1.8;
  transition: color var(--transition);
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 1140px;
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-slogan {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem !important;
  margin-top: 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .director-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .director-photo {
    margin: 0 auto;
    width: 200px;
  }

  .hero-image {
    top: 1.25rem;
    left: 1rem;
  }

  .hero-image img {
    max-width: 130px;
    padding: 0.65rem;
  }

  .hero-inner {
    padding-top: 7rem;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }
}

/* ---- WhatsApp float button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 30px rgba(212, 175, 55, 0.35);
  color: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---- Pro Max Trust & Authority Refresh ---- */
:root {
  --surface: rgba(8, 8, 8, 0.78);
  --surface-strong: rgba(10, 10, 10, 0.94);
  --surface-warm: rgba(212, 175, 55, 0.08);
  --line: rgba(245, 230, 163, 0.18);
  --line-strong: rgba(245, 230, 163, 0.38);
  --focus-ring: #F5E6A3;
  --ease-out: 220ms ease-out;
  --nav-compact-height: 68px;
}

body {
  color-scheme: dark;
  background:
    linear-gradient(145deg, #050505 0%, #0b0a07 42%, #020202 100%);
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.16), transparent 28%, rgba(192, 192, 192, 0.08) 58%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    #050505;
}

.site-backdrop::before,
.site-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-backdrop::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.site-backdrop::after {
  background: linear-gradient(115deg, transparent 0%, rgba(245, 230, 163, 0.12) 42%, transparent 58%);
  opacity: 0.35;
  transform: translate3d(-12%, 0, 0);
  animation: authoritySheen 14s ease-in-out infinite alternate;
}

@keyframes authoritySheen {
  to { transform: translate3d(12%, 0, 0); }
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1100;
  transform: translateY(-150%);
  background: var(--gold-light);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

a,
button,
input,
textarea,
select {
  touch-action: manipulation;
}

.logo,
.nav-links a,
.hero-badge,
.section-subtitle,
.btn,
.director-info .role,
.footer-bottom p,
.quote-block cite,
.form-group label,
.contact-item h4 {
  letter-spacing: 0;
}

.navbar {
  z-index: 40;
  transition: height var(--ease-out), background var(--ease-out), box-shadow var(--ease-out);
}

.navbar.scrolled {
  height: var(--nav-compact-height);
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.nav-toggle {
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-title {
  font-size: 2.75rem;
}

.page-header h1 {
  font-size: 3.4rem;
}

.hero {
  min-height: calc(100dvh - var(--nav-height));
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(212, 175, 55, 0.12), transparent 32%, rgba(212, 175, 55, 0.08));
}

.hero h1 {
  font-size: 4.25rem;
  text-wrap: balance;
}

.hero .slogan {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  letter-spacing: 0;
}

.hero-image img {
  border-radius: 8px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 2.25rem auto 0;
  max-width: 820px;
}

.hero-proof li {
  min-height: 118px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(10, 10, 10, 0.78));
  text-align: left;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--gold-light);
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.hero-proof span {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.trust-strip {
  padding: 0 0 4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card,
.highlight-block,
.objective-card,
.value-tile,
.service-card,
.director-card,
.card,
.consultancy-features li,
.contact-form,
.map-placeholder,
.quote-block,
.info-box {
  border-radius: 8px;
  background-color: var(--surface);
  backdrop-filter: blur(14px);
}

.trust-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.trust-card span,
.objective-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 800;
}

.trust-card h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.55rem;
  margin: 1rem 0 0.35rem;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.objective-icon {
  border: 0;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.value-icon {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 999px;
  font-size: 0;
  margin-bottom: 1rem;
}

.value-tile h3 {
  font-size: 1.5rem;
}

.consultancy-check {
  position: relative;
}

.consultancy-check::before {
  content: '';
  width: 8px;
  height: 14px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  line-height: 1.2;
  white-space: normal;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.form-note,
.form-status {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.form-note {
  margin: -0.75rem 0 1.5rem;
}

.form-status {
  min-height: 1.4rem;
  margin: -0.25rem 0 0.75rem;
  color: var(--gold-light);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  min-height: 48px;
  border-radius: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease-out, transform 360ms ease-out;
}

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

@media (max-width: 900px) {
  .hero-proof,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof li {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }

  .page-header h1 {
    font-size: 2.7rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero .slogan {
    font-size: 0.95rem;
  }

  .hero-proof {
    margin-top: 1.75rem;
  }

  .nav-links {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.32rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.35rem;
  }

  .trust-card,
  .contact-form,
  .map-placeholder {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-backdrop::after,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Editorial Layout Refresh ---- */
.home-page .site-backdrop {
  background:
    radial-gradient(circle at 15% 24%, rgba(212, 175, 55, 0.18), transparent 28%),
    linear-gradient(100deg, rgba(0, 0, 0, 0.94) 0%, rgba(9, 9, 7, 0.9) 45%, rgba(40, 34, 14, 0.64) 100%),
    #050505;
}

.home-page .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 4rem;
  align-items: center;
  justify-content: stretch;
  padding: 5rem 6% 4rem;
}

.home-page .hero-image {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  order: 2;
}

.home-page .hero-image::before {
  content: '';
  position: absolute;
  inset: 9% 7%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  filter: blur(48px);
}

.home-page .hero-image img {
  width: min(100%, 560px);
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 16px;
  box-shadow: none;
}

.home-page .hero-inner {
  justify-content: flex-start;
  max-width: none;
  order: 1;
}

.home-page .hero-content {
  max-width: 720px;
  text-align: left;
  margin: 0;
}

.home-page .hero-badge {
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.38);
}

.home-page .hero h1 {
  max-width: 680px;
}

.home-page .hero .slogan {
  margin-left: 0;
  max-width: 590px;
}

.home-page .hero-cta {
  justify-content: flex-start;
}

.home-page .hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 690px;
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-page .hero-proof li {
  min-height: 0;
  padding: 1rem 1.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .hero-proof li + li {
  border-left: 1px solid var(--line);
}

.method-flow,
.purpose-editorial,
.services-editorial,
.values-line {
  padding: 5rem 0;
}

.section-kicker {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.method-flow h2,
.purpose-editorial h2,
.services-editorial h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 3rem;
  line-height: 1.08;
  max-width: 820px;
}

.method-line {
  height: 1px;
  margin: 3rem 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.18), transparent);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  list-style: none;
  margin-top: 2rem;
}

.method-steps li {
  position: relative;
  padding-top: 0.75rem;
}

.method-steps span,
.service-chapter span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.method-steps strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0.35rem 0;
}

.method-steps p,
.purpose-copy p,
.service-chapter p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.purpose-editorial {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), rgba(0, 0, 0, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 5rem;
  align-items: start;
}

.purpose-copy {
  border-left: 1px solid var(--line-strong);
  padding-left: 2rem;
}

.purpose-copy p + p {
  margin-top: 1.25rem;
}

.purpose-copy strong {
  color: var(--gold-light);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.services-heading h2 {
  max-width: 760px;
}

.service-chapters {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.service-chapter {
  display: grid;
  grid-template-columns: 180px minmax(260px, 0.7fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-chapter h3 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.values-line {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-line .container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.values-line p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.values-line ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  list-style: none;
}

.values-line li {
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.28);
}

.about-page .director-card {
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  overflow: visible;
}

.about-page .director-photo {
  width: min(100%, 300px);
  max-height: none;
  border: 0;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), transparent);
}

@media (max-width: 980px) {
  .home-page .hero,
  .purpose-layout,
  .services-heading,
  .service-chapter {
    grid-template-columns: 1fr;
  }

  .home-page .hero-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .home-page .hero-inner {
    order: 2;
  }

  .home-page .hero-content,
  .home-page .hero .slogan {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .hero-cta {
    justify-content: center;
  }

  .home-page .hero-proof {
    margin-left: auto;
    margin-right: auto;
  }

  .purpose-copy {
    border-left: 0;
    padding-left: 0;
  }

  .service-chapter {
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .home-page .hero {
    padding: 3rem 5% 3.25rem;
    gap: 2rem;
  }

  .home-page .hero-image img {
    width: min(100%, 360px);
  }

  .home-page .hero-inner {
    padding-top: 0;
  }

  .home-page .hero-proof {
    grid-template-columns: 1fr;
  }

  .home-page .hero-proof li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .method-flow,
  .purpose-editorial,
  .services-editorial {
    padding: 3.5rem 0;
  }

  .method-flow h2,
  .purpose-editorial h2,
  .services-editorial h2 {
    font-size: 2.25rem;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .values-line .container {
    display: block;
  }

  .values-line ul {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

/* ---- About Editorial Refresh ---- */
.about-hero {
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: end;
}

.about-hero h1,
.about-intro h2,
.director-profile h2,
.training-editorial h2 {
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1.08;
}

.about-hero h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.about-hero-copy p:last-child {
  max-width: 690px;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-portrait-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  margin: 0;
  align-items: end;
  justify-items: center;
  border-bottom: 1px solid var(--line-strong);
  overflow: visible;
  background: transparent;
}

.about-portrait-stage img {
  z-index: 1;
  width: min(118%, 480px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.45));
}

.about-portrait-stage figcaption {
  position: absolute;
  right: 0;
  bottom: 1rem;
  z-index: 2;
  max-width: 255px;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 1px solid var(--gold);
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.64));
}

.about-portrait-stage strong,
.about-portrait-stage span {
  display: block;
}

.about-portrait-stage strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.about-portrait-stage span {
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.about-intro,
.director-profile,
.training-editorial {
  padding: 5.5rem 0;
}

.about-split,
.director-editorial,
.training-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-intro h2,
.director-profile h2,
.training-editorial h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-intro-copy,
.director-story,
.training-details {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.about-intro-copy > p,
.director-story > p,
.training-details > p {
  max-width: 760px;
}

.director-story > p + p {
  margin-top: 1.2rem;
}

.about-principles {
  margin-top: 2.25rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.about-principles li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.about-principles span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-principles p {
  margin: 0;
  color: var(--text-muted);
}

.director-profile {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), rgba(0, 0, 0, 0));
}

.credential-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
  list-style: none;
}

.credential-line li {
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.86rem;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.88rem;
}

.training-editorial {
  padding-top: 4.5rem;
}

.training-details {
  display: grid;
  gap: 1.75rem;
  justify-items: start;
  border-left: 1px solid var(--line-strong);
  padding-left: 2rem;
}

.about-values-line {
  margin-top: 0;
}

.about-page .quote-block {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

@media (max-width: 980px) {
  .about-hero-layout,
  .about-split,
  .director-editorial,
  .training-layout {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 4rem;
  }

  .about-portrait-stage {
    min-height: 460px;
    max-width: 620px;
  }

  .about-portrait-stage img {
    width: min(100%, 430px);
  }

  .training-details {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .about-intro,
  .director-profile,
  .training-editorial {
    padding: 3.5rem 0;
  }

  .about-portrait-stage {
    min-height: 380px;
  }

  .about-portrait-stage img {
    width: min(100%, 350px);
  }

  .about-portrait-stage figcaption {
    right: auto;
    left: 0;
    bottom: 0.75rem;
    max-width: 230px;
  }

  .about-principles li {
    grid-template-columns: 48px minmax(0, 1fr);
  }
}

/* ---- Compact Mobile Home Hero ---- */
@media (max-width: 768px) {
  .home-page .hero {
    min-height: auto;
    padding: 1.25rem 5% 2rem;
    gap: 0.9rem;
  }

  .home-page .hero-image {
    width: min(100%, 340px);
    max-width: 340px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .home-page .hero-image::before {
    inset: 18% 16%;
    filter: blur(32px);
  }

  .home-page .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.16);
  }

  .home-page .hero-badge {
    margin-bottom: 0.75rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .home-page .hero h1 {
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
  }

  .home-page .hero .motto {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.55rem;
  }

  .home-page .hero .slogan {
    max-width: 330px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-page .hero-cta {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    gap: 0.65rem;
  }

  .home-page .hero-cta .btn {
    width: 100%;
    min-height: 44px;
    padding: 0.72rem 0.85rem;
    font-size: 0.72rem;
    line-height: 1.25;
    text-align: center;
  }

  .home-page .hero-proof {
    margin-top: 1.5rem;
  }
}

@media (max-width: 380px) {
  .home-page .hero {
    padding-top: 1rem;
  }

  .home-page .hero-image {
    max-width: 300px;
  }

  .home-page .hero h1 {
    font-size: 2.08rem;
  }

  .home-page .hero .slogan {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}
