:root {
    --ivory: #f8f2e7;
    --linen: #efe4d2;
    --paper: #fffaf1;
    --ink: #17372f;
    --ink-soft: #435950;
    --sea: #287995;
    --sea-deep: #18566c;
    --herb: #587650;
    --herb-deep: #34533d;
    --saffron: #e6a92d;
    --coral: #df6d5f;
    --gold: #bd9250;
    --line: rgba(23, 55, 47, 0.16);
    --serif: "Noto Serif", Georgia, serif;
    --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
    --ribbon-h: 68px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    scroll-padding-bottom: var(--ribbon-h);
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    padding-bottom: var(--ribbon-h);
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

.section-shell {
    width: min(1440px, calc(100% - 72px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 0;
    right: max(36px, calc((100vw - 1440px) / 2));
    left: max(36px, calc((100vw - 1440px) / 2));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: auto;
    height: 108px;
    border-bottom: 1px solid rgba(255, 250, 241, 0.42);
    color: #fffdf7;
    transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-sticky {
    right: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding-inline: max(36px, calc((100vw - 1440px) / 2));
    border-bottom-color: rgba(255, 253, 247, 0.18);
    background: var(--sea-deep);
    box-shadow: 0 8px 24px rgba(7, 34, 31, 0.16);
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    justify-self: start;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand img {
    width: 78px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(6, 31, 27, 0.22));
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 54px);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.desktop-nav a {
    position: relative;
    padding-block: 8px;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
}

.pill-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pill-button.header-cta {
    border-radius: 10px;
}

.pill-button:hover,
.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(10, 33, 28, 0.18);
}

.pill-button span,
.primary-button span {
    font-size: 19px;
    line-height: 1;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(50px, 6vw, 110px);
    align-items: center;
    min-height: 100svh;
    width: 100%;
    padding: 150px max(36px, calc((100vw - 1440px) / 2)) 74px;
    overflow: hidden;
    background: var(--sea-deep);
    color: #fffdf7;
    isolation: isolate;
}

.hero.section-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
}

.hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 11% 16%, rgba(230, 169, 45, 0.16), transparent 25%),
        radial-gradient(circle at 42% 78%, rgba(116, 166, 135, 0.28), transparent 30%),
        linear-gradient(122deg, #174f60 0%, #1d6173 48%, #154756 100%);
    content: "";
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -11vw;
    bottom: -23vh;
    width: 72vw;
    height: 54vh;
    border-radius: 48% 52% 0 0 / 100% 100% 0 0;
    background: rgba(248, 242, 231, 0.08);
    content: "";
    transform: rotate(-4deg);
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 250, 241, 0.19);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    top: 19%;
    left: -9%;
    width: 37vw;
    height: 37vw;
    animation: breathe 8s ease-in-out infinite;
}

.orbit-two {
    top: 25%;
    left: -4%;
    width: 26vw;
    height: 26vw;
    animation: breathe 8s 1.4s ease-in-out infinite;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-top: 24px;
}

.eyebrow,
.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
    color: var(--sea-deep);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    color: #f6d984;
}

.section-kicker.light {
    color: rgba(255, 253, 247, 0.72);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero-copy,
.hero-visual,
.intro-heading > *,
.section-heading-row > *,
.purpose > *,
.day-heading > *,
.circle > *,
.join-grid > *,
.faq > * {
    min-width: 0;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.055em;
}

h1 em,
h2 em {
    color: var(--saffron);
    font-weight: 500;
}

h1 {
    max-width: 750px;
    margin-bottom: 34px;
    font-size: clamp(73px, 7.1vw, 126px);
    line-height: 0.88;
}

.hero-community {
    display: inline;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 253, 247, 0.8);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 42px;
}

.primary-button {
    min-height: 60px;
    padding-inline: 28px;
    background: var(--saffron);
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-block: 8px;
    border-bottom: 1px solid rgba(255, 253, 247, 0.45);
    font-size: 16px;
    font-weight: 600;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-notes span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 253, 247, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.hero-visual {
    position: relative;
    min-height: min(74vh, 800px);
}

.sun-disc {
    position: absolute;
    top: -8%;
    right: 1%;
    width: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--saffron);
    box-shadow: 0 0 80px rgba(230, 169, 45, 0.17);
    animation: sun-pulse 7s ease-in-out infinite;
}

.hero-photo {
    position: absolute;
    inset: 6% 6% 0 2%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 253, 247, 0.34);
    border-radius: 48% 48% 14px 14px / 28% 28% 14px 14px;
    box-shadow: 0 34px 90px rgba(5, 26, 23, 0.3);
    animation: photo-open 1s cubic-bezier(.2, .75, .25, 1) both;
}

.hero-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 43, 37, 0.4), transparent 46%), linear-gradient(120deg, rgba(255, 210, 113, 0.08), transparent 40%);
    content: "";
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 53% center;
    filter: saturate(0.86) contrast(0.94) brightness(1.04);
}

.photo-note {
    position: absolute;
    z-index: 2;
    right: -1%;
    bottom: 15%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(23, 55, 47, 0.12);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.05;
    transform: rotate(2deg);
}

.note-mark {
    color: var(--coral);
    font-size: 24px;
    font-style: normal;
}

.date-stamp {
    position: absolute;
    z-index: 3;
    bottom: 3%;
    left: -2%;
    display: grid;
    width: 172px;
    aspect-ratio: 1;
    padding: 20px;
    border-radius: 50%;
    background: var(--coral);
    color: #fffdf7;
    text-align: center;
    transform: rotate(-7deg);
}

.date-stamp small {
    align-self: end;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.date-stamp strong {
    align-self: center;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 600;
    line-height: 0.9;
}

.date-stamp span {
    align-self: start;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* Το fixed κομμάτι δεν έχει transform και δένεται στο dynamic viewport (100dvh),
   ώστε η κορδέλα να μη χοροπηδάει όταν εμφανίζεται/κρύβεται η μπάρα διεύθυνσης
   σε Safari/Firefox κινητού. Το pointer-events: none αφήνει τα κλικ να περάσουν. */
/* Το badge του reCAPTCHA v3 κάθεται κάτω δεξιά, εκεί που περνάει η κορδέλα.
   Το ανεβάζουμε πάνω από αυτή (πρέπει να παραμένει ορατό για τους όρους της Google). */
.grecaptcha-badge {
    z-index: 25 !important;
    bottom: calc(var(--ribbon-h) + 16px) !important;
}

.ribbon-anchor {
    /* Ίδιο σχήμα με το badge του reCAPTCHA, που στο iOS 26 επανέρχεται μόνο του
       μετά το glitch: fixed, ρητό width/height, ΜΟΝΟ left (όχι left+right μαζί),
       καθόλου transform και καθόλου dvh στο fixed στοιχείο.
       Η κλίση και το overshoot μπαίνουν στο παιδί (.ribbon-bar). */
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--ribbon-h);
    pointer-events: none;
}

.ribbon-bar {
    position: relative;
    /* Ξεφεύγει δεξιά/αριστερά ώστε να μη φαίνονται οι άκρες της κορδέλας.
       Με την κλίση η δεξιά γωνία σηκώνεται και φαίνεται η σελίδα από κάτω,
       σαν η κορδέλα να περνάει πάνω από την οθόνη. */
    margin-inline: -5vw;
    margin-bottom: env(safe-area-inset-bottom, 0px);
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255, 250, 241, 0.25);
    border-bottom: 1px solid rgba(23, 55, 47, 0.18);
    background: var(--saffron);
    transform: rotate(-0.6deg);
    pointer-events: auto;
}

.moving-ribbon {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
}

.ribbon-cta {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    /* κρατά το CTA μέσα στο viewport, όσο η κορδέλα ξεφεύγει δεξιά */
    margin-right: 5vw;
    padding-inline: clamp(18px, 2vw, 30px);
    background: var(--coral);
    color: #fffdf7;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 220ms ease;
}

.ribbon-cta:hover,
.ribbon-cta:focus-visible {
    background: #c2564a;
}

.ribbon-cta strong {
    font-weight: 700;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: ribbon 84s linear infinite;
    will-change: transform;
}

.marquee-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 25px;
    padding: 17px 25px 17px 0;
}

.moving-ribbon span {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
}

.moving-ribbon i {
    color: var(--coral);
    font-style: normal;
}

.intro {
    padding-block: 160px 130px;
}

.intro-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: end;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(62px, 6.2vw, 108px);
    line-height: 0.94;
}

.intro-heading h2 em,
.section-heading-row h2 em,
.circle-copy h2 em,
.faq-heading h2 em {
    color: var(--sea);
}

.intro-copy {
    padding-bottom: 8px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.large-copy {
    color: var(--ink);
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.55;
    letter-spacing: -0.025em;
}

.photo-constellation {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.55fr 0.86fr;
    gap: 34px;
    align-items: center;
    margin-top: 100px;
}

.photo-constellation figure {
    margin: 0;
    overflow: hidden;
}

.photo-tall {
    height: 640px;
    border-radius: 48% 48% 8px 8px / 18% 18% 8px 8px;
}

.photo-tall img,
.photo-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-tall img {
    object-position: center;
}

.constellation-quote {
    align-self: start;
    margin-top: 90px;
    text-align: center;
}

.constellation-quote span {
    display: block;
    height: 50px;
    color: var(--coral);
    font-family: var(--serif);
    font-size: 84px;
    line-height: 0.9;
}

.constellation-quote p {
    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
    line-height: 1.05;
}

.photo-round {
    height: 450px;
    border-radius: 50% 50% 12px 12px / 38% 38% 12px 12px;
    transform: translateY(105px);
}

.photo-round img {
    filter: saturate(0.84);
}

.facts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 170px;
    border-top: 1px solid var(--line);
}

.facts-row article {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 28px 0 6px;
    border-right: 1px solid var(--line);
}

.facts-row article:last-child {
    border: 0;
}

.facts-row strong {
    color: var(--coral);
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 500;
    line-height: 0.8;
}

.facts-row span {
    max-width: 130px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.belonging {
    position: relative;
    overflow: hidden;
    background: var(--herb-deep);
    color: #fffdf7;
    isolation: isolate;
}

.belonging-inner {
    position: relative;
    z-index: 2;
    padding-block: 150px 140px;
}

.belonging h2 {
    max-width: 950px;
    font-size: clamp(70px, 7.2vw, 126px);
}

.belonging h2 em {
    color: #f4d276;
}

.belonging-lead {
    max-width: 760px;
    margin: 45px 0 80px auto;
    color: rgba(255, 253, 247, 0.76);
    font-size: clamp(18px, 1.65vw, 24px);
    line-height: 1.62;
}

.belonging-shape {
    position: absolute;
    z-index: 0;
    border-radius: 46% 54% 58% 42% / 47% 38% 62% 53%;
    filter: blur(0.2px);
}

.shape-coral {
    top: -22%;
    right: -13%;
    width: 46vw;
    height: 46vw;
    background: rgba(223, 109, 95, 0.38);
    transform: rotate(18deg);
}

.shape-blue {
    bottom: -37%;
    left: -18%;
    width: 53vw;
    height: 53vw;
    background: rgba(40, 121, 149, 0.42);
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 253, 247, 0.24);
}

.welcome-grid article {
    min-height: 270px;
    padding: 30px 36px 20px 0;
    border-right: 1px solid rgba(255, 253, 247, 0.24);
}

.welcome-grid article + article {
    padding-left: 36px;
}

.welcome-grid article:last-child {
    border: 0;
}

.welcome-grid article > span {
    color: #f4d276;
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
}

.welcome-grid h3 {
    margin: 52px 0 14px;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
}

.welcome-grid p {
    max-width: 330px;
    color: rgba(255, 253, 247, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.experiences {
    padding-block: 160px;
}

.section-heading-row {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 0.5fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.section-heading-row > p {
    max-width: 470px;
    margin: 0 0 8px auto;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.75;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.experience-card {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    border-radius: 12px 12px 34% 12px / 12px 12px 18% 12px;
    background: var(--sea);
    color: #fff;
    isolation: isolate;
}

.experience-card:nth-child(even) {
    border-radius: 34% 12px 12px 12px / 18% 12px 12px 12px;
}

.experience-card img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(0.96);
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 500ms ease;
}

.experience-card::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 43, 39, 0.78) 0%, rgba(12, 43, 39, 0.04) 68%);
    content: "";
}

.experience-card:hover img {
    transform: scale(1.045);
    filter: saturate(0.95) contrast(0.98);
}

.card-large {
    min-height: 580px;
}

.card-saffron {
    margin-top: 0;
}

.card-coral {
    margin-top: 0;
}

.card-wide {
    min-height: 580px;
}

.card-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 42px;
}

.card-content > span {
    color: #f6d984;
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
}

.card-content h3 {
    margin: 8px 0 9px;
    font-family: var(--serif);
    font-size: clamp(34px, 3.1vw, 54px);
    font-weight: 500;
    line-height: 1;
}

.card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.purpose {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(70px, 9vw, 160px);
    align-items: center;
    padding-bottom: 170px;
}

.purpose-image {
    position: relative;
    height: 720px;
}

.purpose-image::before {
    position: absolute;
    top: -4%;
    left: -8%;
    width: 45%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--saffron);
    content: "";
}

.purpose-image img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 44% 44% 10px 10px / 22% 22% 10px 10px;
    object-fit: cover;
    filter: saturate(0.78);
}

.purpose-sticker {
    position: absolute;
    right: -45px;
    bottom: 65px;
    display: grid;
    place-items: center;
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font-family: var(--serif);
    font-size: 23px;
    font-style: italic;
    line-height: 1;
    text-align: center;
    transform: rotate(8deg);
}

.purpose-copy h2 {
    margin-bottom: 44px;
}

.purpose-copy h2 em {
    color: var(--herb);
}

.purpose-copy > p:not(.section-kicker) {
    max-width: 650px;
}

.purpose-copy > p:last-of-type {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.purpose-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.purpose-values span {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
}

.day-flow {
    padding-block: 155px 120px;
    background: var(--sea-deep);
    color: #fffdf7;
}

.day-heading {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 90px;
}

.day-heading h2 em {
    color: #f4d276;
}

.day-heading p {
    color: rgba(255, 253, 247, 0.68);
    font-size: 16px;
    line-height: 1.75;
}

.timeline {
    border-top: 1px solid rgba(255, 253, 247, 0.22);
}

.timeline article {
    display: grid;
    grid-template-columns: 0.32fr 1fr;
    align-items: start;
    padding-block: 27px;
    border-bottom: 1px solid rgba(255, 253, 247, 0.22);
    transition: padding-left 220ms ease, background 220ms ease;
}

.timeline article:hover {
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.timeline time {
    color: #f4d276;
    font-family: var(--serif);
    font-size: 38px;
    font-style: italic;
}

.timeline h3 {
    margin: 2px 0 7px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
}

.timeline p {
    margin: 0;
    color: rgba(255, 253, 247, 0.64);
    font-size: 16px;
}

.event-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 70px;
    padding: 28px 30px;
    border-radius: 16px;
    background: var(--paper);
    color: var(--ink);
}

.event-card > div {
    display: grid;
    gap: 7px;
}

.event-card > div > span {
    color: var(--ink-soft);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-card strong {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 600;
}

.coral-button {
    background: var(--coral);
    color: #fff;
}

.circle {
    display: grid;
    grid-template-columns: minmax(420px, 0.8fr) minmax(0, 1fr);
    gap: clamp(70px, 10vw, 160px);
    align-items: center;
    padding-block: 170px;
}

.circle-illustration {
    --circle-orbit-rotate: 0deg;
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    border: 1px solid rgba(23, 55, 47, 0.22);
    border-radius: 50%;
    animation: circle-breathe 9s ease-in-out infinite;
    transform-origin: center;
}

.circle-illustration::before,
.circle-illustration::after {
    position: absolute;
    border: 1px solid rgba(23, 55, 47, 0.18);
    border-radius: 50%;
    content: "";
}

.circle-illustration::before {
    inset: 12%;
}

.circle-illustration::after {
    inset: 29%;
    background: rgba(230, 169, 45, 0.16);
}

.circle-core {
    position: relative;
    z-index: 2;
    color: var(--coral);
    font-family: var(--serif);
    font-size: 44px;
    font-style: italic;
}

.circle-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    transform: rotate(var(--circle-orbit-rotate));
    transform-origin: center;
    will-change: transform;
}

.dot {
    position: absolute;
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--sea);
    box-shadow: 0 0 0 9px var(--ivory);
}

.dot-one {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.dot-two { top: 26%; right: 4%; background: var(--coral); }
.dot-three { right: 18%; bottom: 8%; background: var(--saffron); }
.dot-four { bottom: 10%; left: 16%; background: var(--herb); }
.dot-five { top: 27%; left: 2%; background: var(--gold); }

.circle-copy h2 {
    margin-bottom: 40px;
}

.circle-list {
    display: grid;
    gap: 16px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    color: var(--ink-soft);
    font-size: 15px;
}

.circle-list li {
    display: flex;
    align-items: baseline;
    gap: 13px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.circle-list span {
    color: var(--coral);
}

.join {
    position: relative;
    overflow: hidden;
    padding-block: 165px;
    background: var(--herb-deep);
    color: #fffdf7;
    isolation: isolate;
}

.join::before {
    position: absolute;
    z-index: -1;
    right: -11%;
    bottom: -45%;
    width: 62vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(230, 169, 45, 0.16);
    content: "";
}

.join::after {
    position: absolute;
    z-index: -1;
    top: -30%;
    left: -12%;
    width: 46vw;
    aspect-ratio: 1;
    border-radius: 48% 52% 44% 56%;
    background: rgba(40, 121, 149, 0.24);
    content: "";
}

.join-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.68fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: center;
}

.join-copy h2 {
    margin-bottom: 38px;
    font-size: clamp(72px, 7.2vw, 124px);
}

.join-copy h2 em {
    color: #f4d276;
}

.join-copy > p:not(.section-kicker) {
    max-width: 620px;
    color: rgba(255, 253, 247, 0.73);
    font-size: 18px;
    line-height: 1.7;
}

.join-signature {
    margin-top: 60px;
    font-family: var(--serif);
    font-size: 27px;
}

.join-signature em {
    color: var(--saffron);
}

.form-card {
    padding: clamp(30px, 4vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 42% 42% 18px 18px / 12% 12% 18px 18px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 35px 80px rgba(7, 25, 20, 0.25);
}

.form-label {
    margin-bottom: 10px;
    color: var(--coral);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-card h3 {
    margin: 0 0 30px;
    font-family: var(--serif);
    font-size: clamp(36px, 3.4vw, 52px);
    font-weight: 500;
    line-height: 0.98;
}

.signup-form {
    display: grid;
    gap: 16px;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.signup-form label {
    display: grid;
    gap: 7px;
}

.signup-form label > span {
    padding-left: 2px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signup-form input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: none;
    background: rgba(239, 228, 210, 0.35);
    color: var(--ink);
    transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.signup-form input:focus {
    border-color: var(--sea);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(40, 121, 149, 0.1);
}

.signup-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 61px;
    margin-top: 4px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: var(--saffron);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.signup-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(23, 55, 47, 0.18);
}

.signup-form button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
    box-shadow: none;
}

.signup-form button span {
    font-size: 21px;
}

.form-response {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.55;
}

.form-response.is-success {
    display: block;
    background: rgba(88, 118, 80, 0.12);
    color: var(--herb-deep);
}

.form-response.is-error {
    display: block;
    background: rgba(223, 109, 95, 0.1);
    color: #9b3e35;
}

.form-errors {
    margin-bottom: 20px;
    padding: 13px 15px;
    border: 1px solid rgba(223, 109, 95, 0.4);
    border-radius: 10px;
    background: rgba(223, 109, 95, 0.08);
    color: #9b3e35;
    font-size: 16px;
}

.form-errors p {
    margin: 0;
}

.form-errors p + p {
    margin-top: 5px;
}

.form-success {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.form-success > span {
    display: grid;
    place-items: center;
    width: 58px;
    aspect-ratio: 1;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--saffron);
    font-size: 28px;
}

.form-success h3 {
    margin-bottom: 18px;
}

.form-success > p:last-child {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
}

.faq {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) 1fr;
    gap: clamp(70px, 10vw, 160px);
    padding-block: 150px;
}

.faq-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-heading h2 {
    font-size: clamp(60px, 5.6vw, 98px);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-block: 27px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    flex: 0 0 36px;
    place-items: center;
    width: 36px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    transition: transform 220ms ease, background 220ms ease;
}

.faq-list details[open] summary span {
    background: var(--saffron);
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 650px;
    margin: -5px 55px 28px 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

footer {
    padding-block: 70px 28px;
    background: #122d27;
    color: rgba(255, 253, 247, 0.78);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.footer-brand {
    color: #fff;
}

.footer-inner > p {
    margin: 0;
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
}

.footer-inner > a:last-child {
    justify-self: end;
    font-size: 16px;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.footer-brand {
    letter-spacing: 0.02em;
    text-transform: none;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    border-bottom: 1px solid rgba(255, 253, 247, 0.3);
    padding-bottom: 2px;
    transition: border-color 220ms ease, color 220ms ease;
}

.footer-legal a:hover {
    border-bottom-color: var(--saffron);
    color: var(--saffron);
}

.netstudio-credit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* Νομικές σελίδες (πολιτική απορρήτου / όροι χρήσης) */
.legal-body {
    padding-bottom: 0;
}

.legal-hero {
    padding: 170px 0 70px;
    background: var(--sea-deep);
    color: #fffdf7;
}

.legal-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(48px, 5vw, 86px);
    line-height: 0.95;
}

.legal-lead {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 253, 247, 0.8);
    font-size: 18px;
    line-height: 1.65;
}

.legal-content {
    padding-block: 70px 110px;
    max-width: 820px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 52px 0 16px;
    color: var(--ink);
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.1;
}

.legal-content h3 {
    margin: 34px 0 10px;
    color: var(--ink);
    font-size: 20px;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content a {
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
}

.legal-content a:hover {
    border-bottom-color: var(--coral);
    color: var(--coral);
}

.legal-list {
    margin: 0 0 18px;
    padding-left: 20px;
}

.legal-list li {
    margin-bottom: 12px;
}

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

.legal-updated {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    font-style: italic;
}

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

@media (max-width: 620px) {
    .legal-hero {
        padding: 120px 0 50px;
    }

    .legal-content {
        padding-block: 46px 80px;
        font-size: 16px;
    }
}

.netstudio-credit svg {
    flex: 0 0 auto;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.68; }
    50% { transform: scale(1.035); opacity: 1; }
}

@keyframes circle-breathe {
    0%, 100% {
        opacity: 0.68;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.035);
    }
}

@keyframes sun-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}

@keyframes photo-open {
    from { opacity: 0; transform: translateY(28px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ribbon {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 1120px) {
    .section-shell {
        width: min(100% - 48px, 1440px);
    }

    .site-header {
        right: 24px;
        left: 24px;
        width: auto;
    }

    .site-header.is-sticky {
        right: 0;
        left: 0;
        width: 100%;
        padding-inline: 24px;
    }

    .hero {
        grid-template-columns: 1fr 0.9fr;
        padding-inline: 24px;
    }

    .desktop-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        min-height: 650px;
    }

    .event-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card .primary-button {
        grid-column: 1 / -1;
    }

    .circle {
        grid-template-columns: minmax(320px, 0.7fr) 1fr;
    }
}

@media (max-width: 900px) {
    html {
        scroll-padding-top: 74px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 135px;
    }

    .hero-copy {
        max-width: 700px;
    }

    .hero-visual {
        width: 100%;
        min-height: 680px;
    }

    .hero-photo {
        inset: 0 4% 0;
    }

    .sun-disc {
        top: -8%;
    }

    .intro-heading,
    .section-heading-row,
    .purpose,
    .day-heading,
    .circle,
    .join-grid,
    .faq {
        grid-template-columns: minmax(0, 1fr);
    }

    .intro-copy,
    .section-heading-row > p {
        max-width: 650px;
        margin-left: 0;
    }

    .photo-constellation {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .constellation-quote {
        display: none;
    }

    .photo-round {
        transform: translateY(70px);
    }

    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .welcome-grid article,
    .welcome-grid article + article {
        min-height: 0;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 253, 247, 0.24);
    }

    .welcome-grid article:last-child {
        border: 0;
    }

    .welcome-grid h3 {
        margin-top: 20px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .card-large,
    .card-wide,
    .experience-card {
        min-height: 600px;
        margin-top: 0;
    }

    .purpose-image {
        height: 650px;
    }

    .purpose-sticker {
        right: 15px;
    }

    .circle-illustration {
        max-width: 500px;
        margin-inline: auto;
    }

    .join-copy {
        max-width: 780px;
    }

    .form-card {
        max-width: 660px;
    }

    .faq-heading {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-inner > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 620px) {
    .section-shell {
        width: min(100% - 30px, 1440px);
    }

    .site-header,
    .site-header.is-sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 72px;
        padding: 0 15px;
        border: 0;
        border-bottom: 1px solid rgba(255, 253, 247, 0.18);
        border-radius: 0;
        background: var(--sea-deep);
        box-shadow: 0 8px 24px rgba(7, 34, 31, 0.16);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        transform: none;
    }

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

    .brand span {
        display: none;
    }

    .header-cta {
        position: static;
        min-height: 46px;
        padding-inline: 17px;
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 108px 15px 48px;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(56px, 15.5vw, 66px);
        line-height: 0.94;
        letter-spacing: -0.065em;
        hyphens: none;
    }

    h2,
    .belonging h2,
    .join-copy h2 {
        max-width: 100%;
        font-size: clamp(49px, 13.4vw, 58px);
        line-height: 1;
        letter-spacing: -0.06em;
        hyphens: none;
    }

    .hero-community {
        display: block;
    }

    .eyebrow,
    .section-kicker {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .hero-lead {
        margin-bottom: 27px;
        font-size: 16px;
        line-height: 1.58;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .primary-button {
        width: 100%;
        min-height: 56px;
    }

    .text-link {
        min-height: 44px;
    }

    .hero-notes {
        gap: 6px;
    }

    .hero-notes span {
        font-size: 16px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-photo {
        right: 0;
        left: 0;
        border-radius: 46% 46% 8px 8px / 20% 20% 8px 8px;
    }

    .date-stamp {
        left: -7px;
        width: 150px;
        padding: 16px;
    }

    .date-stamp strong {
        font-size: 27px;
    }

    .photo-note {
        right: -6px;
        bottom: 15%;
        padding: 12px 13px;
        font-size: 15px;
    }

    .marquee-group {
        gap: 12px;
        padding: 13px 12px 13px 0;
    }

    /* Στα κινητά το "Κράτησε θέση" ζει στην κορδέλα κάτω, οπότε φεύγει από το hero. */
    .hero-actions .text-link {
        display: none;
    }

    /* Πιο έντονη κλίση στα κινητά: η σφήνα δεξιά κάτω είναι ανάλογη του πλάτους,
       οπότε σε στενή οθόνη χρειάζεται μεγαλύτερη γωνία για να φανεί. */
    .ribbon-bar {
        transform: rotate(-2.8deg);
    }

    .ribbon-cta {
        /* 1/3 της οθόνης· η κορδέλα ξεφεύγει 5vw δεξιά, γι' αυτό το margin-right */
        flex: 0 0 33.33vw;
        justify-content: center;
        gap: 5px;
        padding-inline: 4px;
        font-size: 14px;
    }

    .ribbon-cta strong {
        display: none;
    }

    .moving-ribbon span {
        font-size: 14px;
    }

    :root {
        --ribbon-h: 55px;
    }

    .intro,
    .experiences,
    .circle,
    .faq {
        padding-block: 88px;
    }

    .intro-heading {
        gap: 30px;
    }

    .intro-heading h2 {
        font-size: clamp(47px, 12.8vw, 55px);
        overflow-wrap: normal;
    }

    .photo-constellation {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .photo-tall {
        height: 440px;
    }

    .photo-round {
        display: none;
    }

    .facts-row {
        grid-template-columns: 1fr;
        margin-top: 50px;
        grid-auto-rows: 1fr;
    }

    .facts-row article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 26px 0 22px;
        text-align: center;
    }

    .belonging-inner {
        padding-block: 90px;
    }

    .belonging-lead {
        margin: 35px 0 55px;
        font-size: 17px;
    }

    .section-heading-row {
        gap: 30px;
        margin-bottom: 50px;
    }

    .experience-card,
    .card-large,
    .card-wide {
        min-height: 430px;
        border-radius: 10px 10px 24% 10px / 10px 10px 15% 10px;
    }

    .card-content {
        padding: 26px;
    }

    .card-content h3 {
        font-size: 37px;
    }

    .purpose {
        gap: 58px;
        padding-bottom: 92px;
    }

    .purpose-image {
        height: 450px;
    }

    .purpose-sticker {
        right: -5px;
        bottom: 35px;
        width: 115px;
        font-size: 18px;
    }

    .day-flow,
    .join {
        padding-block: 90px;
    }

    .day-heading {
        gap: 35px;
        margin-bottom: 55px;
    }

    .timeline article {
        grid-template-columns: 95px 1fr;
    }

    .timeline time {
        font-size: 29px;
    }

    .timeline h3 {
        font-size: 24px;
    }

    .event-card {
        grid-template-columns: 1fr 1fr;
        padding: 22px;
    }

    .event-card strong {
        font-size: 21px;
    }

    .circle {
        gap: 65px;
    }

    .circle-illustration {
        max-width: 340px;
    }

    .join-grid {
        gap: 65px;
    }

    .form-card {
        padding: 38px 22px 28px;
        border-radius: 34% 34% 14px 14px / 8% 8% 14px 14px;
    }

    .field-pair {
        grid-template-columns: 1fr;
    }

    .form-success {
        min-height: 330px;
    }

    .faq {
        gap: 55px;
    }

    .faq-list summary {
        min-height: 76px;
        padding-block: 20px;
        font-size: 20px;
        line-height: 1.28;
    }

    .faq-list summary span {
        flex-basis: 42px;
        width: 42px;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
    }

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

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .circle-illustration {
        --circle-orbit-rotate: 0deg !important;
    }
}
