/* === GLOBAL === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2c2c2c;
    background: #f5f1ec;
    overflow-x: hidden;
}

/* headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

h1 { font-size: 120px; line-height: 0.9; }
h2 { font-size: 36px; line-height: 1.2; }
h3 { font-size: 22px; line-height: 1.3; letter-spacing: 0.05em; text-transform: uppercase; }
h4 { font-size: 18px; }

a { color: #1a1a1a; text-decoration: none; transition: color .3s ease; }
a:hover { color: #666; }

/* === HEADER === */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 30px 60px;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

.site-header.is-stuck {
    position: fixed;
    background: #1a1a1a;
    padding: 15px 60px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo-svg {
    display: block;
    flex-shrink: 0;
}

.logo-svg text {
    font-family: 'Playfair Display', serif;
    fill: #ffffff;
}

.site-header.is-stuck .logo-svg text {
    fill: #ffffff;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.main-nav li a {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.main-nav li a:hover { color: #cccccc !important; }
.main-nav li a.active { border-bottom: 1px solid rgba(255,255,255,.5); }

/* hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all .3s ease;
}

/* === HERO === */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: url('../graphics/bg-hero.webp') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-wordmark {
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: 0.85;
    color: rgba(255,255,255,0.18);
    letter-spacing: -0.02em;
    pointer-events: none;
}

.hero-wordmark span { display: block; }

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 80%;
    max-width: 760px;
}

.hero-content h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    font-style: italic;
}

/* btn */
.btn,
a.btn {
    display: inline-block;
    padding: 14px 38px;
    background: #1a1a1a;
    color: #ffffff !important;
    border: 1px solid #1a1a1a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
    font-family: 'Open Sans', sans-serif;
}

.btn:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.btn-light {
    background: #f5f1ec;
    color: #1a1a1a !important;
    border-color: #1a1a1a;
}

.btn-light:hover {
    background: #1a1a1a;
    color: #ffffff !important;
}

.btn-outline {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1a1a1a !important;
}

/* === SERVICES / COURSES === */
.services {
    background: #f5f1ec;
    padding: 100px 0 80px;
    text-align: center;
}

.services .section-title {
    font-size: 30px;
    letter-spacing: 0.25em;
    margin-bottom: 70px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    flex: 1 1 0;
    max-width: 260px;
    text-align: center;
}

.service-card .img-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 18px;
}

.service-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    -webkit-filter: brightness(0.82);
    filter: brightness(0.82);
    transition: filter .4s ease;
}

.service-card:hover img {
    -webkit-filter: brightness(0.65);
    filter: brightness(0.65);
}

.service-card .img-wrap .label {
    position: absolute;
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 0 12px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #2c2c2c;
    margin: 0;
    padding: 0 8px;
}

.service-card.last { max-width: 260px; }

/* === INFO BAND === */
.info-band {
    background: #f5f1ec;
    padding: 40px 20px 100px;
    text-align: center;
}

.info-band h2 { font-size: 22px; letter-spacing: 0.05em; margin-bottom: 25px; }

.info-band p {
    max-width: 760px;
    margin: 0 auto 35px;
    font-size: 14px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 40px;
}

.feature-item {
    text-align: center;
    max-width: 200px;
}

.feature-item i {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: block;
}

.feature-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12px;
    color: #6a6a6a;
    margin: 0;
}

/* === ATMOSPHERE BAND === */
.atmosphere {
    position: relative;
    background: #1a1a1a url('../graphics/atmosphere-bg.webp') center / cover no-repeat;
    padding: 140px 0;
    color: #f8f6f2;
    min-height: 620px;
}

.atmosphere::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
}

.atmosphere .inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
}

.atmosphere .copy {
    max-width: 480px;
    color: #f8f6f2;
}

.atmosphere h2 {
    color: #f8f6f2;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.atmosphere p {
    font-size: 14px;
    line-height: 1.7;
    color: #e8e4dd;
}

.atmosphere .ghost-mark {
    position: absolute;
    top: 60px;
    left: 60px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    line-height: 0.85;
    color: rgba(255,255,255,0.18);
    pointer-events: none;
}

/* === PRICING === */
.pricing {
    background: #f5f1ec;
    padding: 100px 0 80px;
    text-align: center;
}

.pricing .section-title {
    font-size: 30px;
    letter-spacing: 0.25em;
    margin-bottom: 70px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1 1 300px;
    max-width: 320px;
    background: #ffffff;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(26,26,26,0.1);
    transition: box-shadow .3s ease;
}

.price-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.price-card.featured {
    background: #1a1a1a;
    color: #f8f6f2;
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured li {
    color: #f8f6f2;
}

.price-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 5px;
}

.price-card.featured .price-amount { color: #f8f6f2; }

.price-period {
    font-size: 12px;
    color: #707070;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.price-card.featured .price-period { color: rgba(255,255,255,.6); }

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    text-align: left;
}

.price-features li {
    font-size: 13px;
    line-height: 1.5;
    padding: 9px 0;
    border-bottom: 1px solid rgba(26,26,26,0.08);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card.featured .price-features li { border-color: rgba(255,255,255,.12); }

.price-features li i { font-size: 11px; opacity: .6; }

/* === BIO BLOCK === */
.bio-block {
    background: #f5f1ec;
    padding: 90px 0 100px;
}

.bio-block .row {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
}

.bio-block .text { flex: 1 1 55%; }
.bio-block .photo { flex: 1 1 45%; }

.bio-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.bio-block p {
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.bio-block img { width: 100%; display: block; }

/* === TESTIMONIALS === */
.testimonials {
    background: #1a1a1a;
    padding: 90px 0;
    text-align: center;
}

.testimonials .section-title {
    color: #f8f6f2;
    font-size: 28px;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: left;
}

.testimonial-item blockquote {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #e8e4dd;
    font-style: italic;
    border-left: 2px solid rgba(255,255,255,.2);
    padding-left: 20px;
}

.testimonial-item cite {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #707070;
    font-style: normal;
}

/* === FAQ === */
.faq-section {
    background: #f5f1ec;
    padding: 90px 0;
}

.faq-section .inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-section .section-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.2em;
    margin-bottom: 55px;
}

.faq-item {
    border-bottom: 1px solid rgba(26,26,26,.12);
    padding: 22px 0;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    user-select: none;
}

.faq-question i {
    font-size: 12px;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 13px;
    line-height: 1.75;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 14px;
}

/* === CONTACT FORM SECTION === */
.contact-section {
    background: #f5f1ec;
    padding: 90px 0;
}

.contact-section .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 70px;
}

.contact-section .form-side { flex: 1 1 55%; }
.contact-section .info-side { flex: 1 1 45%; }

.contact-section h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
    margin-bottom: 35px;
}

.contact-section .info-side h3 {
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.contact-section .info-side p {
    font-size: 13px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 30px;
}

.contact-section .info-side address {
    font-style: normal;
    font-size: 13px;
    line-height: 2;
    color: #2c2c2c;
}

.contact-section .info-side address i {
    width: 20px;
    color: #666;
}

form .form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
    color: #555;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.18);
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #2c2c2c;
    outline: none;
    transition: border-color .3s ease;
    -webkit-appearance: none;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #1a1a1a;
}

form textarea { resize: vertical; min-height: 130px; }

/* === INTERIOR PAGE HEADER === */
.page-header {
    background: #1a1a1a;
    padding: 140px 60px 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #f8f6f2;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* === INTERIOR CONTENT === */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 100px;
}

.page-content h2 {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0.03em;
    margin-top: 35px;
    margin-bottom: 12px;
}

.page-content p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 18px;
    color: #3a3a3a;
}

.page-content ul, .page-content ol {
    font-size: 14px;
    line-height: 1.8;
    color: #3a3a3a;
    padding-left: 22px;
    margin: 0 0 20px;
}

.page-content li { margin-bottom: 8px; }

/* === TEAM GRID === */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    flex: 1 1 240px;
    max-width: 280px;
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.team-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    font-weight: 400;
}

.team-card .role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #707070;
    margin-bottom: 14px;
}

.team-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

/* === FOOTER === */
.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 70px 60px 30px;
    font-size: 13px;
}

.site-footer .cols {
    display: flex;
    gap: 60px;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.site-footer .col { flex: 1 1 0; min-width: 160px; }

.site-footer h4 {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cccccc; }
.site-footer a:hover { color: #ffffff; }

.site-footer address {
    font-style: normal;
    line-height: 1.9;
    font-size: 13px;
}

.site-footer address i {
    width: 18px;
    color: #888;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #cccccc;
    transition: border-color .3s, color .3s;
}

.social-links a:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.site-footer .legal {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer .legal-links {
    display: flex;
    gap: 20px;
}

.site-footer .legal-links a { color: #888; }
.site-footer .legal-links a:hover { color: #ffffff; }

/* === COOKIE NOTICE === */
.cookie-modal {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 420px;
    max-width: 92%;
    background: #ffffff;
    padding: 28px 26px 22px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    display: none;
}

.cookie-modal.visible { display: block; }

.cookie-modal h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.cookie-modal p {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px;
}

.cookie-modal p a { color: #1a1a1a; text-decoration: underline; }

.cookie-modal .btn-row {
    display: flex;
    gap: 10px;
}

.cookie-modal .btn { flex: 1; text-align: center; }

.cookie-modal .btn-link {
    background: transparent;
    color: #1a1a1a !important;
    border: 1px solid #1a1a1a;
}

.cookie-modal .btn-link:hover {
    background: #1a1a1a;
    color: #ffffff !important;
}

/* overlay */
.cookie-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
}

.cookie-overlay.visible { display: block; }

/* utility / legacy */
.clearfix:after { content: ""; display: table; clear: both; }
.pull-left { float: left; }
.pull-right { float: right; }
.text-center { text-align: center; }

/* send success */
.send-success {
    background: #f5f1ec;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.send-success i {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 80px; }
    .hero-wordmark { font-size: 90px; left: 30px; }
    .hero-content h2 { font-size: 38px; }
    .services-grid { flex-wrap: wrap; gap: 20px; }
    .service-card { flex: 1 1 45%; max-width: 45%; }
    .atmosphere .inner { padding: 0 40px; }
    .site-header { padding: 25px 40px; }
    .contact-section .inner { flex-direction: column; }
    .pricing-grid { gap: 20px; }
}

@media (max-width: 768px) {
    h1 { font-size: 52px; }
    h2 { font-size: 26px; }
    .hero { height: auto; min-height: 520px; padding-bottom: 60px; }
    .hero-wordmark { font-size: 64px; left: 20px; top: 90px; }
    .hero-content { width: 92%; }
    .hero-content h2 { font-size: 28px; }
    .main-nav { display: none; }
    .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a1a; padding: 20px 30px; }
    .main-nav.open ul { flex-direction: column; gap: 15px; }
    .nav-toggle { display: flex; }
    .header-inner { justify-content: space-between; flex-wrap: wrap; }
    .services { padding: 60px 0 40px; }
    .services-grid { flex-direction: column; gap: 30px; padding: 0 30px; }
    .service-card, .service-card.last { max-width: 100%; }
    .atmosphere { padding: 80px 0; }
    .atmosphere .inner { justify-content: flex-start; padding: 0 30px; }
    .atmosphere .ghost-mark { font-size: 70px; top: 30px; left: 20px; }
    .bio-block .row { flex-direction: column; gap: 30px; padding: 0 30px; }
    .site-footer { padding: 50px 30px 20px; }
    .site-footer .cols { flex-direction: column; gap: 30px; }
    .site-footer .legal { text-align: left; }
    .cookie-modal { width: calc(100% - 40px); left: 20px; bottom: 20px; padding: 22px 18px 18px; }
    .page-header { padding: 110px 30px 50px; }
    .page-header h1 { font-size: 32px; }
    .contact-section .inner { padding: 0 30px; }
    .team-grid { padding: 60px 30px; }
    .faq-section .inner { padding: 0 30px; }
    .info-band { padding: 40px 30px 70px; }
    .features-list { gap: 30px; }
    .bio-block { padding: 60px 0 70px; }
    .pricing-grid { padding: 0 30px; flex-direction: column; align-items: center; }
    .price-card { max-width: 100%; }
}

@media (max-width: 480px) {
    h1 { font-size: 38px; }
    .hero-wordmark { font-size: 48px; }
    .btn { padding: 12px 24px; font-size: 11px; }
    .hero-content h2 { font-size: 22px; }
    .pricing-grid { flex-direction: column; }
}
