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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.header {
    background-color: #ffffff;
    padding: 0 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 700px;
    border-bottom: 2px solid #ddd;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    gap: 80px;
    position: relative;
}

.header__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.header__logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header__logo-img {
    width: 124px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 50px;
}

.header__brand-name {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #333;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    margin-top: 10px;
}

.header__center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.header__banner-img {
    height: 100%;
    width: auto;
    max-width: 900px;
    object-fit: contain;
    display: block;
    margin-top: 0;
}

.header__right {
    width: 220px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.header__right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header__icon-container {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.header__icon-container:hover {
    background-color: #34495e;
    transform: scale(1.05);
}

.header__icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.header__text-container {
    text-align: right;
    max-width: 220px;
}

.header__icon-label {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.header__slogan {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.navigation {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navigation__list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navigation__link {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
}

.navigation__link:hover {
    background-color: #f0f0f0;
    color: #2c5530;
}

.features {
    padding: 80px 100px;
    background-color: #f8f8f8;
}

.features__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature__icon {
    width: 80px;
    height: 80px;
    background-color: #8B4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature:hover .feature__icon {
    background-color: #a0522d;
}

.feature__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.feature__description {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.products {
    padding: 80px 100px;
    background-color: #ffffff;
}

.products__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.products__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.products__row:last-child {
    margin-bottom: 0;
}

.product-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item__image {
    flex-shrink: 0;
    width: 235px;
    height: 256px;
    overflow: hidden;
    border-radius: 8px;
}

.product-item:hover .product-item__image {
    transform: scale(1.03);
}

.product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-item__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
}

.product-item__description {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.product-item__price {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #8B4513;
    margin-bottom: 20px;
}

.product-item__button {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    align-self: flex-start;
    cursor: pointer;
    border: none;
}

.product-item__button:hover {
    background-color: #a0522d;
    transform: scale(1.05);
}

.coffee-process {
    padding: 80px 100px;
    background-color: #f8f8f8;
}

.coffee-process__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.coffee-process__content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-process__main-image {
    flex-shrink: 0;
    width: 463px;
    height: 409px;
    border-radius: 8px;
    overflow: hidden;
}

.coffee-process__main-image:hover {
    transform: scale(1.02);
}

.coffee-process__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coffee-process__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coffee-process__subtitle {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #333;
    margin: 0 0 25px 0;
}

.coffee-process__description {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.coffee-process__logos {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-logo-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-logo-item:hover {
    transform: translateX(5px);
}

.process-logo-item__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.process-logo-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-logo-item__text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #555;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.coffee-types {
    padding: 80px 100px;
    background-color: #ffffff;
}

.coffee-types__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.coffee-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.coffee-type {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.coffee-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.coffee-type__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.coffee-type__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coffee-type:hover .coffee-type__image img {
    transform: scale(1.05);
}

.coffee-type__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.coffee-type__name {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #333;
    margin: 0 0 15px 0;
}

.coffee-type__description {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.coffee-type__price {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #8B4513;
    margin-top: 10px;
}

.content-grid {
    padding: 80px 100px;
    background-color: #f0f0f0;
}

.content-grid__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.content-grid__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.content-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-card__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.content-card__text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.masonry-grid {
    padding: 80px 100px;
    background-color: #e8e8e8;
}

.masonry-grid__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
}

.masonry-grid__container {
    column-count: 3;
    column-gap: 24px;
}

.masonry-item {
    display: inline-block;
    margin: 0 0 1em;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    break-inside: avoid;
    width: 100%;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.masonry-item--short {
    padding: 1rem;
}

.masonry-item--tall {
    padding: 2rem 1.5rem;
}

.masonry-item--very-tall {
    padding: 2.5rem 1.5rem;
}

.masonry-item__title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.masonry-item__text {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.footer {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    background-color: #cbc1c1;
    color: #403434;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: auto;
}

.adaptive-header {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav_link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 17px;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav_link:hover,
.nav_link.active {
    background: #f0f0f0;
    color: #2c5530;
}

.btn {
    min-width: 44px;
    min-height: 44px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--primary {
    background: #2c5530;
    color: white;
}

.btn--primary:hover {
    background: #1e3a23;
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: scale(0.98);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 12px 10px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle_line {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.menu-toggle.active .menu-toggle_line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .menu-toggle_line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle_line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header_cta {
    margin-left: 20px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #a0522d;
    transform: scale(1.1);
}

.scroll-top.active {
    transform: scale(0.95);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}