:root {
    --bg: #f3f1eb;
    --bg-deep: #1e2321;
    --surface: rgba(251, 249, 245, 0.86);
    --text: #222522;
    --text-soft: #616662;
    --line: rgba(53, 59, 55, 0.11);
    --accent: #ab7647;
    --accent-dark: #7e5532;
    --shadow: 0 18px 40px rgba(24, 31, 27, 0.11);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 18px;
    --container: min(1220px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(182, 123, 71, 0.12), transparent 32%),
        radial-gradient(circle at right 20%, rgba(78, 92, 84, 0.1), transparent 26%),
        linear-gradient(180deg, #f8f7f3 0%, #f3f1eb 46%, #eee9df 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
    opacity: 0.2;
}

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

.site-shell {
    position: relative;
    overflow: clip;
}

.hero {
    width: var(--container);
    margin: 14px auto 0;
    min-height: auto;
    padding: 10px 0 52px;
}

.topbar {
    position: sticky;
    top: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(27, 22, 18, 0.78);
    color: #f7f1ea;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(17, 11, 8, 0.16);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 74px;
    height: 58px;
    padding: 0;
    border-radius: 12px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.brand-title {
    display: grid;
    gap: 2px;
}

.brand-title strong {
    font-family: "Fraunces", serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #f7f1ea;
    line-height: 1;
}

.brand-title small {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 241, 234, 0.72);
    line-height: 1.1;
}

.nav-links a,
.eyebrow,
.panel-label,
.product-index,
.timeline-item span {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    position: relative;
    font-size: 0.83rem;
    font-weight: 700;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

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

.deger-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.deger-list li+li {
    margin-top: 0.35rem;
}

.quick-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.54);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: start;
    padding-top: 28px;
}

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

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    line-height: 0.98;
}

h1 {
    max-width: 10.5ch;
    font-size: clamp(2.3rem, 5.2vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.008em;
    line-height: 1.02;
}

h2 {
    font-size: clamp(1.75rem, 3.1vw, 2.7rem);
    font-weight: 560;
    letter-spacing: -0.004em;
    line-height: 1.08;
}

h3 {
    font-size: 1.28rem;
    font-weight: 560;
    line-height: 1.16;
}

.lead,
.intro-grid p,
.product-card p,
.capability p,
.timeline-item p,
.contact-card p,
.loom-card p,
.swatch p,
.hero-stats dd {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.68;
}

.lead {
    max-width: 60ch;
    margin: 14px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 31, 27, 0.16);
}

.button-primary {
    background: var(--bg-deep);
    color: #f6efe8;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #2b312e;
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.45);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(182, 123, 71, 0.5);
    background: rgba(255, 255, 255, 0.72);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 0;
}

.hero-stats div,
.panel,
.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-stats div {
    padding: 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 250, 245, 0.68);
}

.hero-stats dt {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stats dd {
    margin: 8px 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.panel {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 58%);
    pointer-events: none;
}

.panel-large {
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.panel-large::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 22px;
    background:
        linear-gradient(140deg, rgba(12, 10, 9, 0.74), rgba(12, 10, 9, 0.34)),
        url("https://images.unsplash.com/photo-1654111069497-dfd4afcff006?q=80&w=1740&auto=format&fit=crop") center/cover,
        radial-gradient(circle at 20% 20%, rgba(199, 109, 58, 0.48), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(255, 227, 193, 0.95), transparent 20%),
        linear-gradient(140deg, #1b1512, #52362a 48%, #d39866 100%);
    z-index: -1;
}

.panel-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 246, 238, 0.14);
    color: #fbf4ef;
    font-size: 0.7rem;
    font-weight: 800;
}

.panel-large h2,
.panel-large p {
    color: #fbf4ef;
    max-width: 20ch;
}

.panel-large p {
    margin-top: 12px;
}

.swatch-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.swatch {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.swatch:hover,
.swatch:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(24, 31, 27, 0.2);
}

.swatch span,
.product-index {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--accent-dark);
    font-size: 0.74rem;
    font-weight: 800;
}

.swatch strong {
    font-size: 1.02rem;
}

.swatch-cinnamon {
    background:
        linear-gradient(165deg, rgba(255, 238, 230, 0.74), rgba(222, 156, 119, 0.62)),
        url("https://images.unsplash.com/photo-1675176785803-bffbbb0cd2f4?q=80&w=1740&auto=format&fit=crop") center/cover;
}

.swatch-sand {
    background:
        linear-gradient(165deg, rgba(255, 246, 234, 0.78), rgba(216, 193, 162, 0.72)),
        url("https://images.unsplash.com/photo-1758269445774-61a540a290a6?q=80&w=1750&auto=format&fit=crop") center/cover;
}

.swatch-graphite {
    color: #fbf4ef;
    background:
        linear-gradient(165deg, rgba(30, 23, 20, 0.88), rgba(68, 45, 33, 0.9)),
        url("https://images.unsplash.com/photo-1742281695025-d6bf76d6e743?q=80&w=1740&auto=format&fit=crop") center/cover;
}

.swatch-graphite span,
.swatch-graphite p {
    color: rgba(251, 244, 239, 0.78);
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: 62px 0 98px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 34px;
}

.intro {
    padding-top: 18px;
}

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

.product-grid,
.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.capability {
    min-height: 260px;
}

.product-card h3,
.capability h3 {
    margin-bottom: 16px;
}

.machine-gallery {
    padding-top: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    background: rgba(255, 249, 244, 0.7);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card figcaption {
    padding: 12px 14px 14px;
    font-size: 0.93rem;
    color: var(--text-soft);
    transition: color 220ms ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 20px 34px rgba(24, 31, 27, 0.22);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
    transform: scale(1.04);
    filter: saturate(1.12) contrast(1.05);
}

.gallery-card:hover figcaption,
.gallery-card:focus-within figcaption {
    color: #3f453f;
}

.parkur-section {
    padding-top: 4px;
}

.parkur-table-wrap {
    border-radius: var(--radius-lg);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    background: rgba(28, 34, 31, 0.95);
}

.parkur-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
    color: #f4f5f2;
}

.parkur-table thead th {
    text-align: left;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d8c4b0;
    background: rgba(182, 123, 71, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.parkur-table th,
.parkur-table td {
    padding: 0.8rem 0.9rem;
    white-space: nowrap;
}

.parkur-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.parkur-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.parkur-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background: rgba(255, 249, 244, 0.74);
    box-shadow: var(--shadow);
}

.timeline-item span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--bg-deep), #694432);
    color: #fbf4ef;
    font-weight: 800;
}

.timeline-item h3 {
    margin-bottom: 10px;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 26px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(199, 109, 58, 0.22), transparent 24%),
        rgba(24, 19, 16, 0.9);
    color: #f8f1eb;
}

.contact-card .eyebrow,
.contact-card p,
.contact-details p {
    color: rgba(248, 241, 235, 0.74);
}

.contact-details {
    display: grid;
    gap: 10px;
    align-content: start;
}

.contact-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.contact-brand {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(243, 199, 156, 0.28);
    background: rgba(243, 199, 156, 0.1);
}

.contact-brand-logo {
    width: 58px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.95);
}

.contact-brand-text {
    display: grid;
    gap: 2px;
}

.contact-brand-text strong {
    font-family: "Fraunces", serif;
    font-size: 1.03rem;
    line-height: 1;
    color: #fff6ed;
}

.contact-brand-text small {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 241, 235, 0.68);
}

.contact-details .email-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 241, 235, 0.64);
}

.contact-details a {
    font-size: 1.08rem;
    font-weight: 700;
}

.contact-details .contact-email {
    width: fit-content;
    padding: 0.66rem 0.96rem;
    border-radius: 12px;
    border: 1px solid rgba(243, 199, 156, 0.55);
    background: rgba(243, 199, 156, 0.14);
    color: #fff8f0;
    font-size: 1.1rem;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.contact-details .contact-email:hover,
.contact-details .contact-email:focus-visible {
    border-color: rgba(243, 199, 156, 0.85);
    background: rgba(243, 199, 156, 0.24);
}

.contact-map {
    margin-top: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 190px;
    border: 0;
    filter: saturate(0.88) contrast(1.04);
}

.footer {
    width: var(--container);
    margin: 0 auto;
    padding: 0 0 48px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-soft);
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
    transition-delay: 120ms;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {

    .hero-grid,
    .contact-card,
    .product-grid,
    .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kurumsal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swatch-column {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .topbar {
        padding: 12px 16px;
        border-radius: 22px;
    }

}

@media (max-width: 820px) {
    .hero {
        width: min(100vw - 24px, 1180px);
        margin-top: 12px;
        padding-bottom: 32px;
    }

    .topbar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 28px;
        gap: 10px;
        padding: 12px;
    }

    .brand {
        justify-content: center;
    }

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

    .nav-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.06);
        font-size: 0.79rem;
    }

    .hero-grid {
        gap: 20px;
        padding-top: 18px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-grid,
    .intro-grid,
    .kurumsal-grid,
    .contact-card,
    .footer,
    .product-grid,
    .capability-grid,
    .swatch-column,
    .gallery-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .quick-tags {
        gap: 0.5rem;
    }

    h1 {
        max-width: 13ch;
        font-size: clamp(2rem, 8.2vw, 2.7rem);
        line-height: 1.06;
    }

    h2 {
        font-size: clamp(1.45rem, 5.4vw, 1.95rem);
        line-height: 1.14;
    }

    .lead {
        margin-top: 12px;
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .hero-actions {
        margin-top: 16px;
        gap: 10px;
    }

    .button {
        min-height: 46px;
        padding: 0 18px;
        font-size: 0.84rem;
    }

    .panel-large {
        min-height: 258px;
    }

    .swatch {
        min-height: 196px;
    }

    .section {
        padding: 44px 0 66px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .parkur-table {
        min-width: 760px;
    }

    .timeline-item {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding-bottom: 40px;
    }

    .brand-logo {
        width: 62px;
        height: 46px;
        border-radius: 10px;
    }

    .brand-title strong {
        font-size: 1rem;
    }

    .brand-title small {
        display: none;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100vw - 24px, 1180px);
    }

    .hero {
        padding-bottom: 24px;
    }

    .topbar {
        border-radius: 22px;
        top: 10px;
    }

    .brand {
        justify-content: flex-start;
        gap: 8px;
    }

    .panel,
    .contact-card,
    .timeline-item,
    .hero-stats div {
        padding: 18px;
    }

    h1 {
        font-size: 1.94rem;
        line-height: 1.08;
    }

    h2 {
        font-size: 1.42rem;
        line-height: 1.15;
    }

    .hero-grid {
        gap: 16px;
        padding-top: 14px;
    }

    .hero-actions {
        margin-top: 14px;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        margin-top: 14px;
        gap: 8px;
    }

    .hero-stats dt {
        font-size: 0.7rem;
    }

    .hero-stats dd {
        font-size: 0.88rem;
    }

    .panel-large {
        min-height: 228px;
    }

    .swatch {
        min-height: 172px;
    }

    .section {
        padding: 36px 0 52px;
    }

    .parkur-table {
        min-width: 680px;
    }

    .parkur-table th,
    .parkur-table td {
        padding: 0.64rem 0.7rem;
        font-size: 0.85rem;
    }

    .contact-map iframe {
        height: 180px;
    }

    .footer {
        padding-bottom: 30px;
    }
}