/*
Theme Name: Gardenia Blu Theme
Author: Gardenia Blu
Description: Tema custom Gardenia Blu
Version: 1.0
Text Domain: gardenia-blu-theme
*/

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fbf4e8;
    color: #37271d;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

*:focus-visible {
    outline: 3px solid rgba(125, 154, 173, 0.55);
    outline-offset: 4px;
}

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

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(119, 151, 168, 0.18), transparent 32rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(246, 224, 194, 0.34));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 241, 0.94);
    border-bottom: 1px solid rgba(117, 78, 50, 0.12);
    box-shadow: 0 12px 36px rgba(74, 48, 30, 0.08);
    backdrop-filter: blur(16px);
}

.admin-bar .site-header {
    top: 32px;
}

.site-header__inner {
    width: min(1160px, calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    padding: 12px 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.site-logo__mark {
    display: block;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: #fffaf1;
    border: 1px solid rgba(116, 74, 49, 0.12);
    box-shadow: 0 6px 18px rgba(91, 55, 32, 0.1);
}

.site-logo__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-logo__text {
    display: grid;
    line-height: 1.15;
}

.site-logo__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    color: #442d20;
}

.site-logo__tagline {
    margin-top: 4px;
    color: #6d7f8f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #5a3b29;
}

.site-nav-toggle {
    display: none;
}

.site-nav__cta {
    display: none;
}

.site-nav a,
.site-nav__item {
    position: relative;
}

.site-nav a {
    padding: 10px 0;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: #7d9aad;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
    color: #234659;
}

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

.site-nav__cta::after {
    display: none;
}

.site-nav__parent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-nav__parent::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    order: 2;
}

.site-nav__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 25;
    min-width: 230px;
    padding: 12px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.98);
    box-shadow: 0 18px 42px rgba(74, 48, 30, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav__submenu a {
    display: block;
    padding: 9px 12px;
    border-radius: 6px;
    color: #5a3b29;
    white-space: nowrap;
}

.site-nav__submenu a::after {
    display: none;
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus {
    color: #234659;
    background: rgba(125, 154, 173, 0.12);
}

.site-nav__item--has-submenu:hover .site-nav__submenu,
.site-nav__item--has-submenu:focus-within .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    color: #fffaf1;
    background: #744a31;
    box-shadow: 0 14px 28px rgba(91, 55, 32, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(91, 55, 32, 0.24);
}

.button--primary {
    background: #744a31;
}

.button--primary:hover,
.button--primary:focus {
    background: #5d3824;
}

.button--secondary {
    color: #2d4f60;
    background: rgba(255, 250, 241, 0.74);
    border-color: rgba(92, 126, 145, 0.34);
    box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus {
    border-color: #6d8fa2;
    background: #fffaf1;
}

.button--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #5f7048;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    transition: color 180ms ease, transform 180ms ease;
}

.text-link::after {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: width 180ms ease;
}

.text-link:hover,
.text-link:focus {
    color: #744a31;
    transform: translateX(2px);
}

.text-link:hover::after,
.text-link:focus::after {
    width: 34px;
}

.text-link--light {
    color: #f7ddae;
}

.text-link--light:hover,
.text-link--light:focus {
    color: #fffaf1;
}

.whatsapp-link {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3d4f36;
    font-weight: 800;
    transition: transform 180ms ease, color 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus {
    color: #263a25;
    transform: translateY(-1px);
}

.whatsapp-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fdf6eb;
    background: #5f7048;
    box-shadow: 0 10px 22px rgba(68, 82, 50, 0.18);
}

.whatsapp-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-main {
    overflow: hidden;
}

.hero-section {
    position: relative;
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 78px 0 86px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: 64px;
}

.hero-section__content {
    position: relative;
    z-index: 4;
    animation: gardenia-rise 700ms ease both;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 7px 15px 7px 7px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 999px;
    color: #4a3022;
    background: rgba(255, 250, 241, 0.8);
    box-shadow: 0 14px 34px rgba(91, 55, 32, 0.09);
}

.hero-brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    color: #442d20;
}

.hero-section__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #6d7f8f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 8px 15px;
    border: 1px solid rgba(116, 74, 49, 0.22);
    border-radius: 999px;
    color: #69432c;
    background: #fff6e6;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(91, 55, 32, 0.08);
}

.hero-section__meta .eyebrow {
    margin-bottom: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    color: #3e2a1f;
    font-weight: 500;
}

h1 {
    max-width: 850px;
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 5.25vw, 5.15rem);
}

.hero-section__lead {
    max-width: 620px;
    margin-bottom: 38px;
    color: #624532;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.72;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-whatsapp {
    margin-top: 18px;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(95, 112, 72, 0.2);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.62);
    box-shadow: 0 10px 28px rgba(91, 55, 32, 0.08);
}

.hero-product {
    position: relative;
    z-index: 1;
    isolation: isolate;
    min-height: 610px;
    border-radius: 8px;
    overflow: hidden;
    background: #b77b47;
    box-shadow: 0 34px 86px rgba(72, 45, 27, 0.28);
    animation: gardenia-rise 900ms ease 120ms both;
}

.hero-product::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.46);
    border-radius: 6px;
    pointer-events: none;
}

.hero-product::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.03), rgba(54, 34, 22, 0.46)),
        radial-gradient(circle at 72% 14%, rgba(255, 244, 218, 0.24), transparent 28rem),
        linear-gradient(90deg, rgba(61, 36, 22, 0.2), transparent 45%);
}

.hero-product__image {
    height: 100%;
    min-height: 610px;
}

.product-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: #c08a55;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms ease, filter 620ms ease;
}

.hero-product__image img {
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

.product-image::before,
.product-image::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-product__note {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 34px;
    z-index: 3;
    max-width: 450px;
    padding: 26px;
    border: 1px solid rgba(255, 250, 241, 0.34);
    border-radius: 8px;
    color: #fffaf1;
    background: rgba(55, 32, 20, 0.7);
    box-shadow: 0 18px 46px rgba(31, 18, 11, 0.24);
    backdrop-filter: blur(10px);
}

.hero-product__note span {
    display: block;
    margin-bottom: 10px;
    color: #f7ddae;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-product__note strong {
    display: block;
    max-width: 390px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.12;
}

.hero-product__note p {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(255, 250, 241, 0.82);
}

.section {
    scroll-margin-top: 110px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 94px 0;
}

.section--cream {
    width: 100%;
    padding-right: max(20px, calc((100% - 1160px) / 2));
    padding-left: max(20px, calc((100% - 1160px) / 2));
    background:
        linear-gradient(180deg, rgba(255, 250, 241, 0.76), rgba(250, 238, 218, 0.62)),
        rgba(255, 250, 241, 0.62);
    border-top: 1px solid rgba(117, 78, 50, 0.08);
    border-bottom: 1px solid rgba(117, 78, 50, 0.08);
}

.section__intro {
    max-width: 720px;
    margin-bottom: 44px;
}

.section h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

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

.specialty-card {
    position: relative;
    min-height: 390px;
    border: 1px solid rgba(111, 76, 50, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #fffaf1;
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.specialty-card__image {
    inset: 0 0 auto;
    height: 63%;
    transition: transform 680ms ease;
}

.specialty-card__image::after {
    inset: 0;
    background: linear-gradient(180deg, rgba(63, 38, 24, 0.04), rgba(63, 38, 24, 0.24));
    transition: opacity 520ms ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 74, 49, 0.22);
    box-shadow: 0 24px 52px rgba(86, 57, 35, 0.14);
}

.specialty-card--link:focus-visible {
    outline: 3px solid rgba(125, 154, 173, 0.55);
    outline-offset: 5px;
}

.specialty-card--link:hover .text-link,
.specialty-card--link:focus-visible .text-link {
    color: #744a31;
    transform: translateX(2px);
}

.specialty-card--link:hover .text-link::after,
.specialty-card--link:focus-visible .text-link::after {
    width: 34px;
}

.specialty-card:hover .specialty-card__image,
.specialty-card:focus-within .specialty-card__image {
    transform: scale(1.025);
}

.specialty-card:hover .specialty-card__image img,
.specialty-card:focus-within .specialty-card__image img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

.specialty-card:hover .specialty-card__image::after,
.specialty-card:focus-within .specialty-card__image::after {
    opacity: 0.72;
}

.specialty-card__body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 42%;
    padding: 25px 24px 26px;
    background: #fffaf1;
}

.specialty-card__label {
    display: block;
    margin-bottom: 10px;
    color: #7d9aad;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.specialty-card h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.specialty-card p,
.cake-section p {
    color: #654935;
}

.specialty-card p {
    line-height: 1.55;
}

.story-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 58px;
    position: relative;
}

.story-section::before {
    content: "";
    position: absolute;
    inset: 44px auto 44px 34%;
    width: 34%;
    z-index: -1;
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.58);
}

.story-section__image.product-image {
    position: relative;
    inset: auto;
    min-height: 430px;
    border-radius: 8px;
    box-shadow: 0 28px 64px rgba(69, 45, 29, 0.17);
}

.story-section__image::after {
    inset: 0;
    background:
        linear-gradient(180deg, rgba(65, 41, 25, 0.04), rgba(65, 41, 25, 0.28)),
        radial-gradient(circle at 20% 16%, rgba(255, 246, 225, 0.2), transparent 18rem);
}

.story-section__content {
    max-width: 640px;
    padding: 8px 0;
}

.story-section__content p {
    color: #624532;
    font-size: 1.08rem;
    line-height: 1.76;
}

.seasonal-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    align-items: stretch;
    gap: 34px;
    padding-top: 26px;
}

.seasonal-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.72);
}

.seasonal-section__content p {
    color: #624532;
    font-size: 1.05rem;
}

.seasonal-section__image.product-image {
    position: relative;
    inset: auto;
    min-height: 390px;
    border-radius: 8px;
    box-shadow: 0 22px 52px rgba(69, 45, 29, 0.13);
}

.seasonal-section__image::after {
    inset: 0;
    background: linear-gradient(180deg, rgba(65, 41, 25, 0.03), rgba(65, 41, 25, 0.22));
}

.cake-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 44px;
    border-radius: 8px;
    color: #4a3022;
    background:
        linear-gradient(135deg, rgba(255, 247, 231, 0.96), rgba(231, 189, 130, 0.86)),
        #f2d6a8;
    border: 1px solid rgba(116, 74, 49, 0.18);
    box-shadow: 0 24px 58px rgba(69, 45, 29, 0.12);
}

.cake-section h2,
.cake-section p {
    color: #4a3022;
}

.cake-section p {
    max-width: 680px;
    margin-bottom: 0;
}

.cake-section .eyebrow {
    color: #8a5634;
}

.cake-section .button {
    flex-shrink: 0;
    background: #744a31;
    color: #fffaf1;
}

.news-preview {
    position: relative;
}

.news-preview .section__intro p:not(.eyebrow),
.blog-hero__content p,
.news-card__body p,
.article-hero__content p,
.article-content,
.article-content p {
    color: #624532;
}

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

.news-card {
    overflow: hidden;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 18px 44px rgba(86, 57, 35, 0.09);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 74, 49, 0.22);
    box-shadow: 0 26px 58px rgba(86, 57, 35, 0.14);
}

.news-card__image {
    position: relative;
    display: block;
    min-height: 245px;
    overflow: hidden;
    background: #c99766;
}

.news-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.03), rgba(54, 34, 22, 0.26)),
        radial-gradient(circle at 20% 14%, rgba(255, 244, 218, 0.22), transparent 18rem);
}

.news-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
    transition: transform 480ms ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.055);
}

.news-card__body {
    padding: 26px;
}

.news-card__meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: #8a5634;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-card h2,
.news-card h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.news-card h2 a,
.news-card h3 a {
    transition: color 180ms ease;
}

.news-card h2 a:hover,
.news-card h2 a:focus,
.news-card h3 a:hover,
.news-card h3 a:focus {
    color: #234659;
}

.news-link-list {
    display: grid;
    gap: 18px;
}

.news-link-item {
    padding: 30px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.86);
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
}

.news-link-item h2 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.news-link-item h2 a {
    transition: color 180ms ease;
}

.news-link-item h2 a:hover,
.news-link-item h2 a:focus {
    color: #234659;
}

.news-link-item p:not(.news-card__meta) {
    color: #624532;
    font-size: 1.05rem;
    line-height: 1.72;
}

.news-preview__button {
    margin-top: 30px;
}

.blog-page,
.single-post-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(247, 221, 174, 0.24), transparent 24rem),
        radial-gradient(circle at 86% 16%, rgba(125, 154, 173, 0.1), transparent 26rem),
        linear-gradient(180deg, rgba(255, 250, 241, 0.48), transparent 32rem);
}

.blog-hero,
.article-hero {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 78px 0 72px;
}

.blog-hero {
    min-height: 440px;
    display: flex;
    align-items: center;
}

.blog-hero__content {
    max-width: 760px;
    animation: gardenia-rise 700ms ease both;
}

.blog-hero__content .heritage-badge {
    margin-bottom: 20px;
}

.blog-hero__content h1 {
    font-size: clamp(3rem, 6vw, 6.3rem);
}

.blog-hero__content p:not(.eyebrow) {
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.72;
}

.blog-listing {
    padding-top: 26px;
}

.blog-empty {
    max-width: 820px;
    padding: 46px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(247, 221, 174, 0.42)),
        #fffaf1;
    box-shadow: 0 18px 44px rgba(86, 57, 35, 0.09);
}

.blog-empty h2 {
    margin-bottom: 0;
}

.blog-pagination {
    margin-top: 42px;
    color: #624532;
    font-weight: 800;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid rgba(116, 74, 49, 0.16);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.76);
}

.blog-pagination .current {
    color: #fffaf1;
    background: #744a31;
}

.article-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 60px;
    align-items: center;
}

.article-hero__content {
    animation: gardenia-rise 700ms ease both;
}

.article-hero__content h1 {
    font-size: clamp(2.65rem, 5.4vw, 5.7rem);
}

.article-hero__image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    background: #c99766;
    box-shadow: 0 36px 86px rgba(72, 45, 27, 0.26);
}

.article-hero__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.46);
    border-radius: 6px;
    pointer-events: none;
}

.article-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.03), rgba(54, 34, 22, 0.34)),
        radial-gradient(circle at 22% 12%, rgba(255, 244, 218, 0.22), transparent 22rem);
}

.article-hero__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

.article-content {
    max-width: 820px;
    font-size: 1.1rem;
    line-height: 1.82;
}

.article-content > * {
    margin-right: auto;
    margin-left: auto;
}

.article-content h2,
.article-content h3 {
    margin-top: 42px;
}

.article-content a {
    color: #234659;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(35, 70, 89, 0.32);
    text-underline-offset: 4px;
}

.article-content img {
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(86, 57, 35, 0.09);
}

.site-footer {
    scroll-margin-top: 110px;
    color: #fdf6eb;
    background:
        linear-gradient(180deg, #463025, #342218),
        #3d2a20;
}

.site-footer__inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 62px 0 44px;
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.75fr) minmax(220px, 1fr) minmax(150px, 0.75fr);
    gap: 38px;
}

.site-logo--footer .site-logo__name,
.site-footer h2 {
    color: #fffaf1;
}

.site-logo--footer .site-logo__mark {
    background: #fffaf1;
    border-color: rgba(255, 250, 241, 0.48);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-footer__description {
    max-width: 430px;
    margin: 22px 0 0;
    color: rgba(253, 246, 235, 0.76);
}

.site-footer__phrase {
    max-width: 420px;
    margin: 18px 0 0;
    color: #f7ddae;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
}

.site-footer__group h2 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.site-footer__group p {
    margin-bottom: 9px;
    color: rgba(253, 246, 235, 0.78);
}

.site-footer__group a {
    transition: color 180ms ease;
}

.site-footer__group a:hover,
.site-footer__group a:focus {
    color: #b9d2df;
}

.site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 250, 241, 0.2);
    border-radius: 50%;
    color: #fffaf1;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(255, 250, 241, 0.06);
}

.site-footer__socials a:hover,
.site-footer__socials a:focus {
    color: #3d2a20;
    background: #f7ddae;
    border-color: #f7ddae;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 250, 241, 0.42);
    border-radius: 50%;
    color: #fffaf1;
    background:
        linear-gradient(135deg, rgba(116, 74, 49, 0.92), rgba(95, 112, 72, 0.94)),
        #5f7048;
    box-shadow: 0 18px 42px rgba(61, 42, 31, 0.24);
    animation: gardenia-float 3.8s ease-in-out infinite;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(61, 42, 31, 0.3);
}

.floating-whatsapp .whatsapp-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
}

.floating-whatsapp .whatsapp-icon svg {
    width: 25px;
    height: 25px;
}

.site-footer__bottom {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 26px;
    border-top: 1px solid rgba(255, 250, 241, 0.14);
    color: rgba(253, 246, 235, 0.62);
    font-size: 0.92rem;
}

.site-footer__bottom p {
    margin-bottom: 0;
}

.gubana-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(247, 221, 174, 0.28), transparent 24rem),
        radial-gradient(circle at 86% 14%, rgba(125, 154, 173, 0.1), transparent 26rem),
        linear-gradient(180deg, rgba(255, 250, 241, 0.52), transparent 34rem);
}

.gubana-hero {
    position: relative;
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 80px 0 92px;
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 66px;
}

.gubana-hero__image {
    position: relative;
    min-height: 670px;
    overflow: hidden;
    border-radius: 8px;
    background: #b77b47;
    box-shadow: 0 38px 92px rgba(72, 45, 27, 0.3);
}

.gubana-hero__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.46);
    border-radius: 6px;
    pointer-events: none;
}

.gubana-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.02), rgba(54, 34, 22, 0.48)),
        radial-gradient(circle at 18% 12%, rgba(255, 244, 218, 0.3), transparent 26rem),
        linear-gradient(90deg, rgba(61, 36, 22, 0.2), transparent 52%);
}

.gubana-hero__image img,
.gubana-process__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gubana-hero__image img {
    transform: scale(1.015);
    filter: saturate(1.05) contrast(1.04);
}

.gubana-hero__content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    animation: gardenia-rise 700ms ease both;
}

.gubana-hero__content .heritage-badge {
    margin-bottom: 20px;
}

.gubana-hero__content h1 {
    margin-bottom: 24px;
    font-size: clamp(3.35rem, 6.5vw, 7rem);
}

.gubana-hero__content p:not(.eyebrow) {
    color: #624532;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.74;
}

.gubana-story {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 58px;
    align-items: start;
    position: relative;
}

.gubana-story::before {
    content: "";
    position: absolute;
    inset: 48px auto 48px 36%;
    width: 32%;
    z-index: -1;
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.62);
}

.gubana-story__intro {
    position: sticky;
    top: 130px;
}

.gubana-story__text {
    padding: 40px;
    border: 1px solid rgba(116, 74, 49, 0.12);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.72);
    box-shadow: 0 22px 52px rgba(86, 57, 35, 0.1);
}

.gubana-story__text p,
.gubana-section-card p,
.gubana-process__content p,
.gubana-cta p {
    color: #624532;
    font-size: 1.07rem;
    line-height: 1.76;
}

.gubana-story__text p:last-child,
.gubana-section-card p:last-child,
.gubana-process__content p:last-child,
.gubana-cta p:last-child {
    margin-bottom: 0;
}

.gubana-ingredients {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
}

.gubana-section-card {
    padding: 46px;
    border: 1px solid rgba(116, 74, 49, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(245, 221, 185, 0.7)),
        #fffaf1;
    box-shadow: 0 24px 58px rgba(69, 45, 29, 0.12);
}

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

.gubana-highlights article {
    min-height: 245px;
    padding: 28px;
    border: 1px solid rgba(116, 74, 49, 0.12);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.gubana-highlights article:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 74, 49, 0.22);
    box-shadow: 0 22px 48px rgba(86, 57, 35, 0.13);
}

.gubana-highlights span {
    display: inline-block;
    margin-bottom: 38px;
    color: #8a5634;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.gubana-highlights h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.gubana-highlights p {
    color: #654935;
    line-height: 1.58;
}

.gubana-process {
    display: grid;
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
    gap: 62px;
    align-items: center;
}

.gubana-process__image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #b77b47;
    box-shadow: 0 30px 70px rgba(69, 45, 29, 0.18);
}

.gubana-process__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(65, 41, 25, 0.03), rgba(65, 41, 25, 0.32)),
        radial-gradient(circle at 18% 16%, rgba(255, 246, 225, 0.24), transparent 18rem);
}

.gubana-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding: 50px;
    border: 1px solid rgba(116, 74, 49, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 247, 231, 0.96), rgba(231, 189, 130, 0.84)),
        #f2d6a8;
    box-shadow: 0 26px 62px rgba(69, 45, 29, 0.13);
}

.gubana-cta > div {
    max-width: 700px;
}

.gubana-cta .button {
    flex-shrink: 0;
}

.cakes-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(247, 221, 174, 0.26), transparent 24rem),
        radial-gradient(circle at 86% 18%, rgba(125, 154, 173, 0.1), transparent 26rem),
        linear-gradient(180deg, rgba(255, 250, 241, 0.5), transparent 32rem);
}

.cakes-hero {
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 80px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    align-items: center;
    gap: 64px;
}

.cakes-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: gardenia-rise 700ms ease both;
}

.cakes-hero__content .heritage-badge {
    margin-bottom: 20px;
}

.cakes-hero__content h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 6.4rem);
}

.cakes-hero__content p:not(.eyebrow) {
    color: #624532;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.72;
}

.cakes-hero__image {
    min-height: 620px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #c99766;
    box-shadow: 0 36px 86px rgba(72, 45, 27, 0.26);
}

.cakes-hero__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.46);
    border-radius: 6px;
    pointer-events: none;
}

.cakes-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.02), rgba(54, 34, 22, 0.38)),
        radial-gradient(circle at 22% 12%, rgba(255, 244, 218, 0.3), transparent 22rem);
}

.cake-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 42%, #fff5df 0 20%, transparent 21%),
        radial-gradient(ellipse at 50% 58%, #f2c982 0 30%, #a7633d 31% 36%, transparent 37%),
        linear-gradient(135deg, #f7ddb0, #bd7b4c 62%, #70432c);
}

.cake-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

.cake-visual::before,
.cake-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cake-visual::before {
    left: 14%;
    right: 14%;
    bottom: 20%;
    height: 30%;
    border-radius: 999px 999px 18px 18px;
    background:
        radial-gradient(circle at 22% 28%, rgba(126, 154, 112, 0.9) 0 4%, transparent 5%),
        radial-gradient(circle at 44% 18%, rgba(163, 69, 58, 0.88) 0 4%, transparent 5%),
        radial-gradient(circle at 68% 26%, rgba(126, 154, 112, 0.9) 0 4%, transparent 5%),
        linear-gradient(180deg, #fff1cf, #e5ae68 58%, #9a5a36);
    box-shadow: 0 28px 46px rgba(63, 37, 23, 0.26);
}

.cake-visual::after {
    left: 24%;
    right: 24%;
    bottom: 14%;
    height: 8%;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.62);
    filter: blur(14px);
}

.cake-visual--image::before {
    display: none;
}

.cake-visual--image::after {
    inset: 0;
    height: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.03), rgba(54, 34, 22, 0.34)),
        radial-gradient(circle at 22% 12%, rgba(255, 244, 218, 0.22), transparent 22rem);
    filter: none;
}

.cake-visual--birthday {
    background:
        radial-gradient(circle at 50% 28%, #fff6dc 0 10%, transparent 11%),
        linear-gradient(135deg, #efd19c, #a96743);
}

.cake-visual--occasion {
    background:
        radial-gradient(circle at 38% 35%, #fff7df 0 12%, transparent 13%),
        radial-gradient(circle at 62% 38%, #e8b56d 0 12%, transparent 13%),
        linear-gradient(135deg, #f6dfb8, #81543b);
}

.cake-visual--family {
    background:
        radial-gradient(circle at 50% 34%, #f7ddae 0 16%, transparent 17%),
        linear-gradient(135deg, #fff1cf, #c88755 56%, #6f432d);
}

.cakes-gallery__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 22px;
}

.cake-gallery-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 18px 44px rgba(86, 57, 35, 0.09);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.cake-gallery-card:first-child {
    min-height: 430px;
}

.cake-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(86, 57, 35, 0.14);
}

.cake-gallery-card h3 {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid rgba(255, 250, 241, 0.34);
    border-radius: 8px;
    color: #fffaf1;
    background: rgba(55, 32, 20, 0.64);
    backdrop-filter: blur(10px);
}

.cakes-process {
    position: relative;
}

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

.cakes-steps article {
    min-height: 270px;
    padding: 30px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
}

.cakes-steps span {
    display: inline-block;
    margin-bottom: 48px;
    color: #8a5634;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.cakes-steps h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.cakes-steps p,
.cakes-request__content p,
.cakes-whatsapp p {
    color: #624532;
    line-height: 1.7;
}

.cakes-request {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 38px;
    align-items: start;
}

.cakes-request__content {
    position: sticky;
    top: 130px;
}

.cakes-form-card {
    min-height: 460px;
    padding: 34px;
    border: 1px solid rgba(116, 74, 49, 0.16);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 0 22px 52px rgba(86, 57, 35, 0.1);
}

.cakes-form-card__note {
    margin: 0;
    padding: 24px;
    border: 1px dashed rgba(116, 74, 49, 0.24);
    border-radius: 8px;
    color: #654935;
    background: rgba(247, 221, 174, 0.18);
}

.cakes-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding: 46px;
    border: 1px solid rgba(116, 74, 49, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 247, 231, 0.96), rgba(231, 189, 130, 0.84)),
        #f2d6a8;
    box-shadow: 0 24px 58px rgba(69, 45, 29, 0.12);
}

.cakes-whatsapp > div {
    max-width: 700px;
}

.cakes-whatsapp__button {
    flex-shrink: 0;
    padding: 10px 18px 10px 10px;
    border: 1px solid rgba(95, 112, 72, 0.22);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.72);
    box-shadow: 0 10px 28px rgba(91, 55, 32, 0.08);
}

.product-page {
    background:
        radial-gradient(circle at 14% 8%, rgba(247, 221, 174, 0.24), transparent 24rem),
        radial-gradient(circle at 86% 16%, rgba(125, 154, 173, 0.1), transparent 26rem),
        linear-gradient(180deg, rgba(255, 250, 241, 0.48), transparent 32rem);
}

.product-hero {
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 82px);
    margin: 0 auto;
    padding: 80px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    align-items: center;
    gap: 64px;
}

.product-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: gardenia-rise 700ms ease both;
}

.product-hero__content .heritage-badge {
    margin-bottom: 20px;
}

.product-hero__content h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 6.4rem);
}

.product-hero__content p:not(.eyebrow) {
    color: #624532;
    font-size: clamp(1.12rem, 2vw, 1.35rem);
    line-height: 1.72;
}

.product-hero__image,
.product-split__image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 8px;
    background: #c99766;
    box-shadow: 0 36px 86px rgba(72, 45, 27, 0.26);
}

.product-split__image {
    min-height: 460px;
    box-shadow: 0 28px 64px rgba(69, 45, 29, 0.17);
}

.product-hero__image::before,
.product-split__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.46);
    border-radius: 6px;
    pointer-events: none;
}

.product-hero__image::after,
.product-split__image::after,
.product-gallery article::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.03), rgba(54, 34, 22, 0.36)),
        radial-gradient(circle at 22% 12%, rgba(255, 244, 218, 0.24), transparent 22rem);
}

.product-hero__image img,
.product-split__image img,
.product-gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

.product-story {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 58px;
    align-items: start;
}

.product-story__text {
    padding: 38px;
    border: 1px solid rgba(116, 74, 49, 0.12);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.72);
    box-shadow: 0 22px 52px rgba(86, 57, 35, 0.1);
}

.product-story__text p,
.product-split__content p,
.product-cta p {
    color: #624532;
    font-size: 1.07rem;
    line-height: 1.76;
}

.product-story__text p:last-child,
.product-split__content p:last-child,
.product-cta p:last-child {
    margin-bottom: 0;
}

.product-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
    gap: 58px;
    align-items: center;
}

.product-split--reverse .product-split__image {
    order: 2;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 22px;
}

.product-gallery article {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 18px 44px rgba(86, 57, 35, 0.09);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-gallery article:first-child {
    min-height: 430px;
}

.product-gallery article:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(86, 57, 35, 0.14);
}

.product-gallery h3 {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    margin-bottom: 0;
    padding: 18px;
    border: 1px solid rgba(255, 250, 241, 0.34);
    border-radius: 8px;
    color: #fffaf1;
    background: rgba(55, 32, 20, 0.64);
    backdrop-filter: blur(10px);
}

.product-seasonal {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 34px;
    align-items: stretch;
}

.product-seasonal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px;
    border: 1px solid rgba(116, 74, 49, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.92), rgba(247, 221, 174, 0.54)),
        #fffaf1;
    box-shadow: 0 20px 48px rgba(86, 57, 35, 0.1);
}

.product-seasonal__content p {
    color: #624532;
    font-size: 1.07rem;
    line-height: 1.76;
}

.product-seasonal__image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    background: #c99766;
    box-shadow: 0 26px 62px rgba(69, 45, 29, 0.16);
}

.product-seasonal__image::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 250, 241, 0.44);
    border-radius: 6px;
    pointer-events: none;
}

.product-seasonal__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(54, 34, 22, 0.02), rgba(54, 34, 22, 0.28)),
        radial-gradient(circle at 18% 12%, rgba(255, 244, 218, 0.22), transparent 22rem);
}

.product-seasonal__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(1.04) contrast(1.03);
}

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

.product-highlights article {
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: #fffaf1;
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-highlights article:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 74, 49, 0.22);
    box-shadow: 0 22px 48px rgba(86, 57, 35, 0.13);
}

.product-highlights span {
    display: inline-block;
    margin-bottom: 48px;
    color: #8a5634;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.product-highlights h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
}

.product-highlights p {
    color: #624532;
    line-height: 1.62;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding: 46px;
    border: 1px solid rgba(116, 74, 49, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 247, 231, 0.96), rgba(231, 189, 130, 0.84)),
        #f2d6a8;
    box-shadow: 0 24px 58px rgba(69, 45, 29, 0.12);
}

.product-cta > div {
    max-width: 700px;
}

.product-cta .button {
    flex-shrink: 0;
}

.about-values {
    position: relative;
    z-index: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-values article {
    position: relative;
    z-index: 1;
}

.about-values::before {
    content: "";
    position: absolute;
    inset: 62px 0;
    z-index: -1;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(251, 244, 232, 0.92), rgba(251, 244, 232, 0.64)),
        var(--gardenia-values-image);
    background-position: center;
    background-size: cover;
    opacity: 0.28;
}

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

.contact-page .product-hero__image {
    min-height: 560px;
}

.contact-card,
.contact-hours,
.map-placeholder,
.contact-message {
    border: 1px solid rgba(116, 74, 49, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.84);
    box-shadow: 0 16px 38px rgba(86, 57, 35, 0.08);
}

.contact-card {
    min-height: 260px;
    padding: 30px;
}

.contact-card span {
    display: inline-block;
    margin-bottom: 34px;
    color: #8a5634;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card h2 {
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.contact-card p,
.contact-card a,
.contact-hours p,
.map-placeholder p,
.contact-message h2 {
    color: #624532;
    line-height: 1.68;
}

.contact-card a {
    text-decoration-color: rgba(138, 86, 52, 0.35);
    text-underline-offset: 4px;
    transition: color 200ms ease, text-decoration-color 200ms ease;
}

.contact-card a:hover {
    color: #264f6f;
    text-decoration-color: rgba(38, 79, 111, 0.45);
}

.contact-hours {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 40px;
    align-items: start;
    padding: 42px;
}

.contact-hours__list p {
    margin-bottom: 0;
}

.contact-hours__list p + p {
    margin-top: 8px;
}

.map-placeholder {
    min-height: 380px;
    display: grid;
    place-items: center;
    padding: 54px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(239, 213, 173, 0.76)),
        linear-gradient(180deg, rgba(54, 34, 22, 0.05), rgba(54, 34, 22, 0.18)),
        var(--gardenia-map-image),
        repeating-linear-gradient(45deg, rgba(116, 74, 49, 0.055) 0 1px, transparent 1px 20px);
    background-position: center;
    background-size: cover;
}

.map-placeholder__inner {
    max-width: 680px;
}

.map-placeholder h2 {
    margin-bottom: 16px;
}

.map-placeholder .text-link {
    justify-content: center;
}

.contact-message {
    padding: 44px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(185, 210, 223, 0.22)),
        #fffaf1;
}

.contact-message h2 {
    max-width: 860px;
    margin: 0 auto;
    font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

@keyframes gardenia-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gardenia-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 1100px) {
    .specialty-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gubana-ingredients {
        grid-template-columns: 1fr;
    }

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

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

    .product-gallery,
    .product-highlights,
    .about-values,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        min-height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .site-nav-toggle {
        order: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin-left: auto;
        border: 1px solid rgba(116, 74, 49, 0.18);
        border-radius: 999px;
        background: rgba(255, 250, 241, 0.92);
        color: #442d20;
        box-shadow: 0 8px 22px rgba(74, 48, 30, 0.1);
        cursor: pointer;
        transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .site-nav-toggle:hover,
    .site-nav-toggle:focus {
        border-color: rgba(35, 70, 89, 0.32);
        color: #234659;
        box-shadow: 0 10px 26px rgba(74, 48, 30, 0.14);
    }

    .site-nav-toggle__icon,
    .site-nav-toggle__icon::before,
    .site-nav-toggle__icon::after {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .site-nav-toggle__icon {
        position: relative;
    }

    .site-nav-toggle__icon::before,
    .site-nav-toggle__icon::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .site-nav-toggle__icon::before {
        top: -7px;
    }

    .site-nav-toggle__icon::after {
        top: 7px;
    }

    .site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon {
        background: transparent;
    }

    .site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon::before {
        transform: translateY(7px) rotate(45deg);
    }

    .site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav-toggle__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
    }

    .site-header__cta {
        display: none;
    }

    .site-nav {
        order: 3;
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 2px;
        padding: 14px;
        border: 1px solid rgba(116, 74, 49, 0.14);
        border-radius: 8px;
        background: rgba(255, 250, 241, 0.98);
        box-shadow: 0 18px 42px rgba(74, 48, 30, 0.12);
        gap: 4px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 9px 12px;
        border-radius: 6px;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a:hover,
    .site-nav a:focus {
        background: rgba(125, 154, 173, 0.12);
    }

    .site-nav__item--has-submenu {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .site-nav__submenu {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        padding: 0 0 4px 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .site-nav__submenu a {
        padding: 8px 12px;
        border-radius: 6px;
        background: transparent;
        white-space: normal;
    }

    .site-nav__cta {
        display: inline-flex;
        width: 100%;
        margin-top: 8px;
        color: #fffaf1;
    }

    .hero-section {
        min-height: auto;
        padding-top: 54px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-product,
    .hero-product__image {
        min-height: 440px;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .story-section::before {
        inset: 24% 0 auto;
        width: 100%;
        height: 34%;
    }

    .seasonal-section {
        grid-template-columns: 1fr;
    }

    .cake-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gubana-hero,
    .gubana-story,
    .gubana-process {
        grid-template-columns: 1fr;
    }

    .gubana-hero {
        min-height: auto;
        padding-top: 54px;
        gap: 38px;
    }

    .gubana-hero__image {
        order: 2;
        min-height: 440px;
    }

    .gubana-story__intro {
        position: static;
    }

    .gubana-story::before {
        inset: 22% 0 auto;
        width: 100%;
        height: 36%;
    }

    .gubana-highlights {
        grid-template-columns: 1fr;
    }

    .gubana-process__image {
        min-height: 380px;
    }

    .gubana-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .cakes-hero,
    .cakes-request {
        grid-template-columns: 1fr;
    }

    .cakes-hero {
        min-height: auto;
        padding-top: 54px;
        gap: 38px;
    }

    .cakes-hero__image {
        min-height: 440px;
    }

    .cakes-gallery__grid,
    .cakes-steps {
        grid-template-columns: 1fr;
    }

    .cakes-request__content {
        position: static;
    }

    .cakes-whatsapp {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-hero {
        grid-template-columns: 1fr;
        padding-top: 54px;
        gap: 38px;
    }

    .article-hero__image {
        min-height: 420px;
    }

    .news-card-grid {
        grid-template-columns: 1fr;
    }

    .product-hero,
    .product-story,
    .product-split,
    .product-seasonal {
        grid-template-columns: 1fr;
    }

    .product-split--reverse .product-split__image {
        order: 0;
    }

    .product-hero {
        min-height: auto;
        padding-top: 54px;
        gap: 38px;
    }

    .product-hero__image {
        min-height: 440px;
    }

    .product-gallery,
    .product-highlights,
    .about-values,
    .contact-grid,
    .contact-hours {
        grid-template-columns: 1fr;
    }

    .product-split__image {
        min-height: 380px;
    }

    .product-seasonal__image {
        min-height: 360px;
    }

    .contact-page .product-hero__image {
        min-height: 440px;
    }

    .product-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner,
    .hero-section,
    .gubana-hero,
    .cakes-hero,
    .product-hero,
    .blog-hero,
    .article-hero,
    .section,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(100% - 28px, 1160px);
    }

    .site-logo__name {
        font-size: 1.28rem;
    }

    .site-logo__mark {
        width: 58px;
        height: 58px;
    }

    .hero-brand {
        margin-bottom: 18px;
    }

    .hero-section__meta {
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-brand img {
        width: 48px;
        height: 48px;
    }

    .hero-brand span {
        font-size: 1.08rem;
    }

    .site-header__cta {
        width: 100%;
    }

    .site-nav {
        font-size: 0.9rem;
    }

    h1 {
        font-size: clamp(2.45rem, 14vw, 3.45rem);
    }

    .hero-section {
        padding-bottom: 54px;
    }

    .hero-section__actions,
    .hero-section__actions .button,
    .hero-whatsapp,
    .cake-section .button,
    .gubana-cta .button,
    .cakes-whatsapp__button,
    .product-cta .button {
        width: 100%;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card {
        min-height: 360px;
    }

    .hero-product,
    .hero-product__image {
        min-height: 360px;
    }

    .hero-product__note {
        right: 24px;
        bottom: 24px;
        left: 24px;
        padding: 20px;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section--cream {
        padding-right: 14px;
        padding-left: 14px;
    }

    .specialty-card,
    .cake-section,
    .seasonal-section__content,
    .gubana-story__text,
    .gubana-section-card,
    .gubana-highlights article,
    .gubana-cta,
    .cakes-steps article,
    .cakes-form-card,
    .cakes-whatsapp,
    .news-card__body,
    .news-link-item,
    .blog-empty,
    .product-story__text,
    .product-seasonal__content,
    .product-highlights article,
    .product-cta,
    .contact-message {
        padding: 24px;
    }

    .contact-card,
    .contact-hours,
    .map-placeholder {
        padding: 24px;
    }

    .story-section__image.product-image,
    .seasonal-section__image.product-image {
        min-height: 320px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .gubana-hero__image,
    .gubana-process__image,
    .cakes-hero__image,
    .product-hero__image,
    .contact-page .product-hero__image,
    .article-hero__image,
    .product-split__image {
        min-height: 340px;
    }

    .cake-gallery-card,
    .cake-gallery-card:first-child,
    .product-gallery article,
    .product-gallery article:first-child {
        min-height: 320px;
    }
}
