﻿

@import url('assets/fonts/fonts.css');

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('assets/icons/MaterialIcons-Regular.woff2') format('woff2');
}
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    text-transform: none;
    letter-spacing: normal;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'liga';
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink:         #0c0a08;
    --ink-soft:    #1a1714;
    --cream:       #f5f0e8;
    --cream-dim:   #ede7d9;
    --gold:        #b8914a;
    --gold-bright: #d4a85a;
    --gold-dim:    rgba(184,145,74,0.12);
    --gold-line:   rgba(184,145,74,0.3);
    --text-dark:   #0c0a08;
    --text-muted-dark: #5a5550;
    --text-light:  #f0ebe1;
    --text-muted-light: #9a9088;
    --border-dark: rgba(255,255,255,0.07);
    --border-cream: rgba(12,10,8,0.1);
    --ff-display:  'Playfair Display', Georgia, serif;
    --ff-body:     'Instrument Sans', system-ui, sans-serif;
    --ease-out:    cubic-bezier(0.16,1,0.3,1);
    --max:         1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-body);
    background: var(--ink);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}



/* HEADER */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled .header-inner {
    background: rgba(12,10,8,0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.brand-title {
    font-family: var(--ff-body);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.brand-name {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.25s;
}

.main-nav a .material-icons { font-size: 0.9rem; }

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active { color: var(--text-light); }

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger-menu .line {
    width: 22px; height: 1.5px;
    background: var(--text-light);
    border-radius: 999px;
    transition: 0.3s;
}

/*HERO*/
.hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-text-panel {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10rem 4rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-clock-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(184,145,74,0.06);
    pointer-events: none;
    z-index: 0;
}

.hero-clock-deco::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(184,145,74,0.04);
}

.hero-clock-deco::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(184,145,74,0.03);
}

.clock-ticks {
    position: absolute;
    inset: 0;
    animation: slow-rotate 80s linear infinite;
}

@keyframes slow-rotate { to { transform: rotate(360deg); } }

.clock-ticks span {
    position: absolute;
    top: 50%; left: 50%;
    width: 1px;
    background: var(--gold);
    transform-origin: top center;
    opacity: 0.25;
}

.hero-eyebrow {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.hero-eyebrow::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--ff-display);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.hero-headline .line-1 {
    display: block;
    font-size: clamp(4.5rem, 7vw, 8rem);
    color: var(--text-light);
}

.hero-headline .line-2 {
    display: block;
    font-size: clamp(4.5rem, 7vw, 8rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    font-style: italic;
}

.hero-headline .line-3 {
    display: block;
    font-size: clamp(1.8rem, 2.8vw, 3.2rem);
    color: var(--text-muted-light);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    margin-top: 0.6rem;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2rem;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, gap 0.25s;
    cursor: pointer;
}

.hero-cta:hover { background: var(--gold-bright); gap: 1rem; }
.hero-cta .arrow { font-size: 1rem; }

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted-light);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-scroll-line {
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse-line 2s ease infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-image-panel {
    position: relative;
    overflow: hidden;
}

.hero-image-panel img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.7) brightness(0.75);
    transform: scale(1.06);
    transition: transform 12s ease;
}

.hero-image-panel:hover img { transform: scale(1.0); }

.hero-image-panel::before {
    content: '';
    position: absolute;
    top: 0; left: -1px; bottom: 0;
    width: 80px;
    background: var(--ink);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.hero-image-panel::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 38px; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    z-index: 3;
    opacity: 0.6;
}

.hero-year {
    position: absolute;
    bottom: 2.5rem; right: 2.5rem;
    z-index: 4;
    text-align: right;
}

.hero-year-number {
    font-family: var(--ff-display);
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(184,145,74,0.35);
    line-height: 1;
}

.hero-year-label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

/*PHILOSOPHY STRIP */
.philosophy-strip {
    background: var(--cream);
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
}

.philosophy-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.philosophy-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-mark {
    font-family: var(--ff-display);
    font-size: 12rem;
    line-height: 0.8;
    color: var(--gold);
    opacity: 0.2;
    font-weight: 900;
    user-select: none;
    flex-shrink: 0;
}

.philosophy-quote {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 2.5vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.4;
}

.philosophy-attr {
    margin-top: 1.2rem;
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.philosophy-attr::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
}

/* SERVICES */
.services-section {
    background: var(--cream);
    padding: 5rem 0 6rem;
}

.services-heading {
    max-width: var(--max);
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-cream);
    padding-bottom: 1.5rem;
}

.services-heading h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.services-heading h2 em { font-style: italic; color: var(--gold); }

.services-count {
    font-family: var(--ff-display);
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-cream);
    line-height: 1;
    user-select: none;
}

.service-row {
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 60px 1fr 2.5fr auto;
    align-items: start;
    gap: 2rem;
    border-bottom: 1px solid var(--border-cream);
    transition: background 0.25s;
    cursor: default;
}

.service-row:hover { background: rgba(184,145,74,0.04); }

.service-num {
    font-family: var(--ff-display);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.7;
    padding-top: 0.4rem;
}

.service-title {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.service-desc {
    font-family: var(--ff-body);
    font-size: 0.88rem;
    color: var(--text-muted-dark);
    line-height: 1.75;
    max-width: 36rem;
}

.service-icon-lg {
    width: 48px; height: 48px;
    border: 1px solid var(--border-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}

.service-row:hover .service-icon-lg {
    background: var(--gold);
    color: var(--cream);
    border-color: var(--gold);
}

.service-icon-lg .material-icons { font-size: 1.3rem; }

/* PROJECTS */
.projects-section {
    background: var(--ink-soft);
    padding: 6rem 0;
}

.projects-header {
    max-width: var(--max);
    margin: 0 auto 3rem;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.projects-header h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-light);
}

.projects-header h2 em {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}

.projects-header p {
    max-width: 26rem;
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    text-align: right;
}

.project-grid-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    cursor: default;
}

.project-card:first-child { grid-row: 1 / 3; }

.project-img-wrap {
    width: 100%; height: 100%;
    min-height: 300px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project-card:first-child .project-img-wrap { min-height: 600px; }

.project-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: filter 0.6s ease, transform 0.7s var(--ease-out);
}

.project-card:hover .project-img-wrap img {
    filter: grayscale(0%) brightness(0.85);
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,10,8,0.95) 0%, rgba(12,10,8,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s;
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(12,10,8,0.98) 0%, rgba(12,10,8,0.3) 60%, transparent 100%);
}

.project-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.project-overlay h3 {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.project-card:first-child .project-overlay h3 { font-size: 1.9rem; }

.project-overlay p {
    font-size: 0.82rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    max-width: 28rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}

.project-card:hover .project-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ABOUT */
.about-section {
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.about-image-col {
    position: relative;
    overflow: hidden;
}

.about-image-col img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(20%) brightness(0.65);
    transition: filter 0.6s;
}

.about-image-col:hover img { filter: grayscale(0%) brightness(0.75); }

.about-image-col::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 80px;
    background: var(--ink);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.about-image-col::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 38px; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    z-index: 3;
    opacity: 0.6;
}

.about-text-col {
    padding: 6rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.about-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.about-text-col h2 {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.05;
}

.about-text-col h2 em { font-style: italic; color: var(--gold); }

.about-text-col .lead {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted-light);
    line-height: 1.6;
}

.about-cards-stack { display: flex; flex-direction: column; gap: 1px; }

.about-card {
    padding: 1.2rem 0;
    border-top: 1px solid var(--border-dark);
}

.about-card:last-child { border-bottom: 1px solid var(--border-dark); }

.about-card h4 {
    font-family: var(--ff-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    line-height: 1.7;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: gap 0.25s;
    cursor: pointer;
}

.about-link:hover { gap: 1rem; }

/* CONTACT */
.contact-section {
    background: var(--cream);
    padding: 6rem 0;
}

.contact-grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-left h2 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.contact-left h2 em { font-style: italic; color: var(--gold); }

.contact-left p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 24rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }

.cd-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cd-icon .material-icons { font-size: 1rem; }

.cd-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-weight: 500;
    display: block;
}

.cd-value {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.5;
    display: block;
    transition: color 0.2s;
}

.cd-value:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
}

.form-field input,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-cream);
    padding: 0.6rem 0;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s;
    resize: none;
    border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(12,10,8,0.25); }

.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.checkbox-field { margin-top: 0.5rem; }

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.78rem;
    color: var(--text-muted-dark);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-field label span {
    display: block;
    flex: 1;
}

.checkbox-field input[type="checkbox"] {
    width: 14px; height: 14px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkbox-field a { color: var(--gold); text-decoration: none; }
.checkbox-field a:hover { text-decoration: underline; }

/* FOOTER */
.site-footer {
    background: var(--ink);
    border-top: 1px solid var(--border-dark);
    padding: 2.5rem 0;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted-light);
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted-light);
    opacity: 0.5;
}

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.footer-links a {
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

/* LEGAL PAGES */
.legal-page {
    min-height: 100svh;
    background: var(--cream);
    padding: 9rem 2rem 5rem;
}

.legal-inner { max-width: 700px; margin: 0 auto; }

.legal-inner h1 {
    font-family: var(--ff-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.legal-inner h2 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 2rem 0 0.5rem;
}

.legal-inner p, .legal-inner li {
    font-size: 0.88rem;
    color: var(--text-muted-dark);
    line-height: 1.75;
}

.legal-inner ul { margin-left: 1.2rem; }
.legal-inner a { color: var(--gold); }

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* RESPONSIVE — 900px (Tablet) */
@media (max-width: 900px) {
    /* Hero */
    .hero { grid-template-columns: 1fr; min-height: 100svh; }
    .hero-image-panel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .hero-image-panel::before,
    .hero-image-panel::after { display: none; }
    .hero-image-panel img { filter: saturate(0.5) brightness(0.3); transform: none; }
    .hero-text-panel {
        position: relative;
        z-index: 2;
        padding: 8rem 1.5rem 4rem;
        background: transparent;
    }
    .hero-clock-deco {
        display: block;
        width: 280px;
        height: 280px;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.7;
    }
    .hero-year { display: none; }

    /* Philosophy */
    .philosophy-inner { grid-template-columns: 1fr; gap: 0; }
    .philosophy-mark { font-size: 5rem; }

    /* Services */
    .services-heading { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .services-count { display: none; }
    .service-row { grid-template-columns: 40px 1fr; gap: 1rem 1.5rem; }
    .service-desc { grid-column: 2; }
    .service-icon-lg { display: none; }

    /* Projects */
    .projects-header { flex-direction: column; }
    .projects-header p { text-align: left; }
    .project-grid-wrap { grid-template-columns: 1fr; }
    .project-card:first-child { grid-row: auto; }
    .project-img-wrap { min-height: 260px !important; }

    /* About — Profilbild vollständig sichtbar auf Mobile */
    .about-section {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .about-image-col {
        position: relative;
        height: auto;
        max-height: unset;
        overflow: visible;
    }
    .about-image-col img {
        position: static;
        width: 100%;
        height: auto;
        max-height: unset;
        object-fit: unset;
        display: block;
        filter: grayscale(15%) brightness(0.85);
    }
    .about-image-col::before,
    .about-image-col::after { display: none; }
    .about-text-col { padding: 3rem 1.5rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-links { justify-content: center; }

    /* Nav */
    .main-nav a { padding: 0.5rem 0.6rem; font-size: 0.68rem; }
    .main-nav a .material-icons { display: none; }
    .burger-menu { display: none; }
}

/* RESPONSIVE — 600px (Mobile) */
@media (max-width: 600px) {
    .header-inner { padding: 1rem 1.2rem; }

    /* Nav ausblenden, Burger zeigen */
    .main-nav { display: none; }
    .burger-menu { display: flex; }

    .main-nav.mobile-open { display: block; }
    .main-nav.mobile-open ul {
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--ink);
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        justify-content: center;
        align-items: flex-start;
        z-index: 190;
    }
    .main-nav.mobile-open a {
        font-size: 1.5rem;
        font-family: var(--ff-display);
        letter-spacing: 0;
        text-transform: none;
        padding: 0.75rem 0;
        color: var(--text-light);
    }
    .main-nav.mobile-open a .material-icons { display: inline-block; font-size: 1.2rem; }

    .contact-section { padding: 4rem 0; }
    .projects-section { padding: 4rem 0; }
    .services-section { padding: 3rem 0 4rem; }
    .about-text-col { padding: 2rem 1.2rem; }

    /* Profilbild auf kleinen Screens: leicht abgedunkelt, volle Breite */
    .about-image-col img {
        filter: grayscale(10%) brightness(0.8);
    }
}
