:root {
  /* This is ME! színpaletta */
	  --magenta: #DB1698;
	  --magenta-dark: #C51488;
	  --magenta-soft: #F7D7EC;

	  --green: #31826D;
	  --green-dark: #2B7260;
	  --green-soft: #D8EEE9;

	  --blue: #4374A1;
	  --blue-dark: #37648C;
	  --blue-soft: #DCEAF5;

	  --light-blue: #BCEBEB;
	  --light-blue-soft: #EEFAFA;
	  --light-blue-deep: #D9F2F2;

		/* 20% opacity változatok */
		--magenta-20: #DB169833;
		--magenta-dark-20: #C5148833;
		--magenta-soft-20: #F7D7EC33;

		--green-20: #31826D33;
		--green-dark-20: #2B726033;
		--green-soft-20: #D8EEE933;

		--blue-20: #4374A133;
		--blue-dark-20: #37648C33;
		--blue-soft-20: #DCEAF533;

		--light-blue-20: #BCEBEB33;
		--light-blue-soft-20: #EEFAFA33;
		--light-blue-deep-20: #D9F2F233;


  /* Régi változónevek megtartva, hogy ne kelljen a teljes HTML/CSS-t átírni */
  --cream: var(--light-blue-soft);
  --sand: var(--light-blue-deep);
  --ink: var(--green);
  --soft-ink: var(--blue);
  --muted: #6D8CA8;

  --teal: var(--magenta);
  --deep-teal: var(--green-dark);
  --mint: var(--light-blue);

  --white: #ffffff;
  --line: rgba(49, 130, 109, 0.16);

  --container: 1180px;
  --radius: 30px;
}

@font-face {
    font-family: "Barmeno";
    src: url("../fonts/Barmeno-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Hong Kong Script Brush";
    src: url("../fonts/HongKongScriptBrush.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--soft-ink);
  background: var(--cream);
  overflow-x: hidden;
}

.barmeno {
    font-family: "Barmeno", sans-serif;
}

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

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

/* FEJLÉC */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  gap: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.68;
  transition: 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--teal);
}

.header-link {
  position: relative;
  display: inline-block;
  color: var(--magenta-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  padding-bottom: 12px;
}

.header-link::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 0;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 26' preserveAspectRatio='none'%3E%3Cpath fill='%23DB1698' d='M2 14 C16 8,31 11,45 9 C62 7,75 12,91 10 C108 8,124 7,140 10 C157 13,174 9,191 8 C203 7,213 9,218 11 L218 17 C205 16,195 20,181 18 C164 16,149 20,132 18 C113 16,96 20,78 18 C61 16,45 20,28 18 C15 17,7 20,2 18 Z'/%3E%3Cpath fill='%23DB1698' opacity='.75' d='M8 18 C26 16,39 21,58 18 C78 15,92 19,111 17 C130 15,145 19,164 17 C183 15,199 18,216 16 L216 20 C197 19,184 22,165 20 C146 18,130 22,111 20 C92 18,77 22,58 20 C39 18,24 22,8 20 Z'/%3E%3C/svg%3E");
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  /*font-family: "Italiana", serif;*/
  font-size: clamp(82px, 13vw, 180px);
  line-height: 0.76;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-thisis {
    display: inline-block;
    font-family: "Barmeno", sans-serif;
    font-size: clamp(82px, 10vw, 150px);
    letter-spacing: -0.04em;
	font-weight: 100;
}

.hero-me {
    display: inline-block;
    margin-top: -10px;
	font-style: italic;
    font-family: "Hong Kong Script Brush", cursive;
    font-size: clamp(110px, 15vw, 130px);
    line-height: .9;

    color: var(--teal);

    transform: rotate(-3deg);
}

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

.hero-lead {
  max-width: 520px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.85;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: 0.22s ease;
}

.btn-dark {
  color: var(--cream);
  background: var(--deep-teal);
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: var(--deep-teal);
}

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

.btn-outline:hover {
  transform: translateY(-3px);
  color: var(--cream);
  background: var(--deep-teal);
}

/* HERO LOOK */

.hero-look {
  position: relative;
  min-height: 620px;
}

.hero-look::before {
  display: none;
  content: "";
  position: absolute;
  inset: 70px 10px 0 70px;
  border-radius: 42px 42px 0 0;
  background:
    linear-gradient(180deg, rgba(6, 63, 61, 0.2), rgba(6, 63, 61, 0)),
    var(--deep-teal);
}

.look-card {
  position: absolute;
  right: 70px;
  top: 0;
  width: min(430px, 86%);
  padding: 28px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(21, 21, 21, 0.16);
  transform: rotate(-3deg);
}

.look-top,
.look-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.look-top span,
.look-bottom span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.look-top strong {
  color: var(--ink);
  font-size: 34px;
}

.color-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 360px;
  margin: 28px 0;
  border-radius: 26px;
  overflow: hidden;
}

.look-image {
    overflow: hidden;
    border-radius: 32px;
}

.look-image img {
    width: 100%;
    display: block;
	max-height: 450px;
    object-fit: cover;
}

.tone-1 {
  background: var(--light-blue);
}

.tone-2 {
  background: var(--green);
}

.tone-3 {
  background: var(--blue);
}

.tone-4 {
  background: var(--light-blue);
}

.look-bottom {
  align-items: flex-end;
}

.look-bottom strong {
  color: var(--ink);
  font-size: 18px;
}

.hero-marquee {
  display: flex;
  gap: 0;
  width: 100%;
  margin-top: 40px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--deep-teal), var(--teal));
  overflow: hidden;
}

.hero-marquee span {
  flex: 1;
  min-width: 240px;
  padding: 18px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.22);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* INTRO */

.intro {
  padding: 95px 0;
  background: var(--ink);
  color: var(--cream);
}

.intro p {
  max-width: 980px;
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(40px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* SZEKCIÓK */

.services,
.process,
.journal,
.contact {
  padding: 115px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-title span,
.contact-copy > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barmeno", serif;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.055em;
}

/* SZOLGÁLTATÁSOK */

.services-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.service-big {
  min-height: 520px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(6, 63, 61, 0), rgba(6, 63, 61, 0.9)),
    linear-gradient(135deg, var(--deep-teal), var(--teal));
}

.service-big > span {
  margin-bottom: auto;
  width: max-content;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--deep-teal);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-big h3 {
  margin: 0 0 18px;
  font-family: "Italiana", serif;
  font-size: 62px;
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-big p {
  margin: 0 0 28px;
  max-width: 520px;
  color: rgba(255,255,255,.84);
  line-height: 1.8;
}

.service-big a {
  width: max-content;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  transition: 0.22s ease;
}

.service-list article:hover {
  transform: translateX(8px);
  background: var(--white);
}

.service-list span,
.process-grid span,
.journal-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list h3,
.process-grid h3,
.journal-grid h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-list p,
.process-grid p,
.journal-grid p {
  margin: 0;
  line-height: 1.75;
}

/* STATEMENT */

.statement {
  padding: 125px 0;
  color: var(--cream);
  background: var(--deep-teal);
}

.statement span {
  display: block;
  margin-bottom: 28px;
  color: var(--mint);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.statement h2 {
  max-width: 1040px;
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.93;
  font-weight: 400;
  letter-spacing: -0.06em;
}

/* FOLYAMAT */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid div {
  padding: 34px;
  border-right: 1px solid var(--line);
}

.process-grid div:last-child {
  border-right: 0;
}

/* BLOG */

.journal {
  background: var(--light-blue-deep);
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
}

.journal-grid article {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(21, 21, 21, 0.1);
}

.journal-featured {
	position: relative;
  color: var(--cream);
  background:
    repeating-linear-gradient(
      90deg,
      var(--magenta-dark) 0 80px,
      var(--green) 80px 160px,
      var(--blue) 160px 240px,
      var(--light-blue) 240px 320px
    ) !important;
}



.journal-grid h3 {
  font-size: 30px;
}

.journal-featured h3 {
  max-width: 620px;
  font-family: "Italiana", serif;
  font-size: 58px;
  line-height: 0.96;
  font-weight: 400;
  display: inline-block;
  margin: 10px 0 14px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.journal-grid article {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid rgba(21, 21, 21, 0.1);
}

.journal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 22px;
}

.journal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journal-featured .journal-content {
    margin: -18px 0px 28px;
    padding: 22px;

    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.55);
}

.journal-content h3 {
  margin: 12px 0 14px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.05;
}

.journal-content h3 a {
  color: inherit;
  text-decoration: none;
}

.journal-content p {
  color: var(--blue-dark);
  line-height: 1.6;
}

.journal-content > a {
  margin-top: 18px;
  color: var(--magenta);
  font-weight: 900;
}

.journal-grid a {
  margin-top: 22px;
  color: var(--teal);
  font-weight: 700;
}

/* KAPCSOLAT */

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.8;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-info a {
  width: max-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: 30px;
  background: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  outline: none;
  color: var(--cream);
  background: rgba(255,255,255,.08);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.58);
}

.contact-form select {
  color: rgba(255,255,255,.76);
}

.contact-form button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  color: var(--deep-teal);
  background: var(--mint);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: var(--cream);
}

/* BEMUTATKOZÁS */

.about-me {
  padding: 105px 0;
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-me-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.about-me-label {
  position: sticky;
  top: 105px;
  align-self: start;
}

.about-me-photo {
  width: 100%;
  max-width: 470px;
  margin-top: 8px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(49, 130, 109, 0.18);
  box-shadow: 0 24px 60px rgba(43, 114, 96, 0.14);
  background: rgba(255, 255, 255, 0.4);
}

.about-me-photo img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 42%;
}

.about-name {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-me-content {
  padding: 42px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
}

.about-me-content p {
  margin: 0 0 22px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.9;
}

.about-me-content p:last-child {
  margin-bottom: 0;
}

.about-me-content strong {
  color: var(--deep-teal);
}

/* LÁBLÉC */

.footer {
  padding: 100px 0 38px;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 251, 244, 0.18), transparent 34%),
    linear-gradient(135deg, var(--green-dark) 0%, var(--blue) 100%);
}

.footer strong {
  display: block;
  font-family: "Italiana", serif;
  font-size: clamp(58px, 12vw, 160px);
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.footer p {
  margin: 30px auto 36px;
  max-width: 620px;
  color: rgba(255,255,255,.76);
  font-size: 22px;
}

.footer div div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}


.footer small {
  color: rgba(255,255,255,.48);
}

/* MOBIL */

@media (max-width: 980px) {
  .main-nav,
  .header-link {
    display: none;
  }

  .hero-inner,
  .services-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-look {
    min-height: 540px;
  }

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

  .process-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid div:last-child {
    border-bottom: 0;
  }
  
  .about-me-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-me-label {
        position: static;
        top: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-look {
    min-height: 440px;
  }

  .hero-look::before {
    inset: 70px 0 0 30px;
  }

  .look-card {
    right: 12px;
    width: 90%;
    padding: 22px;
  }

  .color-stack {
    height: 260px;
  }

  .hero-marquee {
    margin-top: 20px;
  }

  .intro,
  .services,
  .statement,
  .process,
  .journal,
  .contact {
    padding: 78px 0;
  }

  .intro p,
  .section-title h2,
  .contact-copy h2,
  .statement h2 {
    font-size: 48px;
  }

  .service-big {
    min-height: 420px;
    padding: 8px;
  }

  .service-big h3 {
    font-size: 32px;
  }

  .journal-featured h3 {
    font-size: 44px;
  }
  
  .about-me {
    padding: 78px 0;
  }

  .about-me-content {
    padding: 26px;
    border-radius: 24px;
  }


  .contact-form {
    padding: 24px;
  }
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 979px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand span {
    font-size: 12px;
    line-height: 1.2;
    max-width: 190px;
    white-space: normal;
  }

  .header-link {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 18px;
    margin-left: auto;
    cursor: pointer;
    z-index: 30;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 60px rgba(0,0,0,.14);
    z-index: 25;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .main-nav a:hover {
    background: rgba(0,0,0,.06);
  }

  .hero {
    padding-top: 110px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 42px;
    text-align: center;
  }

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

  .hero-thisis {
    font-size: clamp(64px, 19vw, 92px);
  }

  .hero-me {
    font-size: clamp(82px, 24vw, 118px);
    margin-top: -4px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-look {
    width: 100%;
  }

  .look-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .hero-marquee {
    margin-top: 44px;
    overflow: hidden;
    font-size: 28px;
    gap: 24px;
  }

  .about-me-inner,
  .services-layout,
  .contact-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-me-label,
  .about-me-content,
  .contact-copy,
  .contact-form {
    width: 100%;
  }

  .about-me {
    padding: 70px 0;
  }


  .about-me-content p {
    font-size: 16px;
    line-height: 1.75;
  }

  .intro-inner p {
    font-size: clamp(30px, 10vw, 48px);
    line-height: 1.05;
  }

  .service-list,
  .process-grid,
  .journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-big,
  .service-list article,
  .process-grid div,
  .journal-grid article,
  .contact-form {
    border-radius: 26px;
  }

  .statement {
    text-align: center;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    font-size: 16px;
  }

  .footer-inner {
    text-align: center;
    gap: 18px;
  }

  .footer-inner div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.journal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 20px;
}

.journal-more {
  margin-top: 34px;
  text-align: center;
}

.journal-more a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.blog-article-hero {
  padding: 150px 0 60px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 210, 70, .22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(40, 190, 150, .18), transparent 34%),
    var(--light-blue-soft);
}

.blog-article-head {
  max-width: 900px;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.blog-article-head h1 {
  margin: 18px 0;
  font-family: "Italiana", serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.04em;
}

.blog-article-head p {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
}

.blog-article-head small {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.blog-cover-section {
  padding: 0 0 50px;
  background: var(--light-blue-soft);
}

.blog-cover-section {
    padding: 0 0 50px;
    background: var(--light-blue-soft);
}

.blog-cover-wrapper {
  background: #fff;
  border-radius: 42px;
  padding: 20px;
  box-shadow: 0 28px 80px rgba(0,0,0,.10);
  text-align: center;
}

.blog-cover {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 24px;
}

.blog-article-body {
  padding: 70px 0 110px;
  background: #fff;
}

.blog-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.1;
  color: var(--ink);
}

@media (max-width: 879px) {
  .blog-article-hero {
    padding: 120px 0 44px;
  }

  .blog-article-head h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .blog-article-head p {
    font-size: 18px;
  }

  .blog-cover {
    max-height: 360px;
  }

  .blog-cover-wrapper {
    padding: 12px;
    border-radius: 28px;
  }

  .blog-content {
    font-size: 17px;
    line-height: 1.2;
  }
}

.blog-list-hero {
  padding: 150px 0 70px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 210, 70, .22), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(40, 190, 150, .18), transparent 34%),
    var(--light-blue-soft);
}

.blog-list-head {
  max-width: 900px;
  text-align: center;
}

.blog-list-head h1 {
  margin: 18px 0;
  font-family: "Italiana", serif;
  font-size: clamp(52px, 8vw, 98px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.04em;
}

.blog-list-head p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted);
}

.blog-list-section {
  padding: 70px 0 110px;
  background: #fff;
}

.blog-search {
  display: flex;
  gap: 12px;
  margin-bottom: 42px;
  padding: 14px;
  background: var(--light-blue-soft);
  border-radius: 999px;
}

.blog-search input {
  flex: 1;
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 16px;
}

.blog-search button,
.blog-search a {
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.blog-search a {
  background: transparent;
  color: var(--ink);
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--light-blue-soft);
  border-radius: 34px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0,0,0,.10);
}

.blog-card-img {
  display: block;
  background: #fff;
}

.blog-card-img img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-card-content {
  padding: 28px;
}

.blog-card-content span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blog-card-content h2 {
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.05;
}

.blog-card-content h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-content p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 46px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--light-blue-soft);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.pagination a.active {
  background: var(--ink);
  color: #fff;
}

.blog-empty {
  padding: 60px 24px;
  text-align: center;
  background: var(--light-blue-soft);
  border-radius: 34px;
}

.blog-empty h2 {
  margin: 0 0 10px;
  font-size: 38px;
}

@media (max-width: 979px) {
  .blog-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 979px) {
  .blog-list-hero {
    padding: 120px 0 46px;
  }

  .blog-list-head h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .blog-list-head p {
    font-size: 18px;
  }

  .blog-search {
    flex-direction: column;
    border-radius: 28px;
  }

  .blog-search button,
  .blog-search a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-img img {
    height: 220px;
  }
}

.contact-form select {
  color: rgba(255,255,255,.78);
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-form select option {
  background: #ffffff;
  color: #173d39;
}

.form-message{
    margin-bottom:20px;
    padding:18px 22px;
    border-radius:20px;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:12px;
    line-height:1.5;
}

.form-message.success{
    background:var(--green-soft);
    color:var(--green-dark);
    border:1px solid #9BD8C7;
}

.form-message.error{
    background:#FDECF6;
    color:#A81372;
    border:1px solid #EAA7D5;
}

.form-message i{
    font-size:22px;
}

.contact-result {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.contact-result i {
  font-size: 46px;
  margin-bottom: 12px;
}

.contact-result h3 {
  margin: 0 0 10px;
  color: var(--light-blue);
  font-size: 28px;
}

.contact-result p {
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.contact-result a {
  margin-top: 18px;
  display: inline-block;
  background: var(--light-blue);
  color: var(--green);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.contact-result.success i {
  color: var(--light-blue);
}

.contact-result.error i {
  color: #F7B7DF;
}

.journal-card {
    transition: .25s;
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.article-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



.blog-content p,
.article-content p,
.cikk-tartalom p {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 1.2;
}

/* THIS IS ME! - új színpaletta finomhangolás */
.site-header.is-scrolled {
  background: rgba(238, 250, 250, 0.88);
}

.main-nav a:hover,
.section-title span,
.contact-copy > span,
.about-me-label span,
.kicker,
.journal-grid a,
.service-list span,
.process-grid span,
.journal-grid span {
  color: var(--magenta);
}

.hero-me,
.hero h1 span {
  color: var(--magenta);
}

.btn-dark,
.journal-more a,
.blog-search button,
.pagination a.active,
.contact-form button {
  background: var(--magenta);
  color: #ffffff;
}

.btn-dark:hover,
.journal-more a:hover,
.blog-search button:hover,
.contact-form button:hover {
  background: var(--magenta-dark);
}

.btn-outline {
  color: var(--green);
  border-color: var(--green);
}

.btn-outline:hover {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.hero-look::before,
.statement,
.contact-form,
.mobile-menu-btn {
  background: var(--green-dark);
}

.hero-marquee,
.footer {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.service-big {
  background:
    linear-gradient(180deg, rgba(49, 130, 109, 0), rgba(43, 114, 96, 0.92)),
    linear-gradient(135deg, var(--green), var(--blue));
}

.service-big > span {
  color: var(--green-dark);
  background: var(--light-blue);
}

.service-list article,
.about-me-content {
  background: rgba(255,255,255,.62);
}

.service-list article:hover {
  background: #ffffff;
  border-color: rgba(219, 22, 152, .22);
}



.tone-1 { background: var(--magenta-dark); }
.tone-2 { background: var(--green); }
.tone-3 { background: var(--blue); }
.tone-4 { background: var(--light-blue); }

.blog-article-hero,
.blog-list-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(219, 22, 152, .14), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(67, 116, 161, .16), transparent 34%),
    var(--light-blue-soft);
}

.blog-card,
.blog-search,
.blog-empty,
.pagination a {
  background: var(--light-blue-soft);
}

.blog-search a,
.blog-read-more,
.blog-card-content h2 a,
.blog-back,
.contact-info a {
  color: var(--green);
}

.blog-search a:hover,
.blog-read-more:hover,
.blog-back:hover,
.contact-info a:hover {
  color: var(--magenta);
}

.contact-form select option {
  background: #ffffff;
  color: var(--green-dark);
}

.contact-result a {
  background: var(--magenta);
  color: #ffffff;
}

.contact-result a:hover {
  background: var(--magenta-dark);
}

.form-message.success {
  background: var(--green-soft);
  color: var(--green-dark);
  border-color: rgba(49, 130, 109, .22);
}

.form-message.error {
  background: var(--magenta-soft);
  color: #9E0F6E;
  border-color: rgba(219, 22, 152, .22);
}



.about-label-title {
  display: block;
  margin-bottom: 16px;
  color: var(--magenta) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-name {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  column-gap: 0;

  margin: 0;
  color: var(--green);
  font-family: "Barmeno", sans-serif;
  font-size: clamp(48px, 7vw, 72px) !important;
  line-height: .78;
  font-weight: 400;
  letter-spacing: 0.14em;
  /*letter-spacing: -0.08em;*/
}

.about-name span {
  display: block;
  margin: 0;
  color: var(--green) !important;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.about-name-kiss {
  grid-column: 1;
  grid-row: 1;
}

.about-name-maros {
  grid-column: 2;
  grid-row: 1;
}

.about-name-eszter {
  grid-column: 2;
  grid-row: 2;
  margin-left: 9px !important;
}

.about-name {
    position: relative;
}

/*.about-name::before {
    content: "";
    position: absolute;

    left: 4.75ch; 
    top: -0.18em;

    width: 1.40ch;
    height: 2.02em;

    border: 2px solid rgba(196, 20, 134, 0.22);
    border-radius: 22px;

    pointer-events: none;
}*/



/* SZOLGÁLTATÁSOK ÉS ÁRAK OLDAL */

.prices-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(219, 22, 152, .16), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(67, 116, 161, .18), transparent 34%),
    var(--cream);
}

.prices-hero-inner {
  max-width: 980px;
  text-align: center;
}

.prices-hero h1 {
  margin: 18px 0 24px;
  color: var(--ink);
  font-family: "Barmeno", serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.055em;
}

.prices-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--soft-ink);
  font-size: 20px;
  line-height: 1.7;
}

.prices-section {
  padding: 80px 0 110px;
  background: var(--sand);
}

.prices-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.price-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(49, 130, 109, .08);
}

.price-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(188, 235, 235, .24), transparent 34%),
    linear-gradient(135deg, var(--deep-teal), var(--blue));
}

.price-card-head span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(219, 22, 152, .12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card-featured .price-card-head span {
  background: #fff;
  color: var(--teal);
}

.price-card h2 {
  margin: 0 0 22px;
  color: var(--deep-teal);
  font-family: "Barmeno", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
}

.price-card-featured h2 {
  color: #fff;
}

.price-card p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.85;
}

.price-card-featured p {
  color: rgba(255,255,255,.82);
}

.price-details {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.price-details > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
}

.price-details i {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    color: #DB1698;
    background: rgba(255,255,255,.88);
}

.price-details strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-details span {
    display: block;
    color: rgba(255,255,255,.82);
    line-height: 1.5;
}

.price-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 34px;
}

.price-bottom.simple {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price-bottom small {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card-featured .price-bottom small {
  color: #fff;
}

.price-bottom strong {
  display: block;
  color: var(--teal);
  font-size: 34px;
  line-height: 1;
}

.price-card-featured .price-bottom strong {
  color: #fff;
  font-size: 46px;
}

.price-bottom em {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 15px;
}

.price-card-featured .price-bottom em {
  color: #ffd7f0;
}

.price-link,
.voucher-card a {
  color: var(--teal);
  font-weight: 900;
}

.voucher-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.58)),
    var(--mint);
}

.prices-cta {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(219, 22, 152, .26), transparent 35%),
    linear-gradient(135deg, var(--deep-teal), var(--blue));
}

.prices-cta-inner {
  max-width: 920px;
  text-align: center;
}

.prices-cta span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint);
  font-weight: 900;
  letter-spacing: .12em;
}

.prices-cta h2 {
  margin: 0 auto 34px;
  font-family: "Barmeno", serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.05em;
}

@media (max-width: 979px) {
  .prices-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    grid-row: auto;
    min-height: auto;
  }

  .price-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 979px) {
  .prices-hero {
    padding: 125px 0 58px;
  }

  .prices-section {
    padding: 58px 0 78px;
  }

  .price-card {
    padding: 26px;
    border-radius: 26px;
  }

  .price-bottom strong,
  .price-card-featured .price-bottom strong {
    font-size: 34px;
  }

  .prices-cta {
    padding: 78px 0;
  }
}

.footer-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 14px;
  font-weight: 900;
}

.footer-credit {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 15px;
    line-height: 1;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer-credit span{
    display:block;
    font-size:12px;
    opacity:.65;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.footer-credit a:hover{
    color: var(--green-soft);
}


@media (max-width: 979px) {
    .footer-credit {
        flex-direction: column;
        gap: 6px;
    }
}

.legal-page {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.55), transparent 34%),
    linear-gradient(180deg, #f8efe9 0%, #fff 100%);
}

.legal-inner {
  max-width: 980px;
}

.legal-hero {
  text-align: center;
  margin-bottom: 42px;
}

.legal-hero span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 400;
  color: var(--ink);
  line-height: .9;
}

.legal-hero p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(70, 130, 140, .16);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 70px rgba(30, 55, 60, .10);
}

.legal-card h2 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 30px 0 12px;
  color: var(--teal);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card ul {
  margin: 16px 0 26px;
  padding: 0;
  list-style: none;
}

.legal-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.legal-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.legal-card strong {
  color: var(--ink);
}

@media (max-width: 979px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-card {
    border-radius: 24px;
  }
  
/*.about-name::before {
    content: "";
    position: absolute;

    left: 4.60ch; 
    top: -0.28em;

    width: 1.70ch;
    height: 2.22em;

    border: 2px solid rgba(196, 20, 134, 0.22);
    border-radius: 15px;

    pointer-events: none;
}*/
  
}

@media screen and (max-width: 980px) {
  .about-me .about-me-label {
    position: static !important;
    top: auto !important;
  }
}



/*@media (max-width: 980px) {

  .about-me-inner {
    display: block;
  }

  .about-me-label {
    position: sticky !important;
    top: 85px !important;
    z-index: 1;

    opacity: .22;
    pointer-events: none;
    user-select: none;

    transform: scale(.95);
    transform-origin: left top;

    margin-bottom: -85px;
  }

  .about-me-content {
    position: relative;
    z-index: 2;
  }

}*/