@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --washi-cream: #FCFAF6;
    --parchment-mist: #F4F0E8;
    --aged-ivory: #EBE6DE;
    --deep-sepia: #2A2520;
    --warm-umber: #3A3528;
    --antique-terra: #A08050;
    --deep-mahogany: #806030;
    --shadow-soft: rgba(180, 120, 80, 0.15);
    --shadow-medium: rgba(180, 120, 80, 0.25);
    --shadow-heavy: rgba(180, 120, 80, 0.40);
    --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.32s ease;
    --transition-bounce: 0.52s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--washi-cream);
    color: var(--warm-umber);
    line-height: 1.76;
    overflow-x: hidden;
}

strong, p, span {
    color: inherit;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.01em;
    color: var(--deep-sepia);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
    font-size: 17px;
    line-height: 1.76;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--aged-ivory);
    border: 2px solid var(--antique-terra);
    border-radius: 12px;
    padding: 20px 28px;
    max-width: 420px;
    z-index: 9998;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.cookie-consent-banner h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--deep-sepia);
}

.cookie-consent-banner p {
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--warm-umber);
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--antique-terra), var(--deep-mahogany));
    color: white;
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--antique-terra);
    color: var(--antique-terra);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-soft);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 250, 246, 0.98);
    border-bottom: 2px solid rgba(180, 120, 80, 0.10);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 48px;
    max-width: 1600px;
    margin: 0 auto;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--antique-terra);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-sepia);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 11px;
    font-weight: 400;
    color: var(--deep-sepia);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 8px 4px;
    position: relative;
}

.nav-link:hover {
    color: var(--antique-terra);
    transform: scale(1.04);
}

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

.dropdown-item {
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: var(--transition-fast);
    background: var(--parchment-mist);
}

.dropdown-item:hover {
    background: var(--antique-terra);
    color: white;
}

.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--antique-terra), var(--deep-mahogany));
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 14px 56px var(--shadow-medium);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 72px var(--shadow-heavy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: var(--washi-cream);
    border: 1px solid rgba(180, 120, 80, 0.2);
    border-radius: 10px;
    z-index: 10000;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--deep-sepia);
    transition: var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--washi-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-link {
    font-size: 20px;
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--deep-sepia);
}

.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 120px 56px 80px;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.88;
    color: var(--deep-sepia);
    margin-bottom: 28px;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) scale(0.78);
    animation: slideUp 0.6s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--warm-umber);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--deep-sepia);
    margin-top: 20px;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    height: 100%;
}

.bento-box {
    background: var(--parchment-mist);
    border: 2px solid rgba(180, 120, 80, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-bounce);
    position: relative;
}

.bento-box:hover {
    z-index: 90;
    transform: scale(1.04);
    box-shadow: 0 24px 80px var(--shadow-medium);
}

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

.bento-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatSlow 22s ease-in-out infinite alternate;
}

.gradient-spot:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgb(160, 100, 60);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-spot:nth-child(2) {
    width: 300px;
    height: 300px;
    background: rgb(180, 130, 80);
    top: 60%;
    right: 20%;
    animation-delay: -7s;
}

.gradient-spot:nth-child(3) {
    width: 350px;
    height: 350px;
    background: rgb(200, 150, 100);
    bottom: 10%;
    left: 40%;
    animation-delay: -14s;
}

@keyframes floatSlow {
    0% { transform: scale(0.9); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.5; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--antique-terra);
    animation: bounce 2s infinite;
}

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

.section {
    padding: 100px 56px;
    position: relative;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--deep-sepia);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--warm-umber);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--parchment-mist);
    border: 2px solid rgba(180, 120, 80, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-bounce);
    position: relative;
}

.service-card:hover {
    z-index: 90;
    transform: scale(1.04);
    box-shadow: 0 24px 80px var(--shadow-medium);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--deep-sepia);
}

.service-desc {
    font-size: 14px;
    color: var(--warm-umber);
    margin-bottom: 16px;
}

.service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--antique-terra);
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--antique-terra);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--antique-terra);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--washi-cream);
    border: 3px solid var(--antique-terra);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
}

.timeline-item:hover .timeline-node {
    transform: scale(1.10);
    background: var(--antique-terra);
    color: white;
}

.timeline-content {
    width: 45%;
    padding: 24px;
    background: var(--parchment-mist);
    border-radius: 12px;
    border: 2px solid rgba(180, 120, 80, 0.12);
}

.timeline-title {
    font-size: 18px;
    color: var(--deep-sepia);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--warm-umber);
}

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

.advantage-card {
    background: var(--parchment-mist);
    border: 2px solid rgba(180, 120, 80, 0.12);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-bounce);
}

.advantage-card:hover {
    transform: scale(1.04);
    z-index: 90;
    box-shadow: 0 24px 80px var(--shadow-medium);
    background: white;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 18px;
    color: var(--deep-sepia);
    margin-bottom: 12px;
}

.advantage-desc {
    font-size: 14px;
    color: var(--warm-umber);
}

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

.team-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-item {
    padding: 24px;
    background: var(--parchment-mist);
    border-radius: 12px;
    border: 2px solid rgba(180, 120, 80, 0.12);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.team-item:hover,
.team-item.active {
    border-color: var(--antique-terra);
    background: white;
}

.team-item-title {
    font-size: 16px;
    color: var(--deep-sepia);
    margin-bottom: 8px;
}

.team-item-role {
    font-size: 13px;
    color: var(--antique-terra);
}

.team-photo {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--parchment-mist);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--parchment-mist);
    border: 2px solid rgba(180, 120, 80, 0.12);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--antique-terra);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-sepia);
}

.faq-icon {
    font-size: 24px;
    color: var(--antique-terra);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--warm-umber);
}

.reviews-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
}

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

.review-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    scroll-snap-align: center;
    border: 2px solid rgba(180, 120, 80, 0.12);
    transition: var(--transition-bounce);
}

.review-card:hover {
    transform: scale(1.05);
    z-index: 90;
    box-shadow: 0 24px 80px var(--shadow-medium);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

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

.review-name {
    font-size: 16px;
    color: var(--deep-sepia);
    font-weight: 600;
}

.review-location {
    font-size: 13px;
    color: var(--antique-terra);
}

.review-text {
    font-size: 15px;
    color: var(--warm-umber);
    line-height: 1.7;
}

.review-rating {
    margin-top: 16px;
    color: var(--antique-terra);
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.contact-icon {
    font-size: 24px;
    color: var(--antique-terra);
}

.contact-label {
    font-size: 13px;
    color: var(--antique-terra);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--deep-sepia);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(180, 120, 80, 0.12);
}

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

.form-label {
    display: block;
    font-size: 14px;
    color: var(--deep-sepia);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--antique-terra);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--washi-cream);
    color: var(--deep-sepia);
}

.form-input:focus {
    outline: none;
    border-color: var(--deep-mahogany);
    box-shadow: 0 0 0 4px rgba(160, 128, 80, 0.15);
}

.form-input::placeholder {
    color: var(--warm-umber);
    opacity: 0.6;
}

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

.form-submit {
    width: 100%;
    padding: 16px 32px;
}

.footer {
    background: var(--aged-ivory);
    border-top: 3px solid var(--antique-terra);
    padding: 80px 56px 40px;
}

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

.footer-col h4 {
    font-size: 14px;
    color: var(--deep-sepia);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: var(--warm-umber);
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--antique-terra);
}

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

.footer-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(180, 120, 80, 0.2);
    font-size: 12px;
    color: var(--warm-umber);
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
}

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

.inner-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 56px 80px;
    background: var(--parchment-mist);
    position: relative;
}

.inner-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.inner-hero p {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
    color: var(--warm-umber);
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 56px;
}

.thank-you-icon {
    font-size: 80px;
    margin-bottom: 32px;
}

.thank-you-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--warm-umber);
    max-width: 500px;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin: 48px 0 20px;
    color: var(--deep-sepia);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--warm-umber);
}

.legal-content ul {
    margin: 20px 0 20px 24px;
    color: var(--warm-umber);
}

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

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(42, 37, 32, 0.85));
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.marquee-container {
    overflow: hidden;
    padding: 40px 0;
}

.marquee-content {
    display: flex;
    gap: 56px;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    padding: 20px 32px;
    background: var(--parchment-mist);
    border-radius: 8px;
    border: 1px solid rgba(180, 120, 80, 0.15);
}

.marquee-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-sepia);
}

.marquee-label {
    font-size: 12px;
    color: var(--antique-terra);
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 100px 32px 60px;
    }

    .hero-visual {
        min-height: 400px;
    }

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

    .bento-large {
        grid-column: span 2;
    }

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

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

    .team-photo {
        height: 350px;
    }

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

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

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

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

    .timeline-line {
        left: 28px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 70px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-node {
        position: absolute;
        left: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        padding: 100px 20px 60px;
    }

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

    .section {
        padding: 60px 20px;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

    .bento-large {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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