:root {
    --bg-primary: #F2F5F8;
    --bg-secondary: #E4EAF0;
    --bg-tertiary: #D8E0E8;
    --bg-quaternary: #D0D8E0;
    --bg-quinary: #C8D0D8;
    --text-primary: #1C2428;
    --text-secondary: #6B7880;
    --accent-chef-blue: #0066CC;
    --accent-ember-orange: #CC5500;
    --accent-fresh-mint: #00AA88;
    --accent-golden-wheat: #CCAA00;
    --shadow-soft: 0 4px 20px rgba(0, 102, 204, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 102, 204, 0.12);
    --shadow-strong: 0 16px 40px rgba(0, 102, 204, 0.28);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.35px;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--transition-smooth);
}

a:hover {
    color: var(--accent-chef-blue);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--text-primary);
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-primary);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.15;
    animation: float 52s infinite var(--transition-smooth);
}

.blob-1 {
    width: 280px;
    height: 280px;
    background: var(--accent-chef-blue);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.blob-2 {
    width: 220px;
    height: 220px;
    background: var(--accent-ember-orange);
    top: 60%;
    right: 20%;
    animation-delay: -12s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-fresh-mint);
    bottom: 20%;
    left: 10%;
    animation-delay: -24s;
}

.blob-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-golden-wheat);
    top: 30%;
    right: 10%;
    animation-delay: -36s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(12px, -12px) rotate(3deg);
    }
    50% {
        transform: translate(-8px, 8px) rotate(-2deg);
    }
    75% {
        transform: translate(6px, 6px) rotate(1deg);
    }
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
}

.floating-wave-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    height: 64px;
    background: rgba(242, 245, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-chef-blue);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--transition-smooth);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-chef-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-domain {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    text-transform: lowercase;
}

.logo-name {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

nav.main-nav a {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s var(--transition-smooth);
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-chef-blue);
    border-radius: 1px;
    transition: width 0.3s var(--transition-smooth);
}

nav.main-nav a:hover {
    color: var(--accent-chef-blue);
}

nav.main-nav a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s var(--transition-smooth);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    display: block;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--bg-secondary);
}

.mobile-menu-header .logo-domain {
    font-size: 14px;
}

.close-menu {
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 48px;
    list-style: none;
}

.mobile-nav-list a {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
}

.mobile-menu-cta {
    display: block;
    width: calc(100% - 40px);
    margin: 40px 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent-chef-blue), #0055aa);
    color: #fff;
    text-align: center;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.magnetic-ui-trigger {
    position: relative;
    overflow: hidden;
}

.magnetic-ui-trigger::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.05) 50%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-out;
}

.magnetic-ui-trigger:hover::before {
    opacity: 1;
    animation: magneticGlow 0.28s ease-out forwards;
}

@keyframes magneticGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

.magnetic-ui-trigger::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0, 102, 204, 0.4);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.18s ease-out;
}

.magnetic-ui-trigger:hover::after {
    opacity: 1;
}

.card-hover {
    transition: transform 0.24s ease-out, box-shadow 0.24s ease-out;
}

.card-hover:hover {
    z-index: 100 !important;
    position: relative;
    transform: translateZ(0) translateY(-12px) scale(1.04);
    box-shadow: var(--shadow-strong);
}

main {
    padding-top: 104px;
}

section {
    padding: 80px 0;
}

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

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.hero-section {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

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

.hero-content {
    animation: fadeInUp 0.6s var(--transition-smooth) forwards;
}

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

.hero-title-line {
    font-size: clamp(48px, 8vw, 140px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0;
    animation: staggerReveal 0.5s var(--transition-smooth) forwards;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes staggerReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.frost-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 3px solid var(--accent-chef-blue);
    border-radius: 20px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.24s ease-out;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.15);
}

.frost-button:hover {
    background: var(--accent-chef-blue);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.6s var(--transition-smooth) 0.26s forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.frost-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.frost-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

.frost-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.frost-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid var(--accent-chef-blue);
    z-index: 2;
}

.frost-corner.top-left {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none;
}

.frost-corner.top-right {
    top: 12px;
    right: 12px;
    border-left: none;
    border-bottom: none;
}

.frost-corner.bottom-left {
    bottom: 12px;
    left: 12px;
    border-right: none;
    border-top: none;
}

.frost-corner.bottom-right {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none;
}

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

.section-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    background: var(--bg-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-cell {
    padding: 24px;
    transition: all 0.24s ease-out;
}

.bento-cell.featured {
    grid-column: span 2;
}

.bento-cell.featured .service-image {
    height: 280px;
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-chef-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-chef-blue);
}

.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 60px;
    align-items: start;
}

.parallax-gallery {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-viewport {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
}

.gallery-viewport img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.gallery-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-chef-blue);
    background: transparent;
    color: var(--accent-chef-blue);
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.gallery-nav button:hover {
    background: var(--accent-chef-blue);
    color: #fff;
}

.about-content {
    padding: 20px 0;
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-content p:first-of-type::first-letter {
    font-size: 52px;
    font-weight: 600;
    color: var(--accent-chef-blue);
    float: left;
    line-height: 1;
    margin-right: 12px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--bg-secondary);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 600;
    color: var(--accent-chef-blue);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.process-section {
    background: var(--bg-tertiary);
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 40px 0;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.flow-node:hover {
    transform: scale(1.06);
}

.flow-marker {
    width: 12px;
    height: 12px;
    background: var(--accent-chef-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.flow-label {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: var(--text-primary);
}

.flow-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-chef-blue), rgba(0, 102, 204, 0.3));
}

.strengths-section {
    background: var(--bg-primary);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.badge-item {
    padding: 32px;
    text-align: center;
    transition: all 0.24s ease-out;
}

.badge-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-ember-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.badge-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.badge-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.achievements-section {
    background: var(--text-primary);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stream-marquee {
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 40px;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 18s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 60px;
}

.marquee-delimiter {
    color: var(--accent-fresh-mint);
}

.stream-bands {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
}

.stream-bands.top {
    top: 0;
    background: linear-gradient(90deg, var(--accent-chef-blue), var(--accent-fresh-mint), var(--accent-golden-wheat));
}

.stream-bands.bottom {
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-golden-wheat), var(--accent-fresh-mint), var(--accent-chef-blue));
}

.achievements-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-number {
    font-size: 60px;
    font-weight: 600;
    color: var(--accent-chef-blue);
    line-height: 1;
    animation: pulseIn 0.6s var(--transition-smooth);
}

@keyframes pulseIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.team-section {
    background: var(--bg-quaternary);
}

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

.profile-card {
    text-align: center;
    padding: 24px;
    transition: all 0.24s ease-out;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid rgba(255, 255, 255, 0.6);
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 12px;
    color: var(--text-secondary);
}

.faq-section {
    background: var(--bg-primary);
}

.accordion-container {
    max-width: 860px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 102, 204, 0.15);
    transition: all 0.2s var(--transition-smooth);
}

.accordion-item:first-child {
    border-top: 1px solid rgba(0, 102, 204, 0.15);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.2s var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--accent-chef-blue);
}

.accordion-question {
    font-size: 15px;
    font-weight: 500;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--transition-smooth);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-answer {
    padding: 0 0 20px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    border-left: 4px solid var(--accent-chef-blue);
}

.reviews-section {
    background: var(--bg-quinary);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.carousel-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    min-height: 320px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 calc(50% - 180px);
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 300px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    transform: scale(0.82);
    opacity: 0.5;
    filter: blur(1px);
    scroll-snap-align: center;
}

.review-card.active {
    flex: 0 0 360px;
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 100;
}

.review-bar {
    width: 100%;
    height: 4px;
    background: var(--accent-chef-blue);
    border-radius: 2px;
    margin-bottom: 16px;
}

.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.review-role {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.review-stars {
    color: var(--accent-golden-wheat);
    font-size: 16px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent-chef-blue);
    background: transparent;
    color: var(--accent-chef-blue);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.carousel-nav button:hover {
    background: var(--accent-chef-blue);
    color: #fff;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--accent-chef-blue);
    opacity: 1;
}

.contact-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
}

.contact-form .glass-panel {
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--bg-secondary);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-chef-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--accent-chef-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.24s ease-out;
}

.submit-button:hover {
    background: #0055aa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-chef-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-map {
    margin-top: 32px;
    height: 200px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
}

footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.2s var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--accent-chef-blue);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--bg-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links a {
    font-size: 12px;
    color: var(--text-secondary);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.3s var(--transition-smooth);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-consent-banner h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cookie-consent-banner p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cookie-categories {
    margin-bottom: 16px;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 12px;
}

.cookie-category input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-chef-blue);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    flex: 1;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
}

.cookie-accept {
    background: var(--accent-chef-blue);
    color: #fff;
    border: none;
}

.cookie-accept:hover {
    background: #0055aa;
}

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--bg-tertiary);
}

.cookie-decline:hover {
    border-color: var(--text-secondary);
}

.thank-you-section {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thank-you-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.legal-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 104px);
}

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

.legal-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 32px;
    text-align: center;
}

.legal-content h2 {
    font-size: 20px;
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-secondary);
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    header {
        padding: 0 20px;
    }

    .floating-wave-nav {
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-cell.featured {
        grid-column: span 2;
    }

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

    .parallax-gallery {
        position: relative;
        top: 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        min-width: auto;
        width: 100%;
        top: 10px;
    }

    .floating-wave-nav {
        padding: 0 16px;
        height: 56px;
    }

    .logo-section {
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    nav.main-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

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

    .bento-cell.featured {
        grid-column: span 1;
    }

    .bento-cell.featured .service-image {
        height: 200px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .flow-container {
        flex-direction: column;
        gap: 16px;
    }

    .flow-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, var(--accent-chef-blue), rgba(0, 102, 204, 0.3));
    }

    .achievements-counters {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .counter-number {
        font-size: 48px;
    }

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

    .review-card {
        flex: 0 0 280px;
    }

    .review-card.active {
        flex: 0 0 300px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 40px;
    }

    .frost-button {
        width: 100%;
        justify-content: center;
    }

    .achievements-section {
        min-height: 500px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .marquee-content {
        gap: 40px;
    }

    .carousel-container {
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        gap: 12px;
        min-height: 280px;
    }

    .review-card {
        flex: 0 0 260px;
        padding: 16px;
    }

    .review-card.active {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        gap: 8px;
        min-height: 240px;
    }

    .review-card {
        flex: 0 0 200px;
        padding: 12px;
    }

    .review-card.active {
        flex: 0 0 240px;
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.42s ease-out, transform 0.42s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.4s var(--transition-smooth);
}

.form-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
}

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