
:root{
  --black:#050508;
  --ink:#0a0912;
  --navy:#111026;
  --navy-2:#17132d;
  --cream:#f8f5ef;
  --paper:#fbfaf7;
  --text:#f4f0fb;
  --muted:#8f879d;
  --soft:#d8d3e2;
  --gold:#d6bd86;
  --gold-light:#efe1b5;
  --line:rgba(214,189,134,.20);
  --light-line:#e6ded3;
  --light-text:#403b46;
  --max:1320px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--black);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
  font-weight:300;
  line-height:1.75;
}

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

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

h1,h2,h3{
  font-family:"Cormorant Garamond",serif;
  font-weight:300;
  line-height:.98;
  margin:0;
}

em,i{
  font-family:"Cormorant Garamond",serif;
  font-style:italic;
  color:var(--gold);
}

p{color:#d8d3e2}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:82px;
  padding:0 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  background:rgba(7,7,12,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(214,189,134,.12);
}

.brand{
  font-family:"Cormorant Garamond",serif;
  letter-spacing:.30em;
  text-transform:uppercase;
  font-size:16px;
  font-weight:600;
  color:var(--gold-light);
  white-space:nowrap;
}

.site-header nav{
  display:flex;
  align-items:center;
  gap:46px;
}

.site-header nav a,
.kicker,
.small-tags,
small,
.label{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
}

.site-header nav a{
  color:#b9b0c9;
  font-weight:500;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:17px 32px;
  border:1px solid rgba(214,189,134,.48);
  background:var(--gold);
  color:#17100d;
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.btn:hover{transform:translateY(-1px);filter:brightness(1.04)}

.btn-dark{
  background:#06050a;
  color:#fff;
  border-color:#06050a;
}

.btn-outline{
  background:transparent;
  color:var(--gold-light);
  border-color:rgba(214,189,134,.45);
}

.text-link{
  color:var(--gold-light);
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:800;
}

.section-dark{
  background:
    radial-gradient(circle at 47% 45%,rgba(48,42,96,.35),transparent 30%),
    linear-gradient(180deg,#08070d 0%,#111026 100%);
}

.section-light{
  background:var(--paper);
  color:var(--light-text);
}

.kicker{
  color:#b8a995;
  font-weight:700;
  margin:0 0 26px;
}

.hero{
  min-height:880px;
  text-align:center;
  display:grid;
  place-items:center;
  padding:110px 6vw 80px;
  overflow:hidden;
}

.hero .eyebrow-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:#bfae86;
  font-size:12px;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.eyebrow-line span{
  width:58px;
  height:1px;
  background:var(--line);
}

.hero h1{
  font-size:clamp(54px,7.4vw,120px);
  max-width:1040px;
  margin:48px auto 25px;
  color:#f7f2fb;
  letter-spacing:-.045em;
}

.hero h1 em{
  display:inline-block;
  color:var(--gold-light);
  font-size:1.08em;
}

.hero h1 i{color:#bdb2d4}

.small-tags{
  color:var(--gold);
  margin:32px 0 0;
}

.hero-copy{
  max-width:660px;
  margin:70px auto 34px;
  font-size:15px;
}

.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
}

/* MOVING TICKER */

.ticker{
  background:#15102c;
  border-top:1px solid rgba(214,189,134,.15);
  border-bottom:1px solid rgba(214,189,134,.15);
  overflow:hidden;
  white-space:nowrap;
  position:relative;
  padding:18px 0;
}

.ticker-track{
  display:flex;
  width:max-content;
  animation:tickerScroll 35s linear infinite;
}

.ticker-track span{
  padding-right:80px;
  color:rgba(214,189,134,.75);
  font-size:12px;
  letter-spacing:.30em;
  text-transform:uppercase;
}

@keyframes tickerScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

.section-light{
  padding:115px 6vw;
}

.section-light p{color:#78717e}

.section-title{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(46px,5vw,82px);
  font-weight:300;
  line-height:1;
  margin:0 0 65px;
  color:inherit;
}

.center{text-align:center}

.cards{
  display:grid;
  border:1px solid #ebe4da;
}

.three{grid-template-columns:repeat(3,1fr)}
.four{grid-template-columns:repeat(4,1fr)}

.cards article{
  padding:58px 42px;
  min-height:270px;
  border-right:1px solid #ebe4da;
  background:rgba(255,255,255,.50);
}

.cards article:last-child{border-right:0}

.cards h3{
  font-size:34px;
  color:#776a93;
  margin:16px 0 18px;
}

.letter{
  font-family:"Cormorant Garamond",serif;
  font-size:66px;
  color:#eee9e3;
  text-align:center;
}

.guide{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:7vw;
  padding:120px 6vw;
  align-items:center;
}

.guide-photo{
  min-height:680px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(135deg,#19162f,#0c0b16);
  position:relative;
  overflow:hidden;
}

.guide-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.90;
}

.guide-photo.no-photo:after{
  content:'Dodaj zdjęcie: assets/kate.jpg';
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color:#8e86a5;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.guide h2,
.guide h1{
  font-size:clamp(42px,4.8vw,74px);
  color:#f4f0fb;
  margin:18px 0 30px;
}

.star-list{
  list-style:none;
  padding:30px 0 0;
  margin:0 0 28px;
}

.star-list li{
  margin:14px 0;
  color:#cfc7da;
}

.star-list li:before{
  content:'✦';
  color:var(--gold);
  margin-right:12px;
}

.split-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  align-items:end;
  margin-bottom:65px;
}

.split-head h2{
  text-align:left;
  margin:12px 0 0;
}

.process .cards article span,
.philosophy-list span{
  font-family:"Cormorant Garamond",serif;
  font-size:42px;
  color:#ebe7ee;
}

.offer-section{
  padding:115px 6vw;
  text-align:center;
}

.offer-section h2{
  font-size:clamp(50px,5vw,88px);
}

.center-copy{
  max-width:760px;
  margin:24px auto 70px;
}

.offer-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  border:1px solid rgba(255,255,255,.10);
  text-align:left;
}

.offer-grid article{
  padding:60px 50px;
  background:rgba(255,255,255,.025);
  border-right:1px solid rgba(255,255,255,.08);
}

.offer-grid article:last-child{border-right:0}
.offer-grid .featured{background:rgba(255,255,255,.065)}

.offer-grid h3{
  font-size:42px;
  color:#f4f0fb;
  margin:25px 0;
}

.offer-grid ul{
  padding-left:18px;
  color:#c9c4d2;
  line-height:2;
}

.offer-grid a{
  display:inline-block;
  margin-top:24px;
  color:#d8c8a3;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
}

.philosophy h2{text-align:left}

.philosophy-list{
  display:grid;
  gap:54px;
  margin-left:40%;
  max-width:850px;
}

.philosophy-list h3{
  font-size:30px;
  color:#4b4652;
  margin:8px 0 0;
}

.quote{
  padding:150px 10vw;
  text-align:center;
}

.quote h2{
  font-size:clamp(42px,4.5vw,78px);
  max-width:1060px;
  margin:auto;
  color:#f4f0fb;
  line-height:1.18;
}

.testimonials h2{text-align:center}

.cta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7vw;
  padding:115px 6vw;
}

.cta h2{
  font-size:clamp(46px,5vw,86px);
  color:#f4f0fb;
}

.cta-links{
  display:grid;
  border:1px solid rgba(255,255,255,.10);
}

.cta-links a{
  padding:34px;
  border-bottom:1px solid rgba(255,255,255,.10);
  font-family:"Cormorant Garamond",serif;
  font-size:30px;
  color:#f4f0fb;
}

.cta-links a:last-child{border-bottom:0}

/* MEMBERSHIP — corrected to match reference */
.membership-section{
  background:var(--paper);
  color:#3d3942;
  padding:115px 6vw 125px;
}

.membership-grid{
  display:grid;
  grid-template-columns:1.02fr 1fr;
  gap:90px;
  align-items:center;
}

.membership-section .kicker{
  color:#b6ada2;
  margin-bottom:30px;
}

.membership-title{
  font-size:clamp(54px,5vw,92px);
  line-height:1.05;
  color:#333039;
  margin-bottom:34px;
}

.membership-title em{color:#c8b176}

.membership-copy{
  max-width:720px;
  font-size:17px;
  color:#7d7882;
  margin-bottom:28px;
}

.membership-list{
  list-style:none;
  padding:0;
  margin:34px 0 0;
  display:grid;
  gap:16px;
}

.membership-list li{
  color:#77717d;
  font-size:15px;
}

.membership-list li:before{
  content:'✦';
  color:#bfa76e;
  margin-right:12px;
}

.membership-card{
  min-height:370px;
  background:
    radial-gradient(circle at 52% 40%,rgba(67,55,123,.28),transparent 36%),
    linear-gradient(135deg,#0b0915,#17142f 50%,#0b0915);
  color:#f5f0fb;
  display:grid;
  place-items:center;
  padding:62px;
  text-align:center;
  border:1px solid rgba(214,189,134,.18);
  box-shadow:0 22px 80px rgba(14,10,32,.12);
}

.membership-card h3{
  font-size:clamp(32px,3vw,52px);
  line-height:1.02;
  margin:18px 0 22px;
}

.membership-card h3 em{
  display:block;
  color:var(--gold-light);
}

.membership-price{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(34px,3vw,48px);
  margin:18px 0;
  color:#f4e6bb;
}

.membership-card p{
  max-width:520px;
  margin:0 auto 30px;
  color:#beb8ca;
}

/* NEWSLETTER — corrected to match reference */
.newsletter-section{
  background:
    radial-gradient(circle at 48% 25%,rgba(25,21,52,.95),transparent 40%),
    #050508;
  color:#f4f0fb;
  text-align:center;
  padding:128px 6vw 90px;
}

.newsletter-inner{
  max-width:940px;
  margin:0 auto;
}

.newsletter-section h2{
  font-size:clamp(42px,4.2vw,72px);
  line-height:1.05;
  color:#f4f0fb;
  margin:0;
}

.newsletter-section h2 em{
  color:#bdb2d4;
}

.newsletter-section p{
  max-width:800px;
  margin:22px auto 40px;
  color:#a9a3b6;
}

.newsletter-form{
  max-width:650px;
  margin:0 auto;
  display:flex;
  justify-content:center;
}

.newsletter-form input{
  flex:1;
  min-height:68px;
  border:1px solid rgba(255,255,255,.08);
  border-right:0;
  background:#141126;
  color:#fff;
  padding:0 28px;
  font:400 15px Inter,Arial,sans-serif;
  outline:0;
}

.newsletter-form input::placeholder{color:#8f879d}

.newsletter-form button{
  min-height:68px;
  border:0;
  background:var(--gold);
  color:#17100d;
  padding:0 36px;
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  font-weight:800;
  cursor:pointer;
}

/* CONTACT — consistent premium style */
body.contact-body{
  background:#f8f5ef;
  color:#3d3942;
}

.contact-page{
  min-height:calc(100vh - 82px);
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:8vw;
  padding:110px 6vw 95px;
  background:
    radial-gradient(circle at 20% 86%,rgba(214,189,134,.16),transparent 28%),
    var(--cream);
  color:#3d3942;
}

.contact-info h1{
  font-size:clamp(68px,7vw,126px);
  line-height:.90;
  margin:44px 0 42px;
  color:#17151a;
}

.contact-info h1 em{
  display:block;
  color:#9d8e73;
}

.contact-info p{
  color:#766f78;
  max-width:520px;
  font-size:17px;
}

.contact-info dl{
  margin-top:70px;
}

.contact-info dt{
  color:#b0a796;
  margin-top:30px;
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  font-weight:700;
}

.contact-info dd{
  margin:10px 0 0;
  color:#2e2932;
}

.contact-info dd a{
  text-decoration:underline;
  text-underline-offset:4px;
}

.contact-form{
  display:grid;
  gap:0;
}

.contact-form label{
  display:grid;
  gap:16px;
  border-top:1px solid #d5cec3;
  padding:28px 0 26px;
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#b0a796;
  font-weight:700;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  border:0;
  background:transparent;
  font:400 20px Inter,Arial,sans-serif;
  color:#3c3641;
  outline:0;
  padding:0;
}

.contact-form textarea{
  min-height:185px;
  resize:vertical;
}

.contact-form ::placeholder{color:#b9b0a4}

.form-bottom{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  border-top:1px solid #d5cec3;
  padding-top:34px;
  margin-top:4px;
}

.form-bottom p{
  color:#aaa196;
  margin:0;
}

.light-footer,
footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:52px 6vw;
  background:#050508;
  color:#777183;
}

.light-footer{
  background:#f8f5ef;
  color:#807982;
  border-top:1px solid #e6ded3;
}

footer nav{
  display:flex;
  gap:34px;
}

/* Simple About page */
.page-hero{
  padding-top:140px;
}

.wide-copy{
  max-width:900px;
  margin:auto;
  text-align:center;
}


/* EXPERIENCE BADGE */

.guide-photo{
  position:relative;
}

.experience-badge{
  position:absolute;
  left:30px;
  bottom:30px;
  background:rgba(11,9,34,.92);
  border:1px solid rgba(214,189,134,.2);
  padding:24px 28px;
  min-width:180px;
  backdrop-filter:blur(12px);
  z-index:3;
}

.experience-number{
  font-family:"Cormorant Garamond",serif;
  font-size:64px;
  line-height:1;
  color:var(--gold);
  margin-bottom:8px;
}

.experience-text{
  font-size:11px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  line-height:1.8;
}

/* PHILOSOPHY QUOTES */

.philosophy-list article blockquote{
  margin:22px 0 0;
  padding:0;
  font-family:"Cormorant Garamond",serif;
  font-size:1.45rem;
  line-height:1.55;
  font-style:italic;
  color:#8f83a8;
  border:none;
}

.philosophy-list article h3 em{
  color:#8f83a8;
}

/* KIT NEWSLETTER FORM FIX */

.newsletter-form{
  max-width:700px;
  margin:40px auto 0;
  display:flex;
  gap:16px;
}

.newsletter-form input{
  flex:1;
  height:68px;
  padding:0 24px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:18px;
  border-radius:0;
}

.newsletter-form input::placeholder{
  color:rgba(255,255,255,.55);
}

.newsletter-form button{
  height:68px;
  padding:0 34px;
  border:none;
  background:#d6c08d;
  color:#111;
  font-size:14px;
  font-weight:600;
  letter-spacing:.15em;
  text-transform:uppercase;
  cursor:pointer;
}

.newsletter-form button:hover{
  opacity:.9;
}

@media (max-width:768px){

  .newsletter-form{
    flex-direction:column;
  }

  .newsletter-form button{
    width:100%;
  }

}
