/* ============================================================
   Planéta Centrum Kft. — Main Stylesheet
   Design inspired by baunfire.com
   ============================================================ */

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

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --black:      #0c0c0c;
  --off-white:  #f2f0eb;
  --warm-white: #faf8f4;
  --mid:        #1a1a1a;
  --dim:        rgba(12,12,12,0.45);
  --dim-w:      rgba(242,240,235,0.45);
  --accent:     #c8a96e;
  --radius:     8px;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── CURSOR ── */
.cur {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .12s;
}
#c1 {
  width: 7px; height: 7px;
  background: var(--off-white);
  border-radius: 50%;
  mix-blend-mode: difference;
}
#c2 {
  width: 42px; height: 42px;
  border: 1px solid rgba(242,240,235,.3);
  border-radius: 50%;
  transition: all .2s ease .05s;
}
.cur-expand #c2 {
  transform: translate(-50%,-50%) scale(2.4);
  border-color: rgba(242,240,235,.6);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s, background .4s;
}
nav.scrolled {
  padding: 18px 60px;
  background: rgba(12,12,12,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242,240,235,.06);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--off-white);
  text-transform: uppercase;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,240,235,.5);
  text-decoration: none;
  transition: color .25s;
  cursor: none;
}
.nav-link:hover, .nav-link.active { color: var(--off-white); }
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  border: 1px solid rgba(242,240,235,.3);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all .25s;
  cursor: none;
  margin-left: 12px;
}
.nav-cta:hover { background: var(--off-white); color: var(--black); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .22;
  transform: scale(1.04);
  transition: transform 10s ease;
  will-change: transform;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(12,12,12,.7) 100%),
    linear-gradient(to top, var(--black) 0%, rgba(12,12,12,.4) 60%, transparent 100%);
}
.hero-overline {
  position: absolute;
  top: 50%; left: 60px;
  transform: translateY(-50%);
}
.hero-ol-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(242,240,235,.25);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: up .8s .2s forwards;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(72px, 9.5vw, 148px);
  line-height: .92;
  letter-spacing: -.01em;
  margin-bottom: 44px;
  opacity: 0;
  animation: up .9s .35s forwards;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: up .8s .6s forwards;
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--dim-w);
  line-height: 1.75;
  max-width: 380px;
}
.hero-sub strong { color: var(--off-white); font-weight: 400; }
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white);
  border: 1px solid rgba(242,240,235,.25);
  padding: 16px 36px;
  border-radius: 100px;
  transition: all .3s;
  cursor: none;
}
.btn-hero:hover { background: var(--off-white); color: var(--black); border-color: var(--off-white); }
.btn-hero .arrow { transition: transform .3s; }
.btn-hero:hover .arrow { transform: translateX(5px); }
.hero-year {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(242,240,235,.25);
  text-transform: uppercase;
}
.hero-scroll-line {
  position: absolute;
  right: 60px; bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}
.scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(242,240,235,.4));
  animation: lineDown 2s infinite;
}
.scroll-label {
  font-size: 8px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(242,240,235,.3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── MARQUEE ── */
.marquee {
  padding: 18px 0;
  border-top: 1px solid rgba(242,240,235,.06);
  border-bottom: 1px solid rgba(242,240,235,.06);
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.m-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .15em;
  color: rgba(242,240,235,.25);
  padding: 0 48px;
}
.m-sep { color: var(--accent); opacity: .5; margin: 0 -24px; }

/* ── SECTION HELPERS ── */
.section-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.02em;
  line-height: .95;
}

/* ── WORK / SERVICE CARDS ── */
.work {
  background: var(--black);
  padding: 120px 60px;
}
.work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 72px;
}
.work-view-all {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242,240,235,.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,240,235,.2);
  padding-bottom: 4px;
  transition: all .25s;
  cursor: none;
  white-space: nowrap;
  align-self: flex-end;
}
.work-view-all:hover { color: var(--off-white); border-color: var(--off-white); }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.work-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: none;
  display: block;
  text-decoration: none;
  color: var(--off-white);
}
.work-card:nth-child(2) { margin-top: 80px; }
.work-card:nth-child(4) { margin-top: -80px; }
.work-card-img {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  filter: brightness(.65) saturate(.7);
  transition: all .65s ease;
  display: block;
}
.work-card:hover .work-card-img { filter: brightness(.8) saturate(.9); transform: scale(1.03); }
.work-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(12,12,12,.95) 0%, transparent 100%);
}
.work-card-num {
  font-size: 9px;
  letter-spacing: .45em;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.work-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.work-card-type {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dim-w);
}
.work-card-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 40px; height: 40px;
  border: 1px solid rgba(242,240,235,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .3s;
  opacity: 0;
  transform: translateY(6px);
}
.work-card:hover .work-card-arrow {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(242,240,235,.5);
}

/* ── SERVICES LIST ── */
.services {
  background: var(--warm-white);
  color: var(--black);
  padding: 120px 60px;
}
.services .section-eyebrow { color: rgba(12,12,12,.4); }
.services .section-title-serif { color: var(--black); }
.svc-list { border-top: 1px solid rgba(12,12,12,.1); margin-top: 56px; }
.svc-item {
  position: relative;
  border-bottom: 1px solid rgba(12,12,12,.1);
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
  cursor: none;
  overflow: hidden;
  transition: padding .35s;
}
.svc-item:hover { padding: 36px 0; }
.svc-item-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(12,12,12,.3);
}
.svc-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -.02em;
  line-height: 1;
  transition: transform .4s;
}
.svc-item:hover .svc-item-title { transform: translateX(8px); }
.svc-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
  max-width: 360px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s;
}
.svc-item:hover .svc-item-desc { opacity: 1; transform: translateY(0); }
.svc-item-img {
  position: absolute;
  right: 80px; top: 50%;
  transform: translateY(-50%) scale(.9);
  width: 200px; height: 140px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transition: all .4s ease;
  pointer-events: none;
}
.svc-item:hover .svc-item-img { opacity: 1; transform: translateY(-50%) scale(1); }
.svc-item-arrow {
  font-size: 18px;
  color: rgba(12,12,12,.3);
  transition: all .3s;
}
.svc-item:hover .svc-item-arrow { color: var(--black); transform: translateX(6px); }

/* ── ABOUT ── */
.about {
  background: var(--black);
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.7) saturate(.6);
  display: block;
  transition: filter .5s;
}
.about-img-wrap:hover img { filter: brightness(.85) saturate(.8); }
.about-img-caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--dim-w);
  font-weight: 500;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 36px;
  margin-top: 16px;
}
.about-title em { font-style: italic; color: var(--accent); }
.about-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--dim-w);
  line-height: 1.85;
  margin-bottom: 44px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(242,240,235,.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 44px;
}
.about-stat { background: rgba(242,240,235,.03); padding: 28px 24px; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.about-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim-w);
  margin-top: 6px;
}
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,240,235,.25);
  padding-bottom: 4px;
  transition: all .25s;
  cursor: none;
}
.btn-text-link:hover { color: var(--accent); border-color: var(--accent); }
.btn-text-link .arrow { transition: transform .25s; }
.btn-text-link:hover .arrow { transform: translateX(5px); }

/* ── SAFETY ── */
.safety {
  background: var(--mid);
  padding: 120px 60px;
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(242,240,235,.05);
  margin-top: 72px;
  border-radius: 12px;
  overflow: hidden;
}
.safety-card {
  background: rgba(242,240,235,.02);
  padding: 44px 32px;
  transition: background .3s;
}
.safety-card:hover { background: rgba(242,240,235,.05); }
.safety-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(242,240,235,.07);
  line-height: 1;
  margin-bottom: 20px;
}
.safety-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--off-white);
}
.safety-card-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim-w);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact { background: var(--black); padding: 120px 60px; }
.contact-inner {
  border: 1px solid rgba(242,240,235,.08);
  border-radius: 16px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.02em;
  line-height: .92;
  margin-bottom: 44px;
}
.contact-title em { font-style: italic; color: var(--accent); }
.contact-info-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-info-val {
  font-size: 15px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-group { margin-bottom: 24px; }
.form-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(242,240,235,.3);
  display: block;
  margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242,240,235,.12);
  padding: 12px 0;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: rgba(200,169,110,.6); }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(242,240,235,.2); }
.form-select { color: rgba(242,240,235,.6); background: transparent; }
.form-select option { background: #1a1a1a; color: var(--off-white); }
.form-textarea { min-height: 100px; resize: none; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 28px 0;
}
.form-check input {
  accent-color: var(--accent);
  cursor: none;
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px; height: 14px;
}
.form-check label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,240,235,.4);
  line-height: 1.5;
}
.form-check a { color: var(--accent); text-decoration: none; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--off-white);
  padding: 18px 44px;
  border-radius: 100px;
  border: none;
  cursor: none;
  transition: all .3s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--accent); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(242,240,235,.06);
  padding: 72px 60px 44px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim-w);
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(242,240,235,.25);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,240,235,.45);
  text-decoration: none;
  transition: color .2s;
  cursor: none;
}
.footer-links a:hover { color: var(--off-white); }
.footer-email-row {
  display: flex;
  border-bottom: 1px solid rgba(242,240,235,.12);
  margin-top: 14px;
}
.footer-email-inp {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
}
.footer-email-inp::placeholder { color: rgba(242,240,235,.25); }
.footer-email-btn {
  background: transparent;
  border: none;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: none;
  transition: color .2s;
  padding: 0 4px;
}
.footer-email-btn:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(242,240,235,.05);
  padding-top: 28px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,240,235,.25);
}
.footer-bottom a { color: rgba(200,169,110,.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ── KEYFRAMES ── */
@keyframes up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
