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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #171B1B;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 135px;
}

/* Typography */
h1, h2, h3, h4, .bakery-title, .hero__title, .about__title, .features__title {
    font-family: 'Ultra', serif;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background-color: #000;
    color: #fff;
    padding: 14px 48px;
}

.btn--primary:hover {
    background-color: #333;
}

.btn--outline {
    background: transparent;
    border: 2px solid #171B1B3D;
    color: #171B1B;
    padding: 12px 40px;
}

.btn--outline:hover {
    border-color: #171B1B;
}

.btn--light {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn--light:hover {
    border-color: #fff;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bakery-title {
    font-size: 56px;
    line-height: 1.14;
}

.header__list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.header__link {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.header__link:hover {
    color: #FBB65F;
}

.header__button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header__button:hover {
    background-color: #333;
}

/* Hero Section */
.hero {
    background-color: #E7D4BE70;
    padding: 60px 0;
}

.hero__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero__text-wrapper {
    flex: 1;
}

.hero__subtitle {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 467px;
}

.hero__description {
    font-size: 16px;
    color: #666;
    max-width: 400px;
}

.hero__image-wrapper {
    flex: 1;
}

.hero__image {
    width: 100%;
    max-width: 760px;
    height: auto;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.about__image-wrapper {
    flex: 1;
}

.about__image-card {
    position: relative;
}

.about__img--main {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.about__img--secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    max-width: 200px;
}

.about__info {
    flex: 1;
}

.about__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.about__title {
    font-size: 56px;
    line-height: 1.14;
    margin-bottom: 40px;
}

.about__number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about__text {
    margin-bottom: 20px;
    max-width: 370px;
}

.about__list {
    list-style: none;
    padding-left: 0;
}

.about__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FBB65F;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.features__header {
    text-align: center;
    margin-bottom: 60px;
}

.features__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.features__title {
    font-size: 40px;
}

.features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.3s;
}

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

.feature-card--highlight {
    background-color: #F9BF77;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.feature-card__title {
    font-family: 'Ultra', serif;
    font-size: 40px;
    margin-bottom: 18px;
}

.feature-card__text {
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: #fff;
}

.video-section__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.video-section__icon i {
    cursor: pointer;
    transition: transform 0.3s;
}

.video-section__icon i:hover {
    transform: scale(1.1);
}

.video-section__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.video-section__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
}

/* Products Section */
.products {
    padding: 100px 0;
}

.products__header {
    text-align: center;
    margin-bottom: 60px;
}

.products__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.products__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
}

.products__featured {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.product-featured {
    flex: 1;
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.product-featured:first-child {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/770x400');
}

.product-featured--image {
    background-color: #f5f5f5;
    color: #000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-featured__category {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-featured__title {
    font-family: 'Ultra', serif;
    font-size: 40px;
    margin-bottom: 10px;
}

.product-featured__price {
    font-family: 'Ultra', serif;
    font-size: 40px;
    color: #FBB65F;
}

.products__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
}

.product-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.product-card__image {
    width: 100%;
    max-width: 370px;
    height: auto;
    margin-bottom: 20px;
}

.product-card__category {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.product-card__price {
    font-family: 'Ultra', serif;
    font-size: 40px;
    color: #FBB65F;
}

.products__button-wrapper {
    text-align: center;
}

/* Process Section */
.process {
    background-color: #000d0b;
    padding: 100px 0;
    color: #fff;
}

.process__header {
    text-align: center;
    margin-bottom: 60px;
}

.process__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.process__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
}

.process__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    color: #000;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.process-card--highlight {
    background-color: #FBB65F;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card__number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #999;
}

.process-card__title {
    font-family: 'Ultra', serif;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Recipes Section */
.recipes {
    background-color: #000d0b;
    padding: 100px 0;
    color: #fff;
}

.recipes__header {
    text-align: center;
    margin-bottom: 60px;
}

.recipes__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.recipes__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
    max-width: 700px;
    margin: 0 auto;
}

.recipes__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.recipe-card--large {
    flex: 1.5;
}

.recipe-card {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.recipe-card__image {
    width: 100%;
    height: auto;
}

.recipe-card__info {
    padding: 20px;
}

.recipe-card__category {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #FBB65F;
    margin-bottom: 10px;
}

.recipe-card__title {
    font-family: 'Ultra', serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.recipe-card__description {
    color: #666;
}

.recipes__subgrid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.recipes__button-wrapper {
    text-align: center;
}

/* Baker Section */
.baker {
    padding: 100px 0;
}

.baker__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.baker__info {
    flex: 1;
}

.baker__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.baker__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
    margin-bottom: 40px;
}

.baker__role {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.baker__name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.baker__text {
    color: #666;
    max-width: 370px;
    margin-bottom: 30px;
}

.baker__name-small {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
}

.baker__image {
    flex: 1;
}

.baker__image img {
    width: 100%;
    max-width: 645px;
    height: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonials__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
    max-width: 617px;
    margin: 0 auto;
}

.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card--highlight {
    background-color: #FBB65F;
    transform: translateY(-20px);
}

.testimonial-card__rating {
    color: #F5A623;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.contact__image {
    flex: 1;
}

.contact__image img {
    width: 100%;
    height: auto;
}

.contact__info {
    flex: 1;
}

.contact__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.contact__title {
    font-family: 'Ultra', serif;
    font-size: 56px;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    background-color: #FBB65F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-card__text {
    color: #666;
}

/* Footer */
.footer {
    background-color: #000d0b;
    color: #fff;
    padding: 60px 0 30px;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer__logo-title {
    font-family: 'Ultra', serif;
    font-size: 56px;
}

.footer__menu-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: #FBB65F;
}

.footer__social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: #FBB65F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.footer__divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__copyright {
    color: rgba(255,255,255,0.5);
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__legal-link:hover {
    color: #FBB65F;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 50px;
    }
    
    .hero__title {
        font-size: 56px;
    }
    
    .about__title,
    .products__title,
    .process__title,
    .recipes__title,
    .baker__title,
    .testimonials__title,
    .contact__title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header__container {
        flex-direction: column;
        text-align: center;
    }
    
    .header__list {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .hero__subtitle {
        font-size: 24px;
    }
    
    .about__title,
    .products__title,
    .process__title,
    .recipes__title,
    .baker__title,
    .testimonials__title,
    .contact__title {
        font-size: 32px;
    }
    
    .features__title,
    .process-card__title {
        font-size: 28px;
    }
    
    .testimonial-card--highlight {
        transform: translateY(0);
    }
    
    .recipes__subgrid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__social-icons {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}