@font-face {
    font-family: 'CatCafe';
    src: url('catcafe.medium.ttf') format('truetype');
}

:root {
    --clr-bg: #fdfbf7;
    --clr-bg-alt: #f2efea;
    --clr-text: #2d332a;
    --clr-text-light: #788273;
    --clr-primary: #5c7050;
    --clr-primary-dark: #3b4733;
    --clr-accent: #c6a87c;
    --clr-white: #ffffff;
    
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'CatCafe', serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(92, 112, 80, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
    background-image: 
        linear-gradient(135deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%),
        linear-gradient(315deg, rgba(198, 168, 124, 0.05) 25%, transparent 25%);
    background-position:  10px 0, 10px 0, 0 0, 0 0;
    background-size: 20px 20px;
    background-repeat: repeat;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--clr-accent);
}

.section-description {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Japanese Design Utilities */
.hanko-stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #b32d2e;
    color: #b32d2e;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    border-radius: 4px;
    margin-left: 10px;
    opacity: 0.85;
    vertical-align: middle;
    box-shadow: inset 0px 0px 3px rgba(179, 45, 46, 0.3);
    transform: rotate(-3deg);
}

.jp-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--font-serif);
    color: var(--clr-accent);
    letter-spacing: 0.3rem;
    font-size: 2rem;
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar.scrolled .nav-link {
    color: var(--clr-text);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-black {
    display: none;
}

.navbar.scrolled .nav-logo {
    height: 50px;
    filter: none;
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-black {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--clr-white);
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--clr-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background-color: var(--clr-primary);
}

.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero-bg-girls-fit.png');
    background-size: cover;
    background-position: right center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient on the left for text readability, clear on the right */
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.1) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-top: 60px;
}

.hero-content {
    color: var(--clr-white);
    text-align: left;
    max-width: 600px;
    padding: 0 1rem;
}

.hero-eyebrow {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-accent);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.hero-content .hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-divider-left {
    width: 80px;
    height: 3px;
    background-color: var(--clr-accent);
    margin-bottom: 2rem;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Sakura Animation */
.sakura-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sakura {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffb7c5;
    border-radius: 12px 0px 12px 12px;
    opacity: 0.8;
    animation: fall linear infinite;
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(255, 183, 197, 0.8);
}

.sakura:nth-child(1) { left: 5%; animation-duration: 9s; animation-delay: 0s; }
.sakura:nth-child(2) { left: 15%; animation-duration: 13s; animation-delay: -2s; }
.sakura:nth-child(3) { left: 25%; animation-duration: 10s; animation-delay: -4s; }
.sakura:nth-child(4) { left: 35%; animation-duration: 15s; animation-delay: -1s; }
.sakura:nth-child(5) { left: 45%; animation-duration: 11s; animation-delay: -5s; }
.sakura:nth-child(6) { left: 55%; animation-duration: 14s; animation-delay: -3s; }
.sakura:nth-child(7) { left: 65%; animation-duration: 12s; animation-delay: -6s; }
.sakura:nth-child(8) { left: 75%; animation-duration: 16s; animation-delay: -2s; }
.sakura:nth-child(9) { left: 85%; animation-duration: 10s; animation-delay: -7s; }
.sakura:nth-child(10) { left: 95%; animation-duration: 14s; animation-delay: -4s; }
.sakura:nth-child(11) { left: 50%; animation-duration: 8s; animation-delay: -1s; }
.sakura:nth-child(12) { left: 20%; animation-duration: 12s; animation-delay: -8s; }

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) scale(1.2) translateX(50px);
        opacity: 0;
    }
}

.jp-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 0.2rem;
}

.jp-text-small {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 0.2rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.traditional-frame-dark {
    border: 3px solid var(--clr-primary-dark);
    padding: 10px;
    background-color: var(--clr-bg);
    position: relative;
    border-radius: 0;
}

.traditional-frame-dark::before, .traditional-frame-dark::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--clr-primary-dark);
    z-index: 10;
}

.traditional-frame-dark::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.traditional-frame-dark::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-text .section-title {
    margin-bottom: 0.5rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-family: var(--font-sans);
    color: var(--clr-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    margin-top: 0.5cm;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.about-text .btn {
    margin-top: 1rem;
}

/* Features Section */
.features-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin-top: 2rem;
}

.feature-minimal {
    padding: 2rem 3rem;
    text-align: center;
    position: relative;
}

.feature-divider {
    border-left: 1px dashed rgba(198, 168, 124, 0.4);
}

@media (max-width: 950px) {
    .feature-divider {
        border-left: none;
        border-top: 1px dashed rgba(198, 168, 124, 0.4);
    }
}

.feature-icon-mon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border: 2px solid var(--clr-primary-dark);
    border-radius: 50%; /* Circular crest */
    color: var(--clr-primary-dark);
    transition: var(--transition);
    background-color: transparent;
}

.feature-minimal:hover .feature-icon-mon {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    transform: rotate(5deg) scale(1.05);
}

.feature-minimal h4 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--clr-primary-dark);
}

.feature-minimal p {
    color: var(--clr-text-light);
    line-height: 1.8;
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.menu-image {
    position: relative;
}

.menu-image-content {
    width: 100%;
    border-radius: 0;
    display: block;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(198, 168, 124, 0.6);
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.15rem;
    font-weight: 500;
    border-bottom: 1px dotted rgba(198, 168, 124, 0.4);
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
}

.item-price {
    font-weight: 600;
    color: var(--clr-accent);
}

.item-desc {
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

/* Elegant Gallery */
.gallery-wabi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .gallery-wabi-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-elegant {
        margin-top: 0 !important;
    }
}

.gallery-item-elegant {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--clr-white);
    padding: 10px;
    border: 1px solid rgba(198, 168, 124, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item-elegant::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1px solid rgba(198, 168, 124, 0.6);
    pointer-events: none;
    z-index: 10;
}

.gallery-item-elegant img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
}

.gallery-item-elegant:hover img {
    transform: scale(1.05);
    filter: brightness(0.6) sepia(0.4);
}

.gallery-overlay-elegant {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 15;
}

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

.gallery-overlay-elegant .jp-vertical-text {
    color: var(--clr-white);
    font-size: 2.5rem;
    opacity: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.6s ease 0.1s;
}

.gallery-overlay-elegant .en-vertical-text {
    writing-mode: vertical-rl;
    color: var(--clr-accent);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transform: translateY(-20px);
    transition: transform 0.6s ease 0.2s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.gallery-item-elegant:hover .jp-vertical-text,
.gallery-item-elegant:hover .en-vertical-text {
    transform: translateY(0);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--clr-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.reviewer-name {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--clr-primary-dark);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    background: var(--clr-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--clr-primary);
}

.info-item h4 {
    font-family: var(--font-sans);
    margin-bottom: 0.25rem;
    color: var(--clr-primary-dark);
}

.info-item p {
    color: var(--clr-text-light);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 71, 51, 0.8);
}

.map-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--clr-white);
    width: 80%;
}

.map-inner h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-inner .btn {
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.map-inner .btn:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
}

/* Footer */
.footer {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-white);
    line-height: 1.2;
}

.footer-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.newsletter-form:focus-within {
    border-bottom-color: var(--clr-accent);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: var(--clr-accent);
    transform: translateX(5px);
}

.footer-brand-large img {
    height: 120px;
    opacity: 0.9;
}

.footer-divider {
    border: none;
    height: 3px;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      rgba(198, 168, 124, 0.4) 10px,
      rgba(198, 168, 124, 0.4) 20px
    );
    margin: 4rem 0;
}

.footer-enso {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 15px solid rgba(198, 168, 124, 0.05);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a,
.footer-contact p,
.footer-contact a,
.footer-social-link {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-contact a:hover {
    color: var(--clr-white);
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link svg {
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--clr-white);
}

.footer-social-link:hover svg {
    transform: translate(3px, -3px);
    color: var(--clr-accent);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

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

/* Animations (Reveal on Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-left.active, .reveal-right.active {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content .hero-title {
        font-size: 3.5rem;
    }
    .hero-container, .about-grid, .menu-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-empty-right {
        display: none;
    }
    .hero {
        background-position: right center;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(20, 26, 17, 0.85) 0%, rgba(20, 26, 17, 0.3) 100%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--clr-bg);
        flex-direction: column;
        gap: 0;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem;
        color: var(--clr-text);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link::after {
        display: none;
    }

    .hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        margin-top: 80px;
    }
    
    .features-minimal-grid, .gallery-wabi-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 4rem 0 2rem;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .footer-top {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-cta p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-cta h2 {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-brand-large img {
        height: 50px;
    }
    
    .footer-bottom-grid {
        gap: 2rem;
        text-align: center;
    }
    
    .social-links-vertical {
        align-items: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-left {
    transform: translateX(-40px) scale(0.98);
}

.reveal-left.active {
    transform: translateX(0) scale(1);
}

.reveal-right {
    transform: translateX(40px) scale(0.98);
}

.reveal-right.active {
    transform: translateX(0) scale(1);
}

.reveal[style*="transition-delay"] {
    transition-property: opacity, transform;
}

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

@keyframes subtlePulse {
    0%, 100% { transform: scale(1) rotate(-3deg); opacity: 0.85; }
    50% { transform: scale(1.05) rotate(-3deg); opacity: 1; }
}

.hanko-stamp {
    animation: subtlePulse 3s infinite ease-in-out;
}

.feature-icon-mon {
    animation: float 6s infinite ease-in-out;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--clr-primary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-kanji {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--clr-accent);
    animation: breathe 2s infinite ease-in-out;
}

.preloader-line {
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    animation: loading-line 2s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes loading-line {
    0% { width: 0; opacity: 0; }
    50% { width: 100px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}
