:root {
    --bg: #171717;
    --bg-alt: #f5f5f7;
    --text: white;
    --dark-text: #171717;
    --muted: #b9b9b9;
    --accent: #dec699;
    --border: #e0e0e6;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition-fast: 0.2s ease;
    --max-width: 70vw;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 300;
  src: url(/designer_site_v3/static/fonts/gothampro_light.woff) format("woff"),
    url(/designer_site_v3/static/fonts/gothampro_light.ttf) format("truetype");
}

@font-face {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 400;
  src: url(/designer_site_v3/static/fonts/gothampro.woff) format("woff"),
    url(/designer_site_v3/static/fonts/gothampro.ttf) format("truetype");
}

@font-face {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 700;
  src: url(/designer_site_v3/static/fonts/gothampro_bold.woff) format("woff"),
    url(/designer_site_v3/static/fonts/gothampro_bold.ttf) format("truetype");
}

@font-face {
  font-family: "Defectica";
  font-style: normal;
  font-weight: 400;
  src: url(/designer_site_v3/static/fonts/Defectica.ttf) format("truetype");
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Gotham Pro';
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    overflow-x: hidden;
    /* background: url(/designer_site_v3/static/img/bg.png); */
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}

/* Header */

.header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 20;
    background: black;
    backdrop-filter: blur(18px);
    /* border-bottom: 3px solid rgba(41, 41, 41, 0.4); */
    padding: 30px 0 25px;
}


.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    row-gap: 30px;
}

.logo {
    /* font-family: "Playfair Display", serif; */
    font-size: 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-text);
}

.logo span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
    width: 100%;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: -120%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, 
    transparent 0%, 
    rgba(41, 41, 41, 1) 50%, 
    transparent 100%);
    left: 0;
    /* transform: translateX(-50%); */
}

.nav__link {
    font-size: 14px;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.02em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.08);
}

.nav__link:last-child {
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    font-size: 16px;
}

/* Burger */

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.burger--active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger--active span:nth-child(2) {
    opacity: 0;
}

.burger--active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
    padding: 200px 0 100px;
    position: relative;
}

.hero::before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    width: 1000px;
    height: 100%;
    background-image: url(/designer_site_v3/static/img/bg1.png);
    background-size: cover;
    z-index: -1;
}

.hero__inner {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 50px;
}

.hero__content {
    margin-right: auto;
}

.hero__eyebrow {
    font-size: 16px;
    color: var(--accent);
    margin: 0 0 16px;
    font-weight: 400;
    text-align: left;
}

.hero__title {
    font-family: "Gotham Pro";
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 100;
    text-transform: uppercase;
    text-align: left;
}

.hero__text {
    margin: 0 0 45px;
    color: var(--text);
    opacity: 0.8;
    font-weight: 400;
    text-align: left;
}

.hero__text span {
    color: var(--accent);
}

.hero__content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 16px;
    color: var(--muted);
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
}

.hero__meta-number {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: var(--text);
}

.hero__meta-label {
    display: block;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    width: 100vw;
    height: 300px;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(197, 154, 109, 0.16), transparent 55%);
    pointer-events: none;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 40px 12px 22px;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.btn::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:     white;
    position: absolute;
    top: 48%;
    transform: translateY(-48%);
    right: 17px;
}

.btn--primary {
    background: var(--text);
    color: var(--dark-text);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
}

.btn--primary::before {
    background: black;
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.24);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: rgb(255 255 255 / 40%);
}

.btn--ghost:hover {
    border-color: var(--text);
}

.btn--full {
    width: 100%;
}

/* Sections */

.section {
    padding: 72px 0;
}

.section--white {
    background: var(--text);
}

.section__header {
    margin-bottom: 32px;
    position: relative;
    width: 100%;
}

.section__title {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: var(--text);
    text-transform: uppercase;
}

.section__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
    position: absolute;
    right: 0;
    bottom: 0;
}

.section__inner {
    display: grid;
    gap: 40px;
}

.section__inner--two {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: flex-start;
}

.section__text p {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--muted);
}

/* Facts */

.section__facts {
    display: grid;
    gap: 18px;
}

.fact {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: white;
}

.fact__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--dark-text);
}

.fact__value {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--dark-text);
}

/* Grid & Cards */

.grid {
    display: grid;
    gap: 24px;
}

.grid--projects {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--reviews {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
}

.card__image-wrapper {
    position: relative;
    overflow: hidden;
}

.card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.card:hover .card__image {
    transform: scale(1.04);
}

.card__body {
    padding: 18px 18px 20px;
}

.card__title {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--dark-text);
}

.card__location {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--muted);
}

.card__text {
    margin: 0;
    font-size: 14px;
    color: var(--dark-text);
}

/* Timeline (process) */

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.timeline__item {
    position: relative;
    padding: 18px 18px 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: #fff;
}

.timeline__step {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.timeline__title {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--dark-text);
}

.timeline__text {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

/* Reviews */

.review {
    padding: 18px 18px 20px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.review__text {
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--dark-text);
}

.review__author {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

/* Contact & Form */

.contact__list {
    list-style: none;
    padding: 0;
    margin: 16px 0 10px;
}

.contact__list li {
    font-size: 14px;
    margin-bottom: 6px;
}

.contact__list a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 1px;
}

.contact__list a:hover {
    border-bottom-color: var(--text);
}

.contact__note {
    font-size: 11px;
    color: var(--muted);
}

.form {
    padding: 18px 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.form__group {
    margin-bottom: 14px;
}

.form label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.form input,
.form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 9px 11px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    background: #fdfdfd;
}

.form input:focus,
.form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(197, 154, 109, 0.3);
    background: #fff;
}

.form__hint {
    margin: 6px 0 0;
    font-size: 11px;
    color: var(--muted);
}

/* Footer */

.footer {
    border-top: 1px solid rgba(224, 224, 230, 0.9);
    padding: 20px 0;
    font-size: 13px;
    color: var(--muted);
    background: #fff;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .hero__image-wrapper {
        order: -1;
    }

    .section__inner--two {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .header__inner {
        height: 60px;
    }

    .nav {
        position: fixed;
        inset: 60px 0 auto 0;
        background: rgba(255, 255, 255, 0.97);
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 20px 12px;
        border-bottom: 1px solid rgba(224, 224, 230, 0.9);
        transform: translateY(-120%);
        transition: transform var(--transition-fast);
    }

    .nav--open {
        transform: translateY(0);
    }

    .burger {
        display: flex;
    }

    .hero {
        padding-top: 52px;
    }

    .section {
        padding: 52px 0;
    }

    .footer__inner {
        flex-direction: column;
    }
}
