:root {
  --paper: #f7f5f0;
  --paper2: #eeeae2;
  --ink: #1e2b2d;
  --muted: #7e8582;
  --line: #ddd8ce;
  --accent: #c6a78a;
  --white: #fff;
  --max: 1440px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased
}

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

p {
  font-weight: 300;
}


.shell {
  max-width: var(--max);
  margin: auto;
  padding-left: max(6vw, 32px);
  padding-right: max(6vw, 32px)
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
  transform: translateY(-150%)
}

.skip-link:focus {
  transform: none
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 216, 206, .7)
}

.nav-shell {
  max-width: var(--max);
  min-height: 88px;
  margin: auto;
  padding: 0 max(6vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 15px;
  letter-spacing: .2em;
  font-weight: 800
}

.brand-sub {
  font-size: 9px;
  letter-spacing: .25em;
  color: #8b8d87
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.main-nav a {
  transition: opacity .2s
}

.main-nav a:hover {
  opacity: .55
}

.nav-cta {
  padding: 14px 21px;
  border-radius: 999px;
  background: #e9e3d9
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid #c8c3b9;
  background: transparent;
  border-radius: 50%
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--ink);
  margin: 5px auto
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #5f5e56;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: #bcb7ad
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  padding-top: 65px;
  padding-bottom: 70px
}

.hero h1,
.about h2,
.section-head h2,
.experience h2,
.philosophy blockquote,
.booking h2,
.page-hero h1,
.pricing h2,
.info-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98
}

.hero h1 {
  font-size: 5rem;

}

.hero h1 em,
.about h2 em,
.section-head h2 em,
.experience h2 em,
.philosophy em,
.booking h2 em,
.page-hero h1 em,
.pricing h2 em,
.info-card h2 em {
  color: var(--accent);
  font-style: italic;
}

.lead {
  max-width: 570px;
  color: #767d79;
  font-size: 17px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 36px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 25px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s
}

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

.button.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(30, 43, 45, .12)
}

.button span,
.text-link span {
  margin-left: 12px
}

.text-link {
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #bdb7ad;
  padding-bottom: 6px
}

.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 55px;
  color: #747a77
}

.availability small {
  display: block;
  color: #9a9c97;
  font-size: 10px
}

.dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9b8971
}

.hero-visual {
  position: relative;
  min-height: 620px;
  max-width: 400px;
  display: grid;
  place-items: center
}

.hero-visual img {
  position: relative;
  top: 80px;
  right: 0;
  width: 100%;
}


.hero-note {
  position: absolute;
  right: -130px;
  bottom: 150px;
  font-size: 10px;
  letter-spacing: .18em;
  color: #898b86;
  writing-mode: vertical-rl
}

.hero-note span {
  font-size: 16px;
  margin-bottom: 12px
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 27px;
  padding-bottom: 27px
}

.trust div {
  padding: 0 25px;
  border-left: 1px solid var(--line)
}

.trust div:first-child {
  border-left: 0
}

.trust b {
  display: block;
  font: 400 25px Georgia, serif
}

.trust span {
  display: block;
  color: #8b8f8b;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14vw;
  padding-top: 145px;
  padding-bottom: 145px
}

.about h2 {
  font-size: clamp(46px, 5vw, 76px);
  margin: 30px 0
}

.about-copy {
  align-self: end;
  color: #757c78
}

.about-copy p {
  max-width: 610px
}

.about-copy p:first-child {
  font: 400 25px/1.3 Georgia, serif;
  color: #303a3c
}

.services {
  background: var(--paper2);
  padding-top: 110px;
  padding-bottom: 115px
}

.section-head {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 10vw;
  align-items: end
}

.section-head h2 {
  font-size: clamp(46px, 5vw, 72px);
  margin: 30px 0
}

.section-head>p {
  color: #777d79;
  max-width: 480px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 65px
}

.service-card {
  background: var(--paper);
  padding: 22px 22px 30px;
  position: relative
}

.service-number {
  font-size: 9px;
  letter-spacing: .18em;
  color: #9b9a93
}

.service-image {
  height: 280px;
  width: 280px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  padding: 22px 0;
  color: #fff;
  font: italic 30px Georgia, serif;
  position: relative;
  overflow: hidden;
}

.service-image img {
  object-fit: contain;
}

.service-image:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  right: -80px;
  top: -80px
}

.service-card h3 {
  font: 400 26px Georgia, serif;
  margin: 0 0 12px
}

.service-card p {
  color: #7b817e;
  font-size: 15px;
  min-height: 88px
}

.service-card .text-link {
  display: inline-block
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 140px
}

.experience-image {
  height: 560px;
  background: linear-gradient(145deg, #c8b9a6, #e7e0d5);
  display: grid;
  place-items: center;
  overflow: hidden
}

.abstract-face {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 45px;
  background-image: url("117335166_2567447486901396_2419609428737647851_n.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.abstract-face span {
  font: italic 46px/.9 Georgia, serif;
  color: rgba(255, 255, 255, .8)
}

.experience h2 {
  font-size: clamp(46px, 5vw, 72px);
  margin: 30px 0
}

.experience-copy p {
  color: #777d79;
  max-width: 550px
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.philosophy {
  background: var(--ink);
  color: #f7f5f0;
  padding-top: 110px;
  padding-bottom: 120px
}

.philosophy blockquote {
  font-size: clamp(43px, 6vw, 88px);
  max-width: 1100px;
  margin: 35px 0
}

.philosophy p {
  color: #aeb3af;
  max-width: 650px
}

/* =========================
   GALÉRIA – RESZPONZÍV, AZONOS MÉRET
   ========================= */




.booking {
  background: var(--paper2);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 10vw;
  padding-top: 110px;
  padding-bottom: 110px
}

.booking h2 {
  font-size: clamp(45px, 5vw, 70px);
  margin: 30px 0
}

.booking-copy p {
  color: #777d79;
  max-width: 540px
}

.booking-card {
  align-self: end;
  border-top: 1px solid var(--ink);
  padding-top: 10px
}

.booking-card small {
  display: block;
  font-size: 8px;
  letter-spacing: .2em;
  color: #8b8c86;
  margin-top: 22px
}

.booking-card a {
  display: block;
  font: 400 25px Georgia, serif;
  margin-top: 7px
}

.booking.compact {
  grid-template-columns: 1fr 1fr;
  align-items: end
}

.page-hero {
  padding-top: 115px;
  padding-bottom: 100px
}

.page-hero h1 {
  font-size: clamp(60px, 7vw, 100px);
  max-width: 900px;
  margin: 35px 0 25px
}

.page-hero p {
  max-width: 620px;
  color: #777d79;
  font-size: 17px
}

.pricing {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 10vw;
  padding-bottom: 120px
}

.price-list {
  border-top: 1px solid var(--ink)
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center
}

.price-row strong {
  font: 400 19px Georgia, serif
}

.price-row small {
  display: block;
  color: #92958f;
  font-size: 12px;
  margin-top: 3px
}

.price-row b {
  font: 600 17px Georgia, serif;
  white-space: nowrap
}

.price-aside {
  align-self: start;
  background: var(--paper2);
  padding: 35px
}

.price-aside h2 {
  font-size: 50px;
  margin: 25px 0
}

.price-aside p {
  color: #777d79
}

.price-aside .button {
  margin-top: 20px
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 12vw;
  padding-bottom: 130px
}

.contact-main {
  border-top: 1px solid var(--ink)
}

.contact-line {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--line)
}

.contact-line small {
  display: block;
  font-size: 8px;
  letter-spacing: .2em;
  color: #8d8f89
}

.contact-line strong {
  display: block;
  font: 400 27px Georgia, serif;
  margin-top: 7px
}

.info-card {
  background: var(--paper2);
  padding: 38px
}

.info-card h2 {
  font-size: 55px;
  margin: 28px 0
}

.info-card p {
  color: #777d79
}

.status {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px
}

.status small {
  display: block;
  color: #92958f;
  margin-top: 5px
}

.legal {
  max-width: 1000px;
  padding-bottom: 130px
}

.legal h2 {
  font: 400 42px Georgia, serif
}

.legal h3 {
  font: 400 25px Georgia, serif;
  margin-top: 50px
}

.legal p {
  color: #707773
}

.legal-note {
  margin-top: 50px;
  padding: 22px;
  background: var(--paper2);
  font-size: 13px
}

.site-footer {
  max-width: var(--max);
  margin: auto;
  padding: 55px max(6vw, 32px) 25px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px
}

.site-footer p {
  color: #818680;
  font-size: 13px;
  max-width: 400px
}

.back-top {
  width: 44px;
  height: 44px;
  border: 1px solid #c8c3b9;
  border-radius: 50%;
  display: grid;
  place-items: center
}

.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #969891;
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 20px
}

@media(max-width:900px) {
  .main-nav {
    gap: 15px
  }

  .hero {
    grid-template-columns: 1fr
  }

  .hero-visual {
    min-height: 520px
  }

  .portrait-card {
    height: 520px
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px
  }

  .trust div:nth-child(3) {
    border-left: 0
  }

  .about,
  .experience,
  .contact-layout,
  .pricing,
  .booking {
    grid-template-columns: 1fr;
    gap: 55px
  }

  .service-grid {
    grid-template-columns: 1fr 1fr
  }

  .section-head {
    grid-template-columns: 1fr
  }


  .hero-visual img {
    width: 250px;
    top: 70px;
    left: 0;
  }
}

@media(max-width:720px) {
  .nav-shell {
    min-height: 74px;
    padding: 0 22px
  }

  .brand-name {
    font-size: 14px
  }

  .brand-sub {
    font-size: 9px
  }

  .menu-toggle {
    display: block;
    z-index: 60
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    background: rgba(247, 245, 240);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 24px;
    transform: translateY(-130%);
    opacity: 0;
    transition: .28s;
    border-bottom: 1px solid var(--line)
  }

  .main-nav.open {
    transform: none;
    opacity: 1
  }

  .main-nav a {
    padding: 20px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line)
  }

  .main-nav .nav-cta {
    text-align: center;
    border: 0;
    margin-top: 12px
  }

  .hero {
    padding-top: 65px
  }

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

  .hero-visual {
    min-height: 430px
  }

  .portrait-card {
    height: 430px
  }

  .hero-note {
    display: none
  }

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

  .trust div {
    padding: 0 14px
  }

  .trust b {
    font-size: 18px
  }

  .about,
  .experience,
  .booking {
    padding-top: 85px;
    padding-bottom: 85px
  }

  .services {
    padding-top: 80px;
    padding-bottom: 85px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .service-image {
    height: 260px
  }

  .philosophy {
    padding-top: 80px;
    padding-bottom: 90px
  }




  .page-hero {
    padding-top: 75px;
    padding-bottom: 65px
  }

  .page-hero h1 {
    font-size: clamp(52px, 14vw, 78px)
  }

  .price-row {
    grid-template-columns: 1fr
  }

  .price-row b {
    font-size: 18px
  }

  .site-footer {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    grid-column: 1/-1;
    flex-direction: column;
    gap: 8px
  }

  .contact-line strong {
    font-size: 22px
  }
}

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

  .main-nav,
  .button {
    transition: none
  }
}



/* Flexbox galéria */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
  width: 85%;
  padding-bottom: 100px;
}

/* Egy kép */
.gallery-item {
  flex: 1;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Egér fölé húzva */
.gallery-item:hover img {
  transform: scale(1.10);
}

/* Tablet */
@media (max-width: 800px) {
  .gallery-item {
    flex: 1 1 calc(50% - 20px);
  }
  .gallery{
    width: 90%;
    flex-wrap: wrap;
  }
}

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

  .gallery {
    gap: 10px;
  }

  .gallery-item {
    flex: 1 1 100%;
  }

  .gallery-item img {
    height: 250px;
  }
}

#gallery_margin{
  margin-top: 90px;
}