:root {
    --brand-orange: #fc721a;
    --brand-orange-soft: #fdae7c;
    --brand-brown: #823401;
    --brand-brown-strong: #973c01;
    --brand-dark: #000000;
    --brand-cream: #fff8f4;
    --brand-surface: #fffdfb;
    --brand-surface-strong: #fff3ea;
    --brand-text: #2a1508;
    --brand-muted: #765847;
    --brand-panel: rgba(255, 255, 255, 0.82);
    --brand-panel-border: rgba(252, 114, 26, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(252, 114, 26, 0.15), transparent 28%),
        linear-gradient(180deg, #fffaf7 0%, #fff4ec 34%, #fffdfb 100%);
    color: var(--brand-text);
    font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand-shell {
    position: relative;
    overflow: hidden;
}

.brand-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
        radial-gradient(circle at right top, rgba(253, 174, 124, 0.2), transparent 34%);
    pointer-events: none;
}

.hero-bottom-fade::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 240px;
    background: linear-gradient(
        180deg,
        rgba(252, 114, 26, 0) 0%,
        rgba(130, 52, 1, 0.16) 30%,
        rgba(253, 174, 124, 0.24) 58%,
        rgba(255, 243, 234, 0.9) 82%,
        #fffaf7 100%
    );
    pointer-events: none;
    z-index: 1;
}

.brand-panel {
    background: var(--brand-panel);
    border: 1px solid var(--brand-panel-border);
    box-shadow: 0 24px 60px rgba(130, 52, 1, 0.08);
    backdrop-filter: blur(18px);
}

.brand-outline {
    position: relative;
}

.brand-outline::after {
    content: "";
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(252, 114, 26, 0.7), transparent);
}

.brand-button {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-soft));
    color: #111111;
    box-shadow: 0 16px 30px rgba(252, 114, 26, 0.3);
}

.brand-hover {
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
}

.brand-hover:hover {
    transform: translateY(-6px);
    border-color: rgba(252, 114, 26, 0.35);
    box-shadow: 0 28px 60px rgba(130, 52, 1, 0.14);
}

.contact-method-option {
    border: 1px solid rgba(252, 114, 26, 0.18);
    background: #fff7f1;
    color: var(--brand-text);
    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.contact-method-option:hover {
    border-color: rgba(252, 114, 26, 0.35);
}

.contact-method-option.is-active {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-soft));
    border-color: rgba(252, 114, 26, 0.55);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(252, 114, 26, 0.22);
}

.portfolio-track {
    scrollbar-width: none;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
}

.portfolio-track::-webkit-scrollbar {
    display: none;
}

.portfolio-track.is-jumping {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}
