:root {
    --bg: #fbfbfd;
    --surface: #ffffff;
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --muted-2: #86868b;
    --line: rgba(0, 0, 0, 0.06);
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --gold: #b8860b;
    --radius: 18px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
    --header-h: 52px;
}

html { scroll-behavior: smooth; }

.cece-body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.cece-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

/* —— Header —— */
.cece-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
}

.cece-header__bar {
    max-width: 1068px;
    margin: 0 auto;
    height: var(--header-h);
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cece-logo-text {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}

.cece-logo-text:hover { text-decoration: none; opacity: 0.8; }

.cece-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.cece-nav a {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted-2);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s;
}

.cece-nav a:hover {
    color: var(--ink);
    text-decoration: none;
}

.cece-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cece-lang-select {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 10px;
    border: 1px solid var(--line);
    border-radius: 980px;
    background: var(--surface);
    color: var(--ink);
}

.cece-lang-select svg { color: var(--muted-2); flex-shrink: 0; }

.cece-lang-select select {
    border: none;
    background: transparent;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    padding: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.cece-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cece-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
}

/* Buttons */
.cece-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.17648;
    letter-spacing: -0.022em;
    padding: 12px 22px;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cece-btn:hover { text-decoration: none; }

.cece-btn--blue {
    background: var(--blue);
    color: #fff;
}

.cece-btn--blue:hover { background: var(--blue-hover); }

.cece-btn--sm {
    font-size: 12px;
    padding: 8px 16px;
}

.cece-btn--link {
    background: transparent;
    color: var(--blue);
    padding: 12px 18px;
}

.cece-btn--link:hover { text-decoration: underline; }

/* —— Hero —— */
.cece-hero {
    padding: 48px 0 72px;
}

.cece-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cece-kicker {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
}

.cece-display {
    font-size: clamp(40px, 5.5vw, 56px);
    font-weight: 600;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    margin: 0 0 16px;
}

.cece-subhead {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 28em;
}

.cece-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

.cece-metrics {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
}

.cece-metrics dt {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

.cece-metrics dd {
    font-size: 12px;
    color: var(--muted-2);
    margin: 4px 0 0;
}

.cece-hero__media {
    position: relative;
}

.cece-hero__frame {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    background: #e8e8ed;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cece-hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
}

.cece-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.cece-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* —— Sections —— */
.cece-band {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cece-section {
    padding: 80px 0;
}

.cece-section-head {
    margin-bottom: 48px;
    max-width: 640px;
}

.cece-section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cece-title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0 0 8px;
}

.cece-lead {
    font-size: 21px;
    line-height: 1.381;
    color: var(--muted);
    margin: 0;
}

.cece-muted { color: var(--muted); font-size: 17px; }

/* About */
.cece-about {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.cece-about__card {
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.cece-about__card h3 {
    margin: 0 0 4px;
    font-size: 21px;
    font-weight: 600;
}

.cece-about__role {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.cece-about__meta {
    margin: 0 0 12px;
    font-size: 12px;
    color: var(--muted-2);
}

.cece-about__ig {
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
}

.cece-pill-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cece-pill-list li {
    padding: 14px 16px;
    background: var(--bg);
    border-radius: 12px;
}

.cece-pill-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.cece-pill-list span {
    font-size: 12px;
    color: var(--muted-2);
}

.cece-prose p {
    margin: 0 0 1.2em;
    color: var(--ink);
    font-size: 17px;
}

.cece-pullquote {
    margin: 32px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    font-size: 21px;
    line-height: 1.381;
    font-weight: 500;
    letter-spacing: 0.011em;
    color: var(--muted);
}

/* Steps */
.cece-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cece-step-card {
    padding: 32px 24px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.cece-step-card__n {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cece-step-card h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 600;
}

.cece-step-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
}

/* Tours */
.cece-tours {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cece-tour {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line);
    transition: transform 0.25s, box-shadow 0.25s;
}

.cece-tour:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.cece-tour img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.cece-tour__ph {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8ed;
    color: var(--muted-2);
    font-size: 2rem;
}

.cece-tour__body { padding: 20px 22px 24px; }

.cece-tour h3 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 600;
}

.cece-tour p {
    margin: 0;
    font-size: 14px;
    color: var(--muted-2);
}

.cece-contact p { margin: 0 0 8px; }

/* Footer */
.cece-footer {
    padding: 40px 0 48px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.cece-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cece-footer__logo {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.cece-footer__tag {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--muted-2);
}

.cece-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cece-footer__nav a {
    font-size: 12px;
    color: var(--muted-2);
    text-decoration: none;
}

.cece-footer__nav a:hover { color: var(--ink); text-decoration: underline; }

.cece-footer__copy {
    width: 100%;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted-2);
}

/* Mobile */
@media (max-width: 900px) {
    .cece-hero__layout { grid-template-columns: 1fr; gap: 32px; }
    .cece-hero__media { order: -1; }
    .cece-hero__frame { max-height: 380px; aspect-ratio: 1; }
    .cece-hero__frame img { object-position: center 8%; }
    .cece-about { grid-template-columns: 1fr; }
    .cece-steps { grid-template-columns: 1fr; }
    .cece-subhead { font-size: 19px; }
}

@media (max-width: 734px) {
    .cece-nav-toggle { display: flex; }

    .cece-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(251, 251, 253, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px 22px 24px;
        border-bottom: 1px solid var(--line);
        align-items: stretch;
    }

    .cece-nav.is-open { display: flex; }

    .cece-nav a {
        font-size: 17px;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
    }

    .cece-header__actions .cece-btn--sm { display: none; }

    .cece-metrics { gap: 24px; flex-wrap: wrap; }

    .cece-display { font-size: 40px; }
}
