/* ============================================================
   RÓLUNK OLDAL – style.css
   Prefix: .ro-
   Alap: fehér háttér, dusty rose accent (#A67B7B)
   Szabály: csak additive, új scope-olt osztálynevekkel
   ============================================================ */

/* --- VÁLTOZÓK --- */
:root {
  --ro-accent:       #A67B7B;
  --ro-accent-light: #F2EAEA;
  --ro-accent-mid:   #D4B0B0;
  --ro-text:         #2C2222;
  --ro-text-muted:   #7A6060;
  --ro-white:        #FFFFFF;
  --ro-max-width:    1100px;
  --ro-gap:          clamp(2rem, 5vw, 4rem);
}

/* --- OLDAL FEJLÉC --- */
.ro-page-header {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  background: var(--ro-white);
}

.ro-page-header__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
}

.ro-page-header__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ro-text);
  margin: 0 0 1.4rem;
  line-height: 1.15;
}

.ro-page-header__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto;
}

/* --- INTRO SZEKCIÓ --- */
.ro-intro {
  background: var(--ro-white);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
}

.ro-intro__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Szöveg blokk */
.ro-intro__text {
  order: 1;
}

.ro-intro__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.55;
  margin: 0 0 1.6rem;
  position: relative;
  padding-left: 1.3rem;
  border-left: 2px solid var(--ro-accent);
}

.ro-intro__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0 0 1.2rem;
}

.ro-intro__body:last-of-type {
  margin-bottom: 2rem;
}

.ro-intro__signature {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ro-accent);
  letter-spacing: 0.05em;
}

/* Fotó blokk */
.ro-intro__photo-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.ro-intro__photo-frame {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.ro-intro__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.ro-intro__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}

/* --- IDÉZET SÁV --- */
.ro-quote-band {
  background: var(--ro-accent-light);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
}

.ro-quote-band__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.ro-quote-band__ornament {
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  display: block;
}

.ro-quote-band__text {
  margin: 0;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ro-text);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* --- EXTRA SZÖVEG --- */
.ro-extra {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.ro-extra__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ro-extra__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 1.4rem;
  line-height: 1.3;
}

.ro-extra__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.ro-extra__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

/* --- CTA SÁV --- */
.ro-cta {
  background: var(--ro-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.ro-cta__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.ro-cta__text {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ro-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.ro-cta__btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--ro-white);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.ro-cta__btn:hover {
  background: var(--ro-white);
  color: var(--ro-accent);
}

/* ============================================================
   RESZPONZÍV TÖRÉSEK
   ============================================================ */

@media (max-width: 768px) {
  .ro-intro__inner {
    grid-template-columns: 1fr;
  }

  .ro-intro__text {
    order: 2;
  }

  .ro-intro__photo-wrap {
    order: 1;
  }

  .ro-intro__photo-frame {
    max-width: 300px;
  }

  .ro-intro__photo-frame::before {
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 480px) {
  .ro-page-header__title {
    letter-spacing: 0.06em;
  }

  .ro-intro__lead {
    padding-left: 1rem;
  }
}


/* ============================================================
   ESKÜVŐTERVEZŐ NAPLÓ + MINI TANÁCSADÁS – style.css
   Prefix: .mt-
   Örökli a közös változókat (:root) a .ro- blokkból
   ============================================================ */

/* --- OLDAL FEJLÉC --- */
.mt-page-header {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  background: var(--ro-white);
}

.mt-page-header__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
}

.mt-page-header__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ro-text);
  margin: 0 0 1.4rem;
  line-height: 1.2;
}

.mt-page-header__title-sub {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ro-accent);
  letter-spacing: 0.12em;
}

.mt-page-header__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto;
}

/* --- HERO SZEKCIÓ --- */
.mt-hero {
  background: var(--ro-white);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
}

.mt-hero__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.mt-hero__text {
  order: 1;
}

.mt-hero__question {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.55;
  margin: 0 0 0.5rem;
  padding-left: 1.3rem;
  border-left: 2px solid var(--ro-accent);
}

.mt-hero__answer {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ro-accent);
  margin: 0 0 1.6rem;
  padding-left: 1.3rem;
}

.mt-hero__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

.mt-hero__photo-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.mt-hero__photo-frame {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.mt-hero__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.mt-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

/* --- CSOMAG TARTALMA --- */
.mt-package {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.mt-package__inner {
  max-width: 780px;
  margin: 0 auto;
}

.mt-package__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mt-package__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.mt-package__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 0.8rem;
  line-height: 1.3;
}

.mt-package__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.mt-package__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mt-package__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--ro-white);
  padding: 1.4rem 1.8rem;
}

.mt-package__item-icon {
  color: var(--ro-accent);
  font-size: 0.65rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.mt-package__item-content {
  flex: 1;
}

.mt-package__item-title {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.5;
}

.mt-package__item-price {
  font-weight: 400;
  color: var(--ro-accent);
  font-style: italic;
  font-size: 0.9em;
}

.mt-package__item-sub {
  font-size: 0.9rem;
  color: var(--ro-text-muted);
  margin: 0.5rem 0 0.6rem;
  font-style: italic;
}

.mt-package__subitems {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mt-package__subitem {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: var(--ro-text-muted);
  line-height: 1.6;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.mt-package__subitem-dash {
  color: var(--ro-accent-mid);
  flex-shrink: 0;
}

/* --- NAPLÓ MEGVÁSÁRLÁSA --- */
.mt-buy {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.mt-buy__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.mt-buy__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.mt-buy__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.mt-buy__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.8;
  margin: 0 0 2rem;
}

.mt-buy__btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--ro-accent);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.mt-buy__btn:hover {
  background: #8d6262;
}

/* --- IDŐPONTFOGLALÁS --- */
.mt-booking {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.mt-booking__inner {
  max-width: 780px;
  margin: 0 auto;
}

.mt-booking__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mt-booking__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.mt-booking__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.mt-booking__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.mt-booking__note {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: var(--ro-text-muted);
  line-height: 1.75;
  margin: 0;
}

.mt-booking__widget-placeholder {
  background: var(--ro-white);
  border: 1px dashed var(--ro-accent-mid);
  padding: 3.5rem 2rem;
  text-align: center;
}

.mt-booking__widget-text {
  font-size: 0.9rem;
  color: var(--ro-accent-mid);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ============================================================
   MINI TANÁCSADÁS – RESZPONZÍV
   ============================================================ */

@media (max-width: 768px) {
  .mt-hero__inner {
    grid-template-columns: 1fr;
  }

  .mt-hero__text {
    order: 2;
  }

  .mt-hero__photo-wrap {
    order: 1;
  }

  .mt-hero__photo-frame {
    max-width: 300px;
  }

  .mt-hero__photo-frame::before {
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
  }

  .mt-package__item {
    padding: 1.2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .mt-page-header__title {
    letter-spacing: 0.04em;
  }

  .mt-hero__question,
  .mt-hero__answer {
    padding-left: 1rem;
  }
}


/* ============================================================
   ESKÜVŐI TANÁCSADÁS – style.css
   Prefix: .et-
   Örökli a közös változókat (:root) a .ro- blokkból
   ============================================================ */

/* --- OLDAL FEJLÉC --- */
.et-page-header {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  background: var(--ro-white);
}

.et-page-header__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
}

.et-page-header__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ro-text);
  margin: 0 0 1.4rem;
  line-height: 1.15;
}

.et-page-header__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto;
}

/* --- HERO SZEKCIÓ --- */
.et-hero {
  background: var(--ro-white);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
}

.et-hero__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.et-hero__photo-wrap {
  order: 1;
  display: flex;
  justify-content: center;
}

.et-hero__photo-frame {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.et-hero__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.et-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
}

.et-hero__text {
  order: 2;
}

.et-hero__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.55;
  margin: 0 0 0.5rem;
  padding-left: 1.3rem;
  border-left: 2px solid var(--ro-accent);
}

.et-hero__answer {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ro-accent);
  margin: 0 0 1.6rem;
  padding-left: 1.3rem;
}

.et-hero__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

/* --- CSOMAG TARTALMA --- */
.et-package {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.et-package__inner {
  max-width: 780px;
  margin: 0 auto;
}

.et-package__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.et-package__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.et-package__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 0.8rem;
  line-height: 1.3;
}

.et-package__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.et-package__items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.et-package__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--ro-white);
  padding: 1.4rem 1.8rem;
}

.et-package__item-icon {
  color: var(--ro-accent);
  font-size: 0.65rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.et-package__item-content {
  flex: 1;
}

.et-package__item-title {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.5;
}

.et-package__item-note {
  font-weight: 400;
  color: var(--ro-accent);
  font-style: italic;
  font-size: 0.9em;
}

.et-package__item-sub {
  font-size: 0.9rem;
  color: var(--ro-text-muted);
  margin: 0.5rem 0 0.6rem;
  font-style: italic;
}

.et-package__subitems {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.et-package__subitem {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: var(--ro-text-muted);
  line-height: 1.6;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.et-package__subitem-dash {
  color: var(--ro-accent-mid);
  flex-shrink: 0;
}

/* --- ÁR SÁV --- */
.et-price {
  background: var(--ro-accent);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.et-price__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.et-price__label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.et-price__amount {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ro-white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.et-price__unit {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* --- IDŐPONTFOGLALÁS --- */
.et-booking {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.et-booking__inner {
  max-width: 780px;
  margin: 0 auto;
}

.et-booking__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.et-booking__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.et-booking__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.3;
}

.et-booking__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.et-booking__widget-placeholder {
  background: var(--ro-accent-light);
  border: 1px dashed var(--ro-accent-mid);
  padding: 3.5rem 2rem;
  text-align: center;
}

.et-booking__widget-text {
  font-size: 0.9rem;
  color: var(--ro-accent-mid);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ============================================================
   ESKÜVŐI TANÁCSADÁS – RESZPONZÍV
   ============================================================ */

@media (max-width: 768px) {
  .et-hero__inner {
    grid-template-columns: 1fr;
  }

  .et-hero__photo-wrap {
    order: 1;
  }

  .et-hero__text {
    order: 2;
  }

  .et-hero__photo-frame {
    max-width: 300px;
  }

  .et-hero__photo-frame::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
  }

  .et-package__item {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .et-page-header__title {
    letter-spacing: 0.06em;
  }

  .et-hero__lead,
  .et-hero__answer {
    padding-left: 1rem;
  }
}


/* ============================================================
   TELJES KÖRŰ ESKÜVŐSZERVEZÉS – style.css
   Prefix: .tk-
   Örökli a közös változókat (:root) a .ro- blokkból
   ============================================================ */

/* --- OLDAL FEJLÉC --- */
.tk-page-header {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  background: var(--ro-white);
}

.tk-page-header__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
}

.tk-page-header__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ro-text);
  margin: 0 0 1.4rem;
  line-height: 1.2;
}

.tk-page-header__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto;
}

/* --- HERO SZEKCIÓ --- */
.tk-hero {
  background: var(--ro-white);
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
}

.tk-hero__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.tk-hero__text {
  order: 1;
}

.tk-hero__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.55;
  margin: 0 0 1.4rem;
  padding-left: 1.3rem;
  border-left: 2px solid var(--ro-accent);
}

.tk-hero__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

.tk-hero__photo-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.tk-hero__photo-frame {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.tk-hero__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.tk-hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
}

/* --- SZIMPÁTIA TALÁLKOZÓ --- */
.tk-sympathy {
  background: var(--ro-accent);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.tk-sympathy__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tk-sympathy__ornament {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1.2rem;
}

.tk-sympathy__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-white);
  letter-spacing: 0.06em;
  margin: 0 0 1.8rem;
  line-height: 1.3;
}

.tk-sympathy__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 1rem auto 0;
}

.tk-sympathy__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.tk-sympathy__highlight {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-white);
  line-height: 1.8;
  margin: 1.5rem 0 0;
  font-style: italic;
  font-weight: 500;
}

/* --- HOGYAN SEGÍTEK --- */
.tk-how {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.tk-how__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
}

.tk-how__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tk-how__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.tk-how__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.3;
}

.tk-how__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.tk-how__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.tk-how__col {
  background: var(--ro-accent-light);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.tk-how__col-title {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ro-accent);
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ro-accent-mid);
}

.tk-how__col-title--spaced {
  margin-top: 2rem;
}

.tk-how__items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tk-how__item {
  font-size: clamp(0.88rem, 1.5vw, 0.95rem);
  color: var(--ro-text-muted);
  line-height: 1.65;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.tk-how__item-dash {
  color: var(--ro-accent-mid);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* --- KINEK SZÓL --- */
.tk-who {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.tk-who__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.tk-who__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.tk-who__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin: 0 0 2rem;
  line-height: 1.3;
}

.tk-who__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.tk-who__items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.tk-who__item {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.65;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tk-who__item-mark {
  color: var(--ro-accent);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* --- ÁR + CTA --- */
.tk-cta {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
  border-top: 1px solid var(--ro-accent-light);
}

.tk-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tk-cta__label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ro-accent);
  margin: 0;
}

.tk-cta__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

.tk-cta__closing {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text);
  line-height: 1.8;
  font-style: italic;
  margin: 0.5rem 0 1rem;
}

.tk-cta__btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--ro-accent);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.tk-cta__btn:hover {
  background: #8d6262;
}

/* ============================================================
   TELJES KÖRŰ – RESZPONZÍV
   ============================================================ */

@media (max-width: 768px) {
  .tk-hero__inner {
    grid-template-columns: 1fr;
  }

  .tk-hero__text {
    order: 2;
  }

  .tk-hero__photo-wrap {
    order: 1;
  }

  .tk-hero__photo-frame {
    max-width: 300px;
  }

  .tk-hero__photo-frame::before {
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
  }

  .tk-how__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tk-page-header__title {
    letter-spacing: 0.04em;
  }

  .tk-hero__lead {
    padding-left: 1rem;
  }
}


/* ============================================================
   REFERENCIÁK – style.css
   Prefix: .ref-
   Örökli a közös változókat (:root) a .ro- blokkból
   ============================================================ */

/* --- OLDAL FEJLÉC --- */
.ref-page-header {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
  background: var(--ro-white);
}

.ref-page-header__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.2rem;
}

.ref-page-header__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ro-text);
  margin: 0 0 1.4rem;
  line-height: 1.15;
}

.ref-page-header__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto 1.2rem;
}

.ref-page-header__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--ro-text-muted);
  font-style: italic;
  letter-spacing: 0.06em;
  margin: 0;
}

/* --- REFERENCIA GRID --- */
.ref-grid {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.ref-grid__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* --- REFERENCIA KÁRTYA --- */
.ref-card {
  background: var(--ro-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ref-card__photo-wrap {
  position: relative;
  overflow: hidden;
}

.ref-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}

.ref-card:hover .ref-card__photo {
  transform: scale(1.04);
}

.ref-card__photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(to top, rgba(44, 34, 34, 0.65) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.ref-card__photo-venue {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.ref-card__content {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.ref-card__names {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--ro-text);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.ref-card__amp {
  color: var(--ro-accent);
  font-style: italic;
  font-weight: 400;
}

.ref-card__divider {
  width: 32px;
  height: 1px;
  background: var(--ro-accent-mid);
}

.ref-card__desc {
  font-size: clamp(0.85rem, 1.4vw, 0.93rem);
  color: var(--ro-text-muted);
  line-height: 1.8;
  margin: 0;
}

/* --- CTA SÁV --- */
.ref-cta {
  background: var(--ro-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.ref-cta__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.ref-cta__text {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ro-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.ref-cta__btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--ro-white);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.ref-cta__btn:hover {
  background: var(--ro-white);
  color: var(--ro-accent) !important;
}

/* ============================================================
   REFERENCIÁK – RESZPONZÍV
   ============================================================ */

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

@media (max-width: 600px) {
  .ref-grid__inner {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .ref-card__photo {
    aspect-ratio: 3 / 2;
    object-position: center 30%;
  }
}

@media (max-width: 480px) {
  .ref-page-header__title {
    letter-spacing: 0.06em;
  }
}


/* ============================================================
   FŐOLDAL – style.css
   Prefix: .ho-
   Örökli a közös változókat (:root) a .ro- blokkból
   ============================================================ */

/* --- BEVEZETŐ SZEKCIÓ --- */
.ho-intro {
  background: var(--ro-white);
  padding: clamp(3rem, 8vw, 6rem) 1.5rem clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.ho-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ho-intro__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1.4rem;
}

.ho-intro__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--ro-text);
  letter-spacing: 0.1em;
  margin: 0 0 1.4rem;
  line-height: 1.25;
}

.ho-intro__line {
  width: 60px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 auto 1.8rem;
}

.ho-intro__text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0;
}

/* --- USP SÁV --- */
.ho-usp {
  background: var(--ro-accent);
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}

.ho-usp__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ho-usp__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.ho-usp__item:nth-child(1),
.ho-usp__item:nth-child(4) {
  border-left: none;
}

.ho-usp__icon {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
}

.ho-usp__label {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--ro-white);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.ho-usp__desc {
  font-size: clamp(0.8rem, 1.3vw, 0.88rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* --- SZOLGÁLTATÁSOK --- */
.ho-services {
  background: var(--ro-accent-light);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.ho-services__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
}

.ho-services__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ho-services__ornament {
  display: block;
  color: var(--ro-accent);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.ho-services__title {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  color: var(--ro-text);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.3;
}

.ho-services__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 1rem auto 0;
}

.ho-services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.ho-services__card {
  background: var(--ro-white);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.ho-services__card:hover {
  box-shadow: 0 8px 32px rgba(166, 123, 123, 0.12);
}

.ho-services__card--accent {
  background: var(--ro-accent);
}

.ho-services__card-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ho-services__card-num {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--ro-accent-mid);
  font-weight: 400;
}

.ho-services__card--accent .ho-services__card-num {
  color: rgba(255, 255, 255, 0.6);
}

.ho-services__card-title {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  color: var(--ro-text);
  line-height: 1.35;
  margin: 0;
}

.ho-services__card--accent .ho-services__card-title {
  color: var(--ro-white);
}

.ho-services__card-desc {
  font-size: clamp(0.85rem, 1.4vw, 0.93rem);
  color: var(--ro-text-muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.ho-services__card--accent .ho-services__card-desc {
  color: rgba(255, 255, 255, 0.85);
}

.ho-services__card-link {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ro-accent);
  text-decoration: none;
  padding-top: 0.4rem;
  border-top: 1px solid var(--ro-accent-light);
  transition: letter-spacing 0.25s ease;
}

.ho-services__card--accent .ho-services__card-link {
  color: var(--ro-white);
  border-top-color: rgba(255, 255, 255, 0.3);
}

.ho-services__card-link:hover {
  letter-spacing: 0.2em;
}

/* --- RÓLUNK PREVIEW --- */
.ho-about {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.ho-about__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ho-about__photo-wrap {
  order: 1;
  display: flex;
  justify-content: center;
}

.ho-about__photo-frame {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.ho-about__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.ho-about__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  position: relative;
  z-index: 1;
}

.ho-about__text {
  order: 2;
}

.ho-about__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.ho-about__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--ro-text);
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.ho-about__line {
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 0 1.6rem;
}

.ho-about__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0 0 1.1rem;
}

.ho-about__link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--ro-accent-mid);
  padding-bottom: 0.2rem;
  transition: letter-spacing 0.25s ease;
}

.ho-about__link:hover {
  letter-spacing: 0.22em;
}

/* --- SZÁMOK SÁV --- */
.ho-numbers {
  background: var(--ro-accent-light);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
}

.ho-numbers__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.ho-numbers__item {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.ho-numbers__value {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: var(--ro-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ho-numbers__plus {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--ro-accent-mid);
}

.ho-numbers__label {
  font-size: clamp(0.78rem, 1.3vw, 0.88rem);
  color: var(--ro-text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.ho-numbers__divider {
  color: var(--ro-accent-mid);
  font-size: 0.7rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* --- NAPLÓ KIEMELT TERMÉK --- */
.ho-product {
  background: var(--ro-white);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
}

.ho-product__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ho-product__text {
  order: 1;
}

.ho-product__ornament {
  display: block;
  color: var(--ro-accent-mid);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
}

.ho-product__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--ro-text);
  letter-spacing: 0.1em;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.ho-product__line {
  width: 40px;
  height: 1px;
  background: var(--ro-accent);
  margin: 0 0 1.2rem;
}

.ho-product__tagline {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  font-style: italic;
  color: var(--ro-accent);
  margin: 0 0 1.2rem;
}

.ho-product__body {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--ro-text-muted);
  line-height: 1.85;
  margin: 0 0 1.4rem;
}

.ho-product__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.ho-product__meta-item {
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
  color: var(--ro-text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.ho-product__meta-dash {
  color: var(--ro-accent-mid);
  flex-shrink: 0;
}

.ho-product__price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--ro-text);
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.ho-product__btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--ro-accent);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.ho-product__btn:hover {
  background: #8d6262;
}

.ho-product__photo-wrap {
  order: 2;
  display: flex;
  justify-content: center;
}

.ho-product__photo-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.ho-product__photo-frame::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--ro-accent-mid);
  z-index: 0;
  pointer-events: none;
}

.ho-product__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

/* --- CTA SÁV --- */
.ho-cta {
  background: var(--ro-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

.ho-cta__inner {
  max-width: var(--ro-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.ho-cta__text {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ro-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.ho-cta__btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--ro-white);
  color: var(--ro-white) !important;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.ho-cta__btn:hover {
  background: var(--ro-white);
  color: var(--ro-accent) !important;
}

/* ============================================================
   FŐOLDAL – RESZPONZÍV
   ============================================================ */

@media (max-width: 900px) {
  .ho-usp__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ho-usp__item:nth-child(1),
  .ho-usp__item:nth-child(4) {
    border-left: none;
  }

  .ho-usp__item:nth-child(2),
  .ho-usp__item:nth-child(3),
  .ho-usp__item:nth-child(5),
  .ho-usp__item:nth-child(6) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }

  .ho-services__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .ho-about__inner,
  .ho-product__inner {
    grid-template-columns: 1fr;
  }

  .ho-about__photo-wrap {
    order: 1;
  }

  .ho-about__text {
    order: 2;
  }

  .ho-about__photo-frame {
    max-width: 340px;
  }

  .ho-about__photo-frame::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
  }

  .ho-product__text {
    order: 2;
  }

  .ho-product__photo-wrap {
    order: 1;
  }

  .ho-product__photo-frame {
    max-width: 280px;
  }

  .ho-product__photo-frame::before {
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
  }

  .ho-numbers__divider {
    display: none;
  }

  .ho-numbers__inner {
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .ho-usp__inner {
    grid-template-columns: 1fr;
  }

  .ho-usp__item {
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 0;
  }

  .ho-usp__item:first-child {
    border-top: none;
  }

  .ho-numbers__item {
    min-width: 120px;
  }
}
