:root {
    --linen-white: #FCFAF6;
    --cloud-mist: #F2F0EA;
    --cotton-stone: #E6E4DE;
    --carbon-black: #1A1A1A;
    --warm-grey: #2A2A2A;
    --clay-terracotta: #B8653A;
    --burnt-umber: #8B4A2A;
    --terracotta-glow: rgba(184, 101, 58, 0.26);
    --terracotta-border: rgba(184, 101, 58, 0.14);
    --text-muted: rgba(42, 42, 42, 0.7);
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

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

strong, p {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 2.00;
    color: var(--warm-grey);
    background-color: var(--linen-white);
    overflow-x: hidden;
}

.l-semi-bold {
    font-weight: 500;
}

.l-bold {
    font-weight: 700;
}

.l-text-accent {
    color: var(--clay-terracotta);
}

.l-text-dark {
    color: var(--carbon-black);
}

.l-bg-linen {
    background-color: var(--linen-white);
}

.l-bg-cloud {
    background-color: var(--cloud-mist);
}

.l-bg-cotton {
    background-color: var(--cotton-stone);
}

.l-bg-dark {
    background-color: var(--carbon-black);
    color: var(--linen-white);
}

.l-bg-terracotta {
    background: linear-gradient(135deg, var(--clay-terracotta), var(--burnt-umber));
    color: white;
}

.l-bg-white {
    background-color: white;
}

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

@keyframes cascadeWord {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatOrbital {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-15px, -20px) rotate(-3deg); }
    75% { transform: translate(10px, 15px) rotate(3deg); }
}

@keyframes bounceIndicator {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }
.fade-up-delay-5 { animation-delay: 0.5s; }

.cascade-word span {
    display: inline-block;
    animation: cascadeWord 0.6s ease-out forwards;
    opacity: 0;
}

.header-upper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: rgba(252, 250, 247, 0.97);
    border-bottom: 1px solid rgba(36, 36, 36, 0.04);
}

.header-upper-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 32px;
    border-bottom: 1px solid rgba(36, 36, 36, 0.02);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    width: 20px;
    height: 20px;
    color: var(--clay-terracotta);
}

.header-domain {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: var(--carbon-black);
    letter-spacing: 0.10em;
    line-height: 1.18;
}

.header-company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 5px;
    color: var(--warm-grey);
    margin-left: 4px;
    line-height: 1.30;
}

.header-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: var(--warm-grey);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease;
    padding: 8px 10px;
}

.nav-link:hover {
    color: var(--clay-terracotta);
}

.cta-button {
    margin-left: auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--burnt-umber));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 9px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 4px 12px var(--terracotta-glow);
    transition: transform 0.18s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: scale(1.02);
}

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

.burger-menu span {
    width: 24px;
    height: 2px;
    background-color: var(--carbon-black);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--linen-white);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 14px;
    padding: 12px 20px;
}

.mobile-menu .cta-button {
    margin-left: 0;
    margin-top: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--carbon-black);
    background: none;
    border: none;
}

.content-wrapper {
    padding-top: 80px;
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 92px 96px 92px 32px;
}

.hero-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 8rem);
    color: var(--carbon-black);
    line-height: 0.56;
    letter-spacing: 0.002em;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--warm-grey);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 28px 56px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--burnt-umber));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 28px 92px var(--terracotta-glow);
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceIndicator 2s infinite;
    color: var(--clay-terracotta);
    font-size: 24px;
}

.animated-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(184, 101, 58, 0.15);
    top: 15%;
    left: 10%;
    animation: floatOrbital 12s ease-in-out infinite;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 74, 42, 0.12);
    top: 45%;
    left: 25%;
    animation: floatOrbital 16s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(184, 101, 58, 0.1);
    bottom: 20%;
    right: 15%;
    animation: floatOrbital 14s ease-in-out infinite;
}

.blob-4 {
    width: 180px;
    height: 180px;
    background: rgba(139, 74, 42, 0.08);
    top: 25%;
    right: 25%;
    animation: floatOrbital 10s ease-in-out infinite reverse;
}

.section {
    padding: 80px 32px;
}

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

.section-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--carbon-black);
    letter-spacing: 0.002em;
    margin-bottom: 16px;
}

.l-bg-dark .section-title {
    color: var(--linen-white);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.bento-cell {
    background: white;
    border: 2px solid var(--cotton-stone);
    padding: 32px;
    transition: all 0.24s ease;
    position: relative;
    z-index: 88;
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--terracotta-glow);
    z-index: 96;
    border-color: var(--clay-terracotta);
}

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

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

.bento-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.bento-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

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

.seamless-section {
    background: linear-gradient(180deg, var(--cloud-mist) 0%, var(--linen-white) 50%, var(--cloud-mist) 100%);
}

.seamless-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-block {
    padding: 64px 0;
    border-bottom: 1px solid rgba(184, 101, 58, 0.1);
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--warm-grey);
    max-width: 800px;
}

.history-block {
    padding: 64px 0;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-year {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--clay-terracotta);
    min-width: 80px;
}

.timeline-content {
    flex: 1;
}

.approach-block {
    padding: 64px 0;
    background: linear-gradient(90deg, transparent, rgba(184, 101, 58, 0.05), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border: 2px solid var(--cotton-stone);
    transition: all 0.24s ease;
    position: relative;
    z-index: 86;
}

.process-step:hover {
    border-color: var(--clay-terracotta);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--terracotta-glow);
    z-index: 96;
}

.process-number {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--clay-terracotta);
    margin-bottom: 12px;
}

.process-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.process-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    background: var(--cloud-mist);
}

.marquee-content {
    display: flex;
    gap: 56px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    white-space: nowrap;
}

.marquee-icon {
    font-size: 20px;
}

.stacking-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.stacking-card {
    background: white;
    border: 2px solid var(--cotton-stone);
    padding: 32px 40px;
    transition: all 0.24s ease;
    position: relative;
    z-index: 72;
}

.stacking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--terracotta-glow);
    z-index: 96 !important;
    border-color: var(--clay-terracotta);
}

.stacking-card:nth-child(1) { z-index: 72; }
.stacking-card:nth-child(2) { z-index: 80; margin-top: -20px; }
.stacking-card:nth-child(3) { z-index: 88; margin-top: -20px; }
.stacking-card:nth-child(4) { z-index: 96; margin-top: -20px; }
.stacking-card:nth-child(5) { z-index: 104; margin-top: -20px; }
.stacking-card:nth-child(6) { z-index: 112; margin-top: -20px; }

.card-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

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

.team-list {
    max-width: 800px;
    margin: 0 auto;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-bottom: 1px solid var(--cotton-stone);
    cursor: pointer;
    transition: all 0.24s ease;
}

.team-item:hover {
    background: var(--cloud-mist);
}

.team-role {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    min-width: 160px;
}

.team-name {
    font-size: 13px;
    color: var(--text-muted);
}

.team-photo-reveal {
    display: none;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-item:hover .team-photo-reveal {
    display: block;
}

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

.accordion-item {
    border-bottom: 1px solid var(--cotton-stone);
    transition: all 0.24s ease;
}

.accordion-item:hover {
    background: var(--cloud-mist);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.accordion-question {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
}

.accordion-icon {
    font-size: 20px;
    color: var(--clay-terracotta);
    transition: transform 0.24s ease;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease-out;
}

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

.accordion-answer {
    padding: 0 0 24px 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.coverflow-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    perspective: 1200px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 40px 0;
    width: max-content;
    transform-style: preserve-3d;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--clay-terracotta);
    background: white;
    color: var(--clay-terracotta);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--clay-terracotta);
    color: white;
}

.review-card {
    background: white;
    border: 2px solid var(--cotton-stone);
    padding: 32px;
    width: 320px;
    max-width: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 86;
    flex-shrink: 0;
    transform-style: preserve-3d;
}

.review-card:hover {
    z-index: 96;
    border-color: var(--clay-terracotta);
    box-shadow: 0 12px 40px var(--terracotta-glow);
}

.review-card.active {
    transform: scale(1.1) translateZ(30px);
    z-index: 100;
    box-shadow: 0 20px 60px var(--terracotta-glow);
}

.review-card:not(.active):not(:hover) {
    opacity: 0.7;
    transform: scale(0.9) translateZ(-20px) rotateY(15deg);
}

.review-stars {
    color: var(--clay-terracotta);
    font-size: 16px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--carbon-black);
}

.review-location {
    font-size: 11px;
    color: var(--text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: white;
    border-top: 3px solid var(--clay-terracotta);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-label {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 14px;
    color: var(--warm-grey);
}

.contact-form {
    padding: 40px;
    background: white;
    border: 2px solid var(--cotton-stone);
}

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

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    border: 2px solid var(--terracotta-border);
    background: var(--linen-white);
    transition: all 0.18s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--clay-terracotta);
    box-shadow: 0 0 0 4px rgba(184, 101, 58, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--clay-terracotta), var(--burnt-umber));
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--terracotta-glow);
}

.footer {
    background: var(--cotton-stone);
    border-top: 2px solid var(--clay-terracotta);
    padding: 64px 32px 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
    color: var(--clay-terracotta);
}

.footer-logo-text {
    font-weight: 500;
    font-size: 13px;
    color: var(--carbon-black);
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--warm-grey);
    text-decoration: none;
    transition: color 0.18s ease;
}

.footer-links a:hover {
    color: var(--clay-terracotta);
}

.footer-contact-item {
    font-size: 13px;
    color: var(--warm-grey);
    margin-bottom: 12px;
}

.footer-copyright {
    text-align: center;
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--carbon-black);
    padding-top: 32px;
    border-top: 1px solid rgba(42, 42, 42, 0.1);
}

.footer-special {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: white;
    border: 2px solid var(--cotton-stone);
    padding: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--clay-terracotta), var(--burnt-umber));
    color: white;
}

.cookie-decline {
    background: var(--cloud-mist);
    color: var(--warm-grey);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.inner-hero {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cloud-mist), var(--linen-white));
}

.inner-hero-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--carbon-black);
    letter-spacing: 0.002em;
    text-align: center;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.8));
    color: white;
}

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

.blog-card {
    background: white;
    border: 2px solid var(--cotton-stone);
    overflow: hidden;
    transition: all 0.24s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--terracotta-glow);
    border-color: var(--clay-terracotta);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.thankyou-section {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
}

.thankyou-icon {
    font-size: 64px;
    margin-bottom: 32px;
}

.thankyou-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.thankyou-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

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

.legal-title {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--carbon-black);
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-heading {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.legal-text {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.7;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 2px solid var(--cotton-stone);
    margin-top: 32px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .header-upper-row {
        padding: 6px 16px;
    }

    .header-lower {
        padding: 8px 16px;
        justify-content: end;
    }

    .header-nav {
        display: none;
    }

    .cta-button:not(.mobile-cta) {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 120px 16px 48px;
        order: 2;
    }

    .hero-visual {
        height: 50vh;
        order: 1;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .hero-cta {
        padding: 20px 40px;
        width: 100%;
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 16px;
    }

    .bento-cell-2x2,
    .bento-cell-2x1 {
        grid-column: span 2;
    }

    .bento-cell-2x2 {
        grid-row: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stacking-card:nth-child(n) {
        margin-top: 0;
        z-index: auto !important;
    }

    .stacking-card:hover {
        transform: none;
    }

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

    .contact-info,
    .contact-form {
        padding: 24px;
    }

    .footer {
        padding: 40px 16px 24px;
    }

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

    .coverflow-carousel {
        flex-direction: column;
    }

    .review-card {
        width: 100%;
    }

    .review-card.active {
        transform: none;
    }

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

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

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

    .team-item:hover .team-photo-reveal {
        display: none;
    }

    .section {
        padding: 48px 16px;
    }

    .marquee-container {
        padding: 24px 0;
    }

    .map-container {
        height: 280px;
    }

    .hero-tagline {
        flex-wrap: wrap;
    }

    .stacking-cards {
        padding: 0 16px;
    }

    .stacking-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-cell-2x2,
    .bento-cell-2x1 {
        grid-column: span 1;
    }

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

    .bento-cell {
        padding: 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .process-step {
        padding: 20px 12px;
    }

    .team-item {
        padding: 16px;
        gap: 12px;
    }

    .team-role {
        min-width: 100px;
        font-size: 12px;
    }

    .review-card {
        padding: 20px;
    }

    .form-input {
        padding: 12px;
    }

    .footer-grid {
        gap: 24px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }
}

/* Blog Article Page Styles */

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--clay-terracotta);
    text-decoration: none;
    transition: color 0.18s ease;
}

.blog-link:hover {
    color: var(--burnt-umber);
}

.breadcrumb-wrapper {
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--clay-terracotta);
    text-decoration: none;
    transition: color 0.18s ease;
}

.breadcrumb a:hover {
    color: var(--burnt-umber);
}

.breadcrumb-separator {
    color: var(--cotton-stone);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.article-date {
    font-size: 12px;
    color: var(--text-muted);
}

.article-category {
    font-size: 11px;
    font-weight: 500;
    color: var(--clay-terracotta);
    background: rgba(184, 101, 58, 0.1);
    padding: 4px 12px;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
}

.article-content {
    font-size: 15px;
    line-height: 2;
    color: var(--warm-grey);
}

.article-content h2 {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--carbon-black);
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-content h3 {
    font-family: 'Helvetica Neue Pro', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--carbon-black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content strong {
    font-weight: 700;
    color: var(--carbon-black);
}

.article-share {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--cotton-stone);
}

.article-share-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.share-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    border: 2px solid var(--clay-terracotta);
    background: white;
    color: var(--clay-terracotta);
    cursor: pointer;
    transition: all 0.18s ease;
}

.share-btn:hover {
    background: var(--clay-terracotta);
    color: white;
}

.article-navigation {
    margin-top: 32px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--clay-terracotta);
    text-decoration: none;
    transition: color 0.18s ease;
}

.back-to-blog:hover {
    color: var(--burnt-umber);
}

.comparison-table {
    margin: 24px 0;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
}

@media (max-width: 768px) {
    .article-hero-image {
        height: 250px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .share-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
}