/* === Bella Dondurma Evora - Main Styles === */

/* CSS Variables */
:root {
    --pink: #f8b4c4;
    --pink-light: #fce4ec;
    --pink-dark: #e91e63;
    --sage: #a8d5ba;
    --sage-dark: #7cb342;
    --cream: #fef9f3;
    --cream-dark: #f5e6d3;
    --chocolate: #3e2723;
    --chocolate-light: #5d4037;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(62, 39, 35, 0.08);
    --shadow-hover: 0 8px 30px rgba(62, 39, 35, 0.15);
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--chocolate);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--chocolate);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--pink-dark);
}

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(248, 180, 196, 0.2);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-branding .site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate);
}

.site-branding .site-title span {
    color: var(--pink-dark);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--chocolate);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-dark);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--chocolate);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

@supports (height: 100svh) {
    .hero-section {
        height: 100svh;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 180, 196, 0.4) 0%, rgba(168, 213, 186, 0.3) 50%, rgba(254, 249, 243, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 16px;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-title span {
    color: var(--pink-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--chocolate-light);
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--pink);
    color: var(--chocolate);
    box-shadow: 0 4px 15px rgba(248, 180, 196, 0.4);
}

.btn-primary:hover {
    background: var(--pink-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--chocolate);
    border: 2px solid var(--chocolate);
}

.btn-secondary:hover {
    background: var(--chocolate);
    color: var(--white);
    transform: translateY(-2px);
}

/* === Sections === */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === Product Categories === */
.product-categories {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.category-card:hover h3 {
    color: var(--pink-dark);
}

.category-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    padding: 20px;
    text-align: center;
    transition: color var(--transition);
}

/* === Featured Products === */
.featured-products {
    padding: 80px 0;
    background: var(--pink-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: auto;
}

/* === Secret Section === */
.secret-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: stretch;
}

.feature-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    color: var(--pink-dark);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: auto;
}

/* === Gallery Section === */
.gallery-section {
    padding: 80px 0;
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* === QR Section === */
.qr-section {
    padding: 60px 0;
    background: var(--sage);
}

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

.qr-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--chocolate);
    margin-bottom: 8px;
}

.qr-text p {
    color: var(--chocolate-light);
    font-size: 1.1rem;
}

.qr-section .btn-primary {
    background: var(--chocolate);
    color: var(--white);
}

.qr-section .btn-primary:hover {
    background: var(--pink-dark);
}

/* === Location Section === */
.location-section {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location-map iframe {
    display: block;
    width: 100%;
    border-radius: var(--radius);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--pink-dark);
}

.info-block p,
.info-block a {
    color: var(--chocolate);
    font-size: 0.95rem;
}

/* === Footer === */
.site-footer {
    background: var(--chocolate);
    color: var(--cream);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--pink);
}

.footer-desc {
    margin: 16px 0;
    color: var(--cream-dark);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    color: var(--cream);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--pink);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-menu,
.contact-list {
    list-style: none;
}

.footer-menu li,
.contact-list li {
    margin-bottom: 10px;
}

.footer-menu a,
.contact-list a,
.contact-list span {
    color: var(--cream-dark);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-menu a:hover,
.contact-list a:hover {
    color: var(--pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream-dark);
    font-size: 0.9rem;
}

/* === Page Content === */
.site-main {
    padding-top: 72px;
}

.page-content,
.blog-post,
.single-post {
    padding: 48px 0;
}

.entry-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
}

.entry-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.post-thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* === Fade-in Animation === */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Subelerimiz (Ana Sayfa) === */
.subelerimiz-section {
    padding: 90px 0;
    background: var(--sage);
}

.subelerimiz-section .section-title {
    color: var(--chocolate);
}

.subelerimiz-section .section-subtitle {
    color: var(--chocolate-light);
}

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

.sube-mini-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid rgba(248, 180, 196, 0.08);
}

.sube-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sube-mini-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--chocolate);
    margin-bottom: 8px;
}

.sube-mini-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* === Subeler Sayfasi === */
.subeler-section {
    padding: 80px 0;
    background: var(--cream);
}

.subeler-section .subeler-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

.sube-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    border: 1px solid rgba(248, 180, 196, 0.08);
}

.sube-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sube-card-header {
    background: var(--pink-light);
    padding: 24px;
}

.sube-header-sage {
    background: var(--sage);
}

.sube-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--chocolate);
    margin: 0;
}

.sube-card-body {
    padding: 24px;
    flex: 1 1 auto;
}

.sube-desc {
    color: var(--chocolate-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sube-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.sube-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    color: var(--pink-dark);
}

.sube-header-sage + .sube-card-body .sube-icon {
    background: var(--sage);
    color: var(--chocolate);
}

.sube-info {
    display: flex;
    flex-direction: column;
}

.sube-info strong {
    font-size: 0.85rem;
    color: var(--chocolate);
    margin-bottom: 2px;
}

.sube-info span,
.sube-info a {
    font-size: 0.95rem;
    color: var(--chocolate-light);
    text-decoration: none;
}

.sube-info a:hover {
    color: var(--pink-dark);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.sube-map {
    height: 220px;
    overflow: hidden;
    border-top: 1px solid var(--cream-dark);
}

.sube-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--cream);
    color: var(--gray);
    text-align: center;
    padding: 24px;
}

.map-placeholder-icon {
    color: var(--pink-dark);
    opacity: 0.6;
}

.map-placeholder-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--chocolate-light);
}

/* Subeler CTA */
.subeler-cta-section {
    padding: 90px 0;
    background: var(--pink-light);
    text-align: center;
}

.subeler-cta-content {
    max-width: 640px;
    margin: 0 auto;
}

.subeler-cta-content .section-title {
    color: var(--chocolate);
    margin-bottom: 12px;
}

.subeler-cta-content p {
    color: var(--chocolate-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.subeler-cta-buttons {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .main-navigation {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid rgba(248, 180, 196, 0.3);
        padding: 24px;
        z-index: 999;
    }
    .main-navigation.active {
        display: block;
    }
    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .qr-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 480px;
        padding: 90px 0 50px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }
    .gallery-item.large {
        grid-column: span 1;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .product-categories,
    .featured-products,
    .secret-section,
    .gallery-section,
    .location-section {
        padding: 48px 0;
    }
}

/* === Page Hero === */
.page-hero {
    position: relative;
    padding: 120px 0 60px;
    background: var(--pink-light);
    text-align: center;
    overflow: hidden;
}

.page-dekor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    z-index: 1;
}

.page-dekor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 12px;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
}

/* === Story Section === */
.story-section {
    padding: 90px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--chocolate-light);
    line-height: 1.7;
}

.story-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* === Values Section === */
.values-section {
    padding: 90px 0;
    background: var(--cream);
}

/* === Section CTA === */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* === Gallery Preview === */
.gallery-preview-section {
    padding: 90px 0;
    background: var(--cream-dark);
}

.gallery-preview-section .gallery-grid {
    grid-template-rows: repeat(2, 250px);
}

/* === Franchise CTA Section === */
.franchise-cta-section {
    padding: 90px 0;
    background: var(--sage);
}

.franchise-cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.franchise-cta-text .section-title {
    color: var(--chocolate);
}

.franchise-cta-text p {
    color: var(--chocolate-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* === Contact CTA Section === */
.contact-cta-section {
    padding: 90px 0;
    background: var(--white);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* === Franchise Form === */
.franchise-section {
    padding: 80px 0;
    background: var(--cream);
}

.franchise-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.franchise-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--chocolate);
}

.form-group .required {
    color: var(--pink-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--chocolate);
    background: var(--cream);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
}

.form-radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label,
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: var(--chocolate-light);
}

.radio-label input,
.checkbox-label input {
    accent-color: var(--pink-dark);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox {
    margin: 24px 0;
}

.form-checkbox a {
    color: var(--pink-dark);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-honeypot {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.form-message {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* === Policy Cards === */
.policies-section {
    padding: 80px 0;
    background: var(--cream);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.policy-card {
    display: block;
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid rgba(248, 180, 196, 0.08);
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.policy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-light);
    border-radius: 50%;
    color: var(--pink-dark);
}

.policy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--chocolate);
}

.policy-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === Policy Content === */
.policy-content-section {
    padding: 60px 0 90px;
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--chocolate);
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 32px 0 12px;
    color: var(--chocolate);
}

.policy-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--chocolate-light);
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: var(--chocolate-light);
}

.policy-note {
    margin-top: 40px;
    padding: 20px;
    background: var(--pink-light);
    border-radius: var(--radius-sm);
    color: var(--chocolate) !important;
}

/* === Logo images === */
.site-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    max-height: 35px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

/* === Footer Policies === */
.footer-policies {
    min-width: 0;
}

/* === Responsive additions === */
@media (max-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-cta-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 48px;
    }
    .page-dekor {
        height: 60px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .franchise-form {
        padding: 24px;
    }
    .policies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .contact-cta-grid {
        grid-template-columns: 1fr;
    }
    .gallery-preview-section .gallery-grid {
        grid-template-rows: repeat(2, 200px);
    }
    .franchise-cta-section,
    .contact-cta-section,
    .story-section,
    .values-section,
    .policies-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }
    .policy-card {
        padding: 24px 20px;
    }
    .contact-cta-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .gallery-preview-section .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-preview-section .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .form-radio-group {
        flex-direction: column;
        gap: 12px;
    }
    .subeler-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sube-mini-card {
        padding: 20px 18px;
    }
    .subeler-section .subeler-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sube-card-header {
        padding: 20px;
    }
    .sube-card-body {
        padding: 20px;
    }
    .sube-title {
        font-size: 1.15rem;
    }
    .sube-map {
        height: 180px;
    }
    .subeler-cta-section {
        padding: 60px 0;
    }
    .subeler-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .subeler-cta-buttons .btn {
        width: 100%;
    }
}

/* === Professional polish layer v1.1 === */
body {
    background:
        radial-gradient(circle at top left, rgba(248, 180, 196, 0.18), transparent 34rem),
        linear-gradient(180deg, #fffaf4 0%, #fef9f3 100%);
}

.site-header {
    background: rgba(255, 250, 244, 0.96);
    border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}

.header-inner {
    height: 88px;
    gap: 28px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-logo-img {
    max-height: 62px;
    width: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(62, 39, 35, 0.12));
}

.nav-menu {
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-size: 1rem;
}

.nav-menu li:last-child a,
.nav-menu a[href*="qr.belladondurma.com"] {
    padding: 11px 18px;
    background: var(--chocolate);
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(62, 39, 35, 0.14);
}

.nav-menu li:last-child a::after,
.nav-menu a[href*="qr.belladondurma.com"]::after {
    display: none;
}

.hero-section {
    margin-top: 0;
}

.hero-content {
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.72);
    box-shadow: 0 24px 80px rgba(62, 39, 35, 0.12);
    backdrop-filter: blur(10px);
}

.hero-brand-logo {
    width: 132px;
    height: 132px;
    object-fit: contain;
    margin: 0 auto 18px;
    filter: drop-shadow(0 14px 24px rgba(62, 39, 35, 0.16));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pink-dark);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--pink-dark);
    border-radius: 2px;
}

.page-hero {
    margin-top: 88px;
    padding: 0 0 72px;
    background:
        linear-gradient(180deg, rgba(252, 228, 236, 0.88), rgba(255, 250, 244, 1)),
        radial-gradient(circle at 78% 70%, rgba(168, 213, 186, 0.28), transparent 24rem);
    text-align: center;
    overflow: visible;
}

.page-dekor {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: clamp(92px, 10vw, 148px);
    overflow: hidden;
    z-index: 1;
    margin: 0 0 46px;
    background: #91bea8;
}

.page-dekor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
}

.page-hero-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
}

.page-hero-subtitle {
    max-width: 720px;
    color: rgba(62, 39, 35, 0.72);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section-title {
    line-height: 1.08;
}

.story-section-premium {
    padding-top: 96px;
}

.story-text .section-title {
    max-width: 620px;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.story-highlights div {
    padding: 18px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid rgba(62, 39, 35, 0.08);
}

.story-highlights strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--pink-dark);
}

.story-highlights span {
    display: block;
    margin-top: 6px;
    color: var(--chocolate-light);
    font-size: 0.92rem;
}

.story-visual {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(62, 39, 35, 0.16);
}

.story-visual img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.image-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.92);
    box-shadow: 0 16px 36px rgba(62, 39, 35, 0.16);
}

.image-note strong,
.image-note span {
    display: block;
}

.image-note span {
    color: var(--chocolate-light);
    font-size: 0.95rem;
}

.craft-section,
.menu-strip-section,
.brand-cta-section {
    padding: 84px 0;
}

.craft-section {
    background: var(--cream);
}

.craft-panel,
.menu-strip,
.brand-cta-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(62, 39, 35, 0.10);
    border: 1px solid rgba(62, 39, 35, 0.06);
}

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

.process-card,
.category-card,
.product-card,
.feature-item,
.sube-mini-card,
.info-block {
    border: 1px solid rgba(62, 39, 35, 0.06);
}

.process-card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
    box-shadow: var(--shadow);
}

.process-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-weight: 800;
}

.process-card h3,
.product-info h3,
.category-card h3 {
    font-family: var(--font-heading);
}

.menu-category-section .category-card {
    background: var(--cream);
}

.category-card p {
    padding: 0 20px 22px;
    color: var(--chocolate-light);
    text-align: center;
    font-size: 0.95rem;
}

.featured-products .product-card {
    background: #fffaf4;
}

.qr-section {
    background: linear-gradient(135deg, var(--sage), #c6dfcf);
}

.qr-content {
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.82);
    padding: clamp(26px, 4vw, 44px);
}

.drink-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.drink-preview img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.brand-cta-card {
    background: linear-gradient(135deg, var(--chocolate), #5d4037);
    color: var(--white);
}

.brand-cta-card .section-title,
.brand-cta-card h2,
.brand-cta-card .eyebrow {
    color: var(--white);
}

.brand-cta-card .eyebrow::before {
    background: var(--white);
}

.brand-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-logo-img {
    max-height: 76px;
    filter: drop-shadow(0 10px 20px rgba(62, 39, 35, 0.15));
}

@media (max-width: 1100px) {
    .header-inner {
        height: 82px;
    }
    .site-logo-img {
        max-height: 56px;
    }
    .nav-menu {
        gap: 18px;
    }
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 74px;
    }
    .site-logo-img {
        max-height: 48px;
    }
    .page-hero {
        margin-top: 74px;
        padding-bottom: 52px;
    }
    .page-dekor {
        height: 84px;
        margin-bottom: 34px;
    }
    .hero-content {
        padding: 26px 20px;
        margin: 0 16px;
    }
    .hero-brand-logo {
        width: 104px;
        height: 104px;
    }
    .story-highlights,
    .craft-panel,
    .menu-strip,
    .brand-cta-card {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .brand-cta-actions {
        justify-content: stretch;
    }
    .brand-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-dekor {
        height: 72px;
    }
    .page-hero-title {
        font-size: 2.25rem;
    }
    .story-highlights {
        grid-template-columns: 1fr;
    }
    .drink-preview {
        grid-template-columns: 1fr;
    }
}


/* === Header-attached transparent drip correction === */
.page-hero {
    margin-top: 88px;
    padding: clamp(86px, 9vw, 132px) 0 clamp(58px, 7vw, 86px);
    background: linear-gradient(180deg, rgba(252, 228, 236, 0.92) 0%, rgba(255, 250, 244, 0.98) 100%);
    overflow: visible;
}

.page-dekor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(58px, 7vw, 96px);
    margin: 0;
    overflow: visible;
    background: transparent !important;
    pointer-events: none;
    z-index: 1;
    transform: translateY(-1px);
}

.page-dekor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    display: block;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(18px, 4vw, 44px);
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 74px;
        padding: 74px 0 54px;
    }
    .page-dekor {
        height: 56px;
    }
    .page-hero-content {
        padding-top: 18px;
    }
}

@media (max-width: 480px) {
    .page-dekor {
        height: 46px;
    }
}

/* === Dondurma Dukkani style page top v1.1.2 === */
.site-header {
    position: sticky;
    top: 0;
}

.page-hero {
    position: relative;
    margin-top: 0 !important;
    min-height: clamp(330px, 34vw, 440px);
    padding: clamp(78px, 9vw, 132px) 0 clamp(150px, 13vw, 210px) !important;
    background: #8bbaa3 !important;
    overflow: visible;
    text-align: left;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 22rem),
        linear-gradient(180deg, rgba(139, 186, 163, 0.98), rgba(139, 186, 163, 0.98));
    z-index: 0;
}

.page-dekor {
    position: absolute !important;
    left: 0;
    right: 0;
    top: auto !important;
    bottom: clamp(-132px, -8vw, -88px);
    height: clamp(210px, 15vw, 310px) !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    pointer-events: none;
    z-index: 1;
    transform: none !important;
}

.page-dekor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center !important;
    opacity: 1;
    display: block;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 760px;
    margin: 0;
    padding: 0 !important;
    text-align: left;
}

.page-hero .eyebrow,
.page-hero-title,
.page-hero-subtitle {
    color: #fffaf4 !important;
}

.page-hero .eyebrow::before {
    background: #fffaf4 !important;
}

.page-hero-title {
    text-shadow: 0 12px 30px rgba(62, 39, 35, 0.14);
}

.page-hero-subtitle {
    max-width: 680px;
    margin-left: 0;
    color: rgba(255, 250, 244, 0.86) !important;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 320px;
        padding: 70px 0 140px !important;
    }
    .page-dekor {
        bottom: -82px;
        height: 190px !important;
    }
    .page-hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .page-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 300px;
        padding: 58px 0 118px !important;
    }
    .page-dekor {
        bottom: -64px;
        height: 150px !important;
    }
}

/* === Compact attached page top v1.1.3 === */
html body.admin-bar .site-header {
    top: 32px;
}

.page-hero {
    margin-top: 0 !important;
    min-height: 0 !important;
    padding: clamp(42px, 4.4vw, 72px) 0 clamp(96px, 7vw, 132px) !important;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero-title {
    font-size: clamp(2.55rem, 4.5vw, 4.35rem);
}

.page-dekor {
    bottom: clamp(-78px, -5vw, -54px) !important;
    height: clamp(132px, 9.5vw, 190px) !important;
}

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

@media (max-width: 768px) {
    .page-hero {
        padding: 38px 0 86px !important;
    }
    .page-dekor {
        bottom: -54px !important;
        height: 126px !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 34px 0 72px !important;
    }
    .page-dekor {
        bottom: -42px !important;
        height: 102px !important;
    }
}

/* === Flush compact page top v1.1.4 === */
.site-main {
    padding-top: 0 !important;
}

.page-hero {
    padding: 0 0 clamp(78px, 5.4vw, 104px) !important;
}

.page-hero .container {
    min-height: clamp(220px, 22vw, 300px);
    display: flex;
    align-items: center;
}

.page-hero-content {
    padding-top: clamp(30px, 3vw, 48px) !important;
}

.page-dekor {
    bottom: clamp(-62px, -3.8vw, -42px) !important;
    height: clamp(112px, 7.8vw, 156px) !important;
}

@media (max-width: 768px) {
    .page-hero {
        padding-bottom: 74px !important;
    }

    .page-hero .container {
        min-height: 210px;
    }

    .page-hero-content {
        padding-top: 28px !important;
    }

    .page-dekor {
        bottom: -44px !important;
        height: 106px !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding-bottom: 62px !important;
    }

    .page-hero .container {
        min-height: 190px;
    }

    .page-dekor {
        bottom: -36px !important;
        height: 88px !important;
    }
}

/* === Pull content closer to drip v1.1.5 === */
.story-section {
    padding-top: clamp(34px, 3.4vw, 58px) !important;
}

.story-section .story-grid {
    align-items: start !important;
}

.story-section .story-text {
    padding-top: clamp(10px, 1.2vw, 22px);
}

@media (max-width: 768px) {
    .story-section {
        padding-top: 32px !important;
    }

    .story-section .story-text {
        padding-top: 0;
    }
}

/* === Stronger drip overlap v1.1.6 === */
.page-dekor {
    bottom: clamp(-92px, -5.4vw, -72px) !important;
    height: clamp(150px, 9vw, 184px) !important;
}

.story-section {
    padding-top: clamp(18px, 1.8vw, 32px) !important;
}

.story-section .story-text {
    padding-top: clamp(24px, 2.7vw, 52px);
}

.story-section .story-visual {
    margin-top: clamp(-8px, -0.7vw, -4px);
}

@media (max-width: 768px) {
    .page-dekor {
        bottom: -64px !important;
        height: 134px !important;
    }

    .story-section {
        padding-top: 24px !important;
    }

    .story-section .story-text,
    .story-section .story-visual {
        margin-top: 0;
        padding-top: 0;
    }
}

/* === Full background page hero v1.1.7 === */
.page-hero {
    min-height: clamp(390px, 27.4vw, 560px) !important;
    padding: 0 !important;
    background-color: #8bbaa3 !important;
    background-image: url('../images/ust-bolum2.png') !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-size: 100% 100% !important;
    overflow: hidden !important;
}

.page-hero::before,
.page-dekor {
    display: none !important;
}

.page-hero .container {
    min-height: clamp(300px, 19.8vw, 405px) !important;
    display: flex;
    align-items: center;
}

.page-hero-content {
    padding-top: 0 !important;
}

.story-section {
    padding-top: clamp(22px, 2.2vw, 44px) !important;
}

.story-section .story-text {
    padding-top: 0;
}

.story-section .story-visual {
    margin-top: 0;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 360px !important;
        background-size: auto 100% !important;
    }

    .page-hero .container {
        min-height: 250px !important;
    }

    .story-section {
        padding-top: 28px !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 330px !important;
    }

    .page-hero .container {
        min-height: 230px !important;
    }
}

/* === Preserve transparent drip cutout v1.1.8 === */
.page-hero {
    background-color: #fffaf4 !important;
}

/* === Redesigned home page v1.1.9 === */
.home-main {
    padding-top: 0 !important;
    background: #fffaf4;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 6vw, 92px) 0 clamp(62px, 7vw, 104px);
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 250, 244, 0.78)),
        radial-gradient(circle at 18% 20%, rgba(248, 180, 196, 0.26), transparent 24rem),
        radial-gradient(circle at 86% 34%, rgba(139, 186, 163, 0.34), transparent 28rem),
        #fffaf4;
}

.home-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(98px, 10vw, 164px);
    background: url('../images/ust-bolum2.png') bottom center / 100% auto no-repeat;
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
}

.home-hero-copy {
    max-width: 640px;
}

.home-hero-logo {
    width: clamp(88px, 8vw, 126px);
    height: clamp(88px, 8vw, 126px);
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 12px 26px rgba(62, 39, 35, 0.14));
}

.home-hero h1,
.home-section-heading h2,
.home-story-copy h2,
.home-action-card h2 {
    font-family: var(--font-heading);
    color: var(--chocolate);
    line-height: 1.05;
}

.home-hero h1 {
    max-width: 640px;
    margin: 0 0 20px;
    font-size: clamp(3rem, 6vw, 6rem);
}

.home-hero-copy > p {
    max-width: 570px;
    margin: 0 0 28px;
    color: rgba(62, 39, 35, 0.72);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
}

.home-hero-stats div,
.home-branch-grid div,
.home-process-list div {
    border: 1px solid rgba(62, 39, 35, 0.08);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 42px rgba(62, 39, 35, 0.08);
}

.home-hero-stats div {
    padding: 18px;
    border-radius: 16px;
}

.home-hero-stats strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--pink-dark);
    font-size: 2rem;
    line-height: 1;
}

.home-hero-stats span {
    display: block;
    margin-top: 6px;
    color: var(--chocolate-light);
    font-size: 0.92rem;
}

.home-hero-showcase {
    position: relative;
    min-height: clamp(480px, 44vw, 680px);
}

.home-showcase-main {
    position: absolute;
    inset: 4% 8% 2% 14%;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(62, 39, 35, 0.18);
    background: #ffd979;
}

.home-showcase-main img,
.home-mini-photo img,
.home-category-card img,
.home-product-card img,
.home-story-visual img,
.home-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-flavor-note {
    position: absolute;
    z-index: 2;
    width: min(220px, 46%);
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.92);
    border: 1px solid rgba(62, 39, 35, 0.08);
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.16);
}

.home-flavor-note strong,
.home-flavor-note span,
.home-branch-grid strong,
.home-branch-grid span,
.home-category-card strong,
.home-category-card span {
    display: block;
}

.home-flavor-note strong,
.home-category-card strong,
.home-branch-grid strong {
    font-family: var(--font-heading);
    color: var(--chocolate);
}

.home-flavor-note span,
.home-category-card span,
.home-branch-grid span {
    color: var(--chocolate-light);
    font-size: 0.92rem;
}

.note-one {
    top: 15%;
    left: 0;
}

.note-two {
    right: 0;
    bottom: 16%;
}

.home-mini-photo {
    position: absolute;
    left: 2%;
    bottom: 2%;
    width: clamp(130px, 15vw, 210px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 10px solid #fffaf4;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(62, 39, 35, 0.20);
}

.home-menu-strip,
.home-story,
.home-featured,
.home-action-band,
.home-gallery,
.home-branches {
    padding: clamp(58px, 7vw, 96px) 0;
}

.home-menu-strip {
    background: #fffaf4;
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 34px;
}

.home-section-heading .eyebrow,
.home-section-heading h2,
.home-section-heading p {
    grid-column: 1;
}

.home-section-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.home-section-heading p {
    max-width: 620px;
    margin: 4px 0 0;
    color: var(--chocolate-light);
    font-size: 1.05rem;
}

.home-section-heading > a {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    color: var(--pink-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.home-section-heading.centered {
    display: block;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home-section-heading.centered .eyebrow {
    justify-content: center;
}

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

.home-category-card {
    display: grid;
    grid-template-rows: 220px auto;
    overflow: hidden;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(62, 39, 35, 0.08);
    box-shadow: 0 18px 46px rgba(62, 39, 35, 0.09);
    transition: transform var(--transition), box-shadow var(--transition);
}

.home-category-card:hover,
.home-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 66px rgba(62, 39, 35, 0.14);
}

.home-category-card div {
    padding: 18px;
}

.home-story {
    background:
        linear-gradient(180deg, #fce4ec 0%, #fffaf4 100%);
}

.home-story-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(36px, 6vw, 76px);
    align-items: center;
}

.home-story-visual {
    min-height: 560px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 76px rgba(62, 39, 35, 0.15);
}

.home-story-copy h2 {
    max-width: 660px;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.home-story-copy > p {
    max-width: 650px;
    color: var(--chocolate-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.home-process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.home-process-list div {
    padding: 20px;
    border-radius: 20px;
}

.home-process-list span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-weight: 800;
}

.home-process-list strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--chocolate);
    margin-bottom: 6px;
}

.home-process-list p {
    margin: 0;
    color: var(--chocolate-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-featured {
    background: #fffaf4;
}

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

.home-product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(62, 39, 35, 0.08);
    box-shadow: 0 18px 46px rgba(62, 39, 35, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.home-product-card img {
    aspect-ratio: 1;
    height: auto;
}

.home-product-card h3 {
    margin: 18px 18px 6px;
    font-family: var(--font-heading);
    color: var(--chocolate);
}

.home-product-card p {
    margin: 0 18px 20px;
    color: var(--chocolate-light);
    font-size: 0.94rem;
}

.home-action-band {
    background: linear-gradient(135deg, #8bbaa3 0%, #f8b4c4 100%);
}

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

.home-action-card {
    min-height: 340px;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 24px 70px rgba(62, 39, 35, 0.12);
}

.home-action-card h2 {
    max-width: 560px;
    margin: 0 0 14px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.home-action-card p {
    max-width: 540px;
    margin-bottom: 26px;
    color: var(--chocolate-light);
    line-height: 1.7;
}

.franchise-card {
    background: rgba(62, 39, 35, 0.9);
}

.franchise-card h2,
.franchise-card p,
.franchise-card .eyebrow {
    color: #fffaf4;
}

.franchise-card .eyebrow::before {
    background: #fffaf4;
}

.home-gallery {
    background: #f6ead9;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    grid-template-rows: repeat(2, 260px);
    gap: 18px;
}

.home-gallery-grid img {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(62, 39, 35, 0.10);
}

.home-gallery-grid .wide {
    grid-row: span 2;
}

.home-branches {
    background: #fffaf4;
}

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

.home-branch-grid div {
    padding: 22px;
    border-radius: 20px;
}

.home-branch-grid strong {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.home-branches .section-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .home-hero-grid,
    .home-story-grid,
    .home-action-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-showcase {
        min-height: 560px;
    }

    .home-category-grid,
    .home-product-grid,
    .home-branch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-process-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 38px 0 72px;
    }

    .home-hero h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .home-hero-showcase {
        min-height: 420px;
    }

    .home-showcase-main {
        inset: 0 5% 0 8%;
        border-radius: 24px;
    }

    .home-flavor-note {
        width: 190px;
    }

    .home-hero-stats,
    .home-category-grid,
    .home-product-grid,
    .home-branch-grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading {
        display: block;
    }

    .home-section-heading > a {
        display: inline-flex;
        margin-top: 16px;
    }

    .home-story-visual {
        min-height: 360px;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .home-gallery-grid img,
    .home-gallery-grid .wide {
        grid-row: auto;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .home-hero-actions .btn,
    .home-branches .section-cta .btn {
        width: 100%;
    }

    .home-hero-showcase {
        min-height: 360px;
    }

    .home-mini-photo {
        width: 120px;
        border-width: 7px;
    }

    .home-flavor-note {
        width: 170px;
        padding: 13px;
    }

    .home-category-card {
        grid-template-rows: 190px auto;
    }
}

/* === Home hero compaction v1.2.0 === */
.home-hero {
    padding-top: clamp(38px, 4.8vw, 70px);
    padding-bottom: clamp(72px, 7vw, 94px);
}

.home-hero::after {
    z-index: 0;
    height: clamp(82px, 8vw, 136px);
}

.home-hero-grid {
    gap: clamp(30px, 4.8vw, 62px);
}

.home-hero-logo {
    width: clamp(76px, 6.5vw, 104px);
    height: clamp(76px, 6.5vw, 104px);
    margin-bottom: 14px;
}

.home-hero h1 {
    max-width: 590px;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.home-hero-copy > p {
    margin-bottom: 22px;
}

.home-hero-actions {
    margin-bottom: 22px;
}

.home-hero-stats div {
    padding: 14px 16px;
}

.home-hero-showcase {
    min-height: clamp(430px, 38vw, 580px);
}

@media (max-width: 768px) {
    .home-hero {
        padding: 26px 0 58px;
    }

    .home-hero::after {
        height: 82px;
    }

    .home-hero-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }

    .home-hero h1 {
        margin-bottom: 14px;
        font-size: clamp(2.2rem, 10vw, 3.25rem);
    }

    .home-hero-copy > p {
        margin-bottom: 18px;
        font-size: 1rem;
        line-height: 1.58;
    }

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

    .home-hero-actions .btn {
        min-height: 52px;
        padding: 12px 22px;
    }

    .home-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .home-hero-stats div {
        padding: 11px 9px;
        border-radius: 14px;
    }

    .home-hero-stats strong {
        font-size: 1.55rem;
    }

    .home-hero-stats span {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .home-hero-showcase {
        min-height: 330px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding-top: 22px;
    }

    .home-hero-logo {
        width: 64px;
        height: 64px;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 9.3vw, 2.85rem);
    }

    .home-hero-showcase {
        min-height: 310px;
    }

    .home-mini-photo {
        width: 104px;
    }

    .home-flavor-note {
        width: 150px;
    }
}

/* === Home drip placement polish v1.2.1 === */
.home-hero::after {
    bottom: -34px;
}

@media (max-width: 768px) {
    .home-hero::after {
        bottom: -18px;
    }
}

/* === Compact professional footer v1.2.2 === */
.site-footer {
    padding: clamp(42px, 5vw, 64px) 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) minmax(130px, 0.72fr) minmax(190px, 0.9fr) minmax(180px, 0.85fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
    margin-bottom: 34px;
}

.footer-logo-img {
    max-height: 64px;
    width: auto;
    margin-bottom: 14px;
}

.footer-desc {
    max-width: 560px;
    margin: 0 0 16px;
    line-height: 1.65;
}

.footer-title {
    margin-bottom: 14px;
}

.footer-menu li,
.contact-list li {
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit a {
    color: var(--pink);
    font-weight: 700;
}

.footer-credit a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-credit {
        margin-top: 8px !important;
    }
}

/* === Larger header logo and tighter home hero v1.2.3 === */
.site-header {
    overflow: visible;
}

.header-inner {
    overflow: visible;
}

.site-logo-link {
    position: relative;
    z-index: 4;
}

.site-logo-img {
    max-height: 86px;
    transform: translateY(12px);
    transform-origin: center top;
}

.home-hero {
    padding-top: clamp(26px, 3.4vw, 46px);
}

.home-hero-copy {
    padding-top: clamp(10px, 1.4vw, 18px);
}

@media (max-width: 1100px) {
    .site-logo-img {
        max-height: 76px;
        transform: translateY(9px);
    }
}

@media (max-width: 768px) {
    .site-logo-img {
        max-height: 58px;
        transform: translateY(5px);
    }

    .home-hero {
        padding-top: 18px;
    }

    .home-hero-copy {
        padding-top: 0;
    }
}
