:root {
  --stravon-dark: #252A2D;
  --stravon-black: #151719;
  --stravon-gold: #B9975B;
  --stravon-sand: #E8E1D5;
  --stravon-white: #F7F6F2;

  --text: #252A2D;
  --muted: #6E7478;
  --border: rgba(37, 42, 45, 0.14);

  --container: 1280px;
  --header-h: 92px;

  --radius-sm: 4px;
  --radius-md: 10px;

  --shadow-soft: 0 18px 50px rgba(21, 23, 25, 0.08);

  --transition: 220ms ease;
}

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--stravon-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 7.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 700;
}

p {
  margin-bottom: 1.2rem;
}

/* =========================================================
   GLOBAL
========================================================= */

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: var(--stravon-dark);
  color: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--stravon-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header {
  max-width: 790px;
  margin-bottom: 56px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.section-dark .section-header p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.section-footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--stravon-gold);
  color: #fff;
}

.btn-primary:hover {
  background: #a7864f;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--stravon-dark);
}

.btn-secondary-dark {
  border-color: var(--stravon-dark);
  color: var(--stravon-dark);
}

.btn-secondary-dark:hover {
  background: var(--stravon-dark);
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--stravon-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(21, 23, 25, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.site-logo img {
  width: 295px;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.main-nav > ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--stravon-gold);
  transition: right var(--transition);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--stravon-black);
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(21, 23, 25, 0.94) 0%,
      rgba(21, 23, 25, 0.82) 34%,
      rgba(21, 23, 25, 0.30) 66%,
      rgba(21, 23, 25, 0.12) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-copy {
  max-width: 630px;
}

.hero h1 {
  margin-bottom: 26px;
  text-transform: uppercase;
}

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

.hero-lead {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 500;
}

.hero-description {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.76);
}

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

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
  background: var(--stravon-dark);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 215px;
  padding: 42px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid rgba(185, 151, 91, 0.72);
  border-radius: 14px;
  background: rgba(185, 151, 91, 0.08);
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.trust-item h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* =========================================================
   ABOUT
========================================================= */

.about .section-content {
  max-width: 590px;
}

.about .section-content p:not(.eyebrow) {
  color: var(--muted);
}

.section-image {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.section-image img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}

/* =========================================================
   SERVICES
========================================================= */

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

.service-card {
  overflow: hidden;
  background: var(--stravon-white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

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

.service-card-content {
  padding: 28px 26px 30px;
}

.service-card-content h3 {
  margin-bottom: 12px;
}

.service-card-content p {
  min-height: 84px;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-card-content a {
  color: var(--stravon-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================================
   REFERENCES
========================================================= */

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

.reference-card {
  position: relative;
  overflow: hidden;
  background: var(--stravon-dark);
}

.reference-card a {
  display: block;
  color: #fff;
}

.reference-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.reference-card:hover img {
  transform: scale(1.035);
}

.reference-info {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 24px 22px;
  background: linear-gradient(transparent, rgba(21, 23, 25, 0.88));
}

.reference-info h3 {
  margin-bottom: 4px;
}

.reference-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
}

/* =========================================================
   PROCESS
========================================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
}

.process-step {
  position: relative;
  min-height: 270px;
  padding: 30px 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step:first-child {
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 44px;
  color: var(--stravon-gold);
  font-size: 1.35rem;
  font-weight: 800;
}

.process-step p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.91rem;
}

/* =========================================================
   WHY STRAVON
========================================================= */

.why-stravon {
  background: var(--stravon-black);
}

.why-stravon .section-image img {
  min-height: 600px;
}

.why-stravon .section-content {
  max-width: 600px;
}

.why-stravon .section-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 38px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--stravon-gold);
  font-weight: 800;
}

/* =========================================================
   MAIN CTA
========================================================= */

.main-cta {
  padding: 78px 0;
  background: var(--stravon-sand);
}

.main-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.main-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.main-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 78px 0 22px;
  background: var(--stravon-black);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 310px;
  max-width: 100%;
  margin-bottom: 24px;
}

.footer-brand p,
.site-footer address,
.site-footer li {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.site-footer h3 {
  margin-bottom: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer li + li {
  margin-top: 10px;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 68px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-nav {
  display: flex;
  gap: 24px;
}

/* =========================================================
   MOBILE STICKY CTA
========================================================= */

.mobile-sticky-cta {
  display: none;
}

/* =========================================================
   FORMS / GENERIC PAGES
========================================================= */

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--stravon-gold);
  box-shadow: 0 0 0 3px rgba(185, 151, 91, 0.12);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  :root {
    --header-h: 82px;
  }

  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .header-inner {
    grid-template-columns: 250px minmax(0, 1fr) auto;
  }

  .site-logo img {
    width: 235px;
    max-height: 64px;
  }

  .main-nav > ul {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.69rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 740px;
  }

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

  .trust-item:nth-child(3),
  .process-step:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .reference-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
  }

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

/* =========================================================
   MOBILE NAV + LAYOUT
========================================================= */

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .site-logo {
    position: relative;
    z-index: 1002;
  }

  .site-logo img {
    width: min(230px, calc(100vw - 96px));
    max-height: 58px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stravon-black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > ul {
    display: grid;
    gap: 22px;
    text-align: center;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(21, 23, 25, 0.20) 0%,
        rgba(21, 23, 25, 0.52) 38%,
        rgba(21, 23, 25, 0.96) 86%
      );
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 5.2rem);
  }

  .hero-actions {
    flex-wrap: wrap;
  }

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

  .trust-item {
    min-height: auto;
    padding: 32px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section-image img,
  .why-stravon .section-image img {
    min-height: 420px;
  }

  .services-grid,
  .reference-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .reference-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .process-step,
  .process-step:nth-child(3) {
    min-height: auto;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .main-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .legal-nav {
    flex-wrap: wrap;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 900;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 58px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
  }

  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stravon-dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-sticky-cta a:last-child {
    background: var(--stravon-gold);
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {
  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .service-card-content {
    padding: 24px 22px 26px;
  }

  .service-card-content p {
    min-height: auto;
  }

  .main-cta {
    padding: 60px 0;
  }
}

/* =========================================================
   ACCESSIBILITY / MOTION
========================================================= */

:focus-visible {
  outline: 2px solid var(--stravon-gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 861px) and (max-width: 1240px) {
  .header-inner {
    grid-template-columns: 235px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .site-logo img {
    width: 220px;
  }

  .main-nav > ul {
    gap: 13px;
  }

  .main-nav a {
    font-size: 0.65rem;
  }
}

@media (max-width: 420px) {
  .site-logo img {
    width: min(205px, calc(100vw - 88px));
  }
}

/* FINAL ORIGINAL LOGO */
.site-logo img{width:260px;height:78px;max-width:100%;max-height:78px;object-fit:contain;object-position:left center}
.footer-brand img{width:300px;height:auto;max-width:100%;object-fit:contain;object-position:left center}
@media(max-width:1240px) and (min-width:861px){.site-logo img{width:220px;height:68px}}
@media(max-width:860px){.site-logo img{width:min(205px,calc(100vw - 92px));height:62px}}
@media(max-width:420px){.site-logo img{width:min(180px,calc(100vw - 86px));height:58px}}


/* =========================================================
   STRAVON · HERO + HEADER FIX V2
========================================================= */

/* Desktopon a logo magassága volt a szűk keresztmetszet:
   a 260x78-as doboz a magas, állóbb arányú logót valójában ~129 px szélesre kényszerítette. */
@media (min-width: 1241px) {
  :root { --header-h: 112px; }

  .header-inner {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: 28px;
  }

  .site-logo img {
    width: 170px;
    height: auto;
    max-width: none;
    max-height: 104px;
  }

  .main-nav > ul { gap: 25px; }
  .main-nav a { font-size: 0.72rem; }
}

/* Az új hero-kép önmagában tiszta, ezért nincs szükség külön takarómaszkra. */
.hero-image img {
  object-position: center center;
}


/* =========================================================
   STRAVON · HEADER + HERO FINETUNE V3
   1. logo optikai középre/lejjebb igazítása
   2. desktop navigáció jobb olvashatósága
   3. hero főcím elegánsabb, ~7%-kal kisebb mérete
========================================================= */

@media (min-width: 1241px) {
  .site-logo img {
    transform: translateY(4px);
  }

  .main-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .hero h1 {
    font-size: clamp(4.75rem, 6.55vw, 6.65rem);
    line-height: 0.96;
  }
}

@media (min-width: 861px) and (max-width: 1240px) {
  .site-logo img {
    transform: translateY(3px);
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 7vw, 5.8rem);
  }
}


/* =========================================================
   STRAVON · TRUST BAR FINETUNE V4
========================================================= */
.trust-item {
  min-height: 228px;
  padding: 48px 36px 44px;
  border-left-color: rgba(255, 255, 255, 0.055);
}

.trust-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 23px;
  padding: 13px;
  border-color: rgba(185, 151, 91, 0.88);
  background: rgba(185, 151, 91, 0.11);
}

.trust-item h3 {
  margin-bottom: 11px;
  font-size: 0.98rem;
  letter-spacing: 0.015em;
}

.trust-item p {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .trust-item {
    min-height: 0;
    padding: 34px 28px;
  }
}


/* =========================================================
   STRAVON · ABOUT SECTION V5
========================================================= */
.about-grid {
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: center;
}

.about-copy .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-copy h2 {
  max-width: 570px;
  margin-top: 20px;
  margin-bottom: 42px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-copy > p {
  max-width: 610px;
  font-size: 1.02rem;
  line-height: 1.72;
}

.about-copy .text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(185, 151, 91, 0.38);
  font-weight: 700;
  letter-spacing: 0.055em;
  transition: border-color .2s ease, transform .2s ease;
}

.about-copy .text-link:hover {
  border-color: var(--gold);
  transform: translateX(3px);
}

.about-media {
  min-height: 500px;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-copy h2 {
    margin-bottom: 28px;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }
}


/* =========================================================
   STRAVON · ABOUT IMAGE FIX V7
   Tényleges .section-image javítás
========================================================= */
.section-image {
  overflow: hidden;
  border-radius: 10px;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  margin: 0;
}
