/* ======================
   AWWWARDS-LEVEL DESIGN
   Sushi Universe Premium
====================== */

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

:root {
  /* Premium Color Palette */
  --primary: #D4145A;
  --primary-dark: #A00042;
  --secondary: #FF6B9D;
  --accent-gold: #D4AF37;
  
  /* Sophisticated Neutrals */
  --dark: #0A0A0F;
  --dark-2: #13131A;
  --dark-3: #1C1C26;
  --off-white: #F8F8F8;
  --cream: #FFF9F0;
  
  /* Glass & Depth */
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  
  /* Japanese Shadows */
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0 24px 80px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-japanese: 'Noto Serif JP', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Timing */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================
   JAPANESE WAVE PATTERN
====================== */
.wave-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: -1;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 20, 90, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
  background-size: 100% 100%;
  pointer-events: none;
}

.wave-pattern::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.01) 40px,
    rgba(255, 255, 255, 0.01) 41px
  );
  animation: wave 60s linear infinite;
}

@keyframes wave {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ======================
   GRAIN TEXTURE
====================== */
#grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ======================
   CUSTOM CURSOR
====================== */
.cursor,
.cursor-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}

.cursor {
  width: 8px;
  height: 8px;
  background: white;
  transform: translate(-50%, -50%);
}

.cursor-glow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s var(--ease-smooth);
}

/* ======================
   NAVIGATION
====================== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 32px 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

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

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

.logo-kanji {
  font-family: var(--font-japanese);
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  gap: 48px;
}

.nav-item {
  color: var(--off-white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
}

.nav-num {
  font-size: 11px;
  opacity: 0.4;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s var(--ease-smooth);
}

.nav-item:hover {
  opacity: 1;
}

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

.nav-cta {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 100px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 8px 24px rgba(212, 20, 90, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 20, 90, 0.35);
}

/* ======================
   HERO SECTION
====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 60px 100px;
}

.brush-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: 0.08;
  filter: blur(2px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 20, 90, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(212, 20, 90, 0); }
}

.hero-title {
  margin-bottom: 32px;
}

.title-kanji {
  font-family: var(--font-japanese);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 900;
  display: block;
  background: linear-gradient(135deg, var(--accent-gold), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.title-main {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}

.title-main .word {
  background: linear-gradient(135deg, #fff 20%, var(--off-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  padding: 20px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 12px 40px rgba(212, 20, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212, 20, 90, 0.4);
}

.btn-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--off-white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--glass);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 12px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.6;
}

.scroll-text {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  animation: scrollDown 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollDown 2.5s ease-in-out infinite;
}

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

/* ======================
   PHILOSOPHY SECTION
====================== */
.philosophy {
  padding: 160px 0;
  background: var(--dark-2);
  position: relative;
}

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

.container-full {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.title-jp {
  font-family: var(--font-japanese);
  font-size: clamp(24px, 4vw, 40px);
  display: block;
  opacity: 0.3;
  margin-top: 8px;
}

.phil-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  font-weight: 300;
}

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

.phil-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.phil-icon {
  font-size: 32px;
  width: 64px;
  height: 64px;
  background: var(--glass);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

.phil-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.phil-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

.phil-image {
  position: relative;
  height: 500px;
}

.image-card {
  width: 100%;
  height: 100%;
  background: 
  linear-gradient(to top, rgba(0,0,0,0.6), transparent),
   url('https://i.pinimg.com/736x/a7/ae/12/a7ae1213bfdd962cf722578fb2b541cf.jpg') center/cover no-repeat;  
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: flex-end;


}

.image-card {
  transition: transform 0.6s ease;
}

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



.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 20, 90, 0.1), transparent 60%);
  pointer-events: none;
}

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

.chef-info {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.chef-avatar {
  font-size: 48px;
  width: 80px;
  height: 80px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chef-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.chef-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ======================
   CONVEYOR BELT
====================== */
.conveyor {
  padding: 160px 0;
  background: var(--dark);
  overflow: hidden;
}

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

.section-header.centered .section-desc {
  max-width: 600px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
}

.belt-wrapper {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.belt-wrapper::before,
.belt-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.belt-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.belt-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.belt-track {
  display: flex;
  gap: 80px;
  width: max-content;
  will-change: transform;
}

.sushi-item {
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
}

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

.sushi-plate {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.sushi-plate svg {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: all 0.4s ease;
}

.sushi-item:hover .sushi-plate svg {
  filter: drop-shadow(0 30px 60px rgba(212, 20, 90, 0.2));
}

.sushi-plate img {
  width: 110px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease-bounce);
}

.sushi-item:hover .sushi-plate img {
  transform: translateY(-24px) scale(1.2) rotate(8deg);
}

.sushi-info {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.sushi-item:hover .sushi-info {
  opacity: 1;
  transform: translateY(0);
}

.sushi-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.sushi-info .price {
  font-family: var(--font-japanese);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

/* ======================
   OMAKASE SECTION
====================== */
.omakase {
  padding: 160px 0;
  background: #13131A;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header.centered .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
  color: #D4145A;
}

.section-header.centered .section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.section-header.centered .title-jp {
  font-family: var(--font-japanese);
  font-size: clamp(24px, 4vw, 40px);
  display: block;
  opacity: 0.3;
  margin-top: 8px;
  color: #ffffff;
}

.section-desc {
  max-width: 600px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.7;
}

.scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 60px;
  padding: 20px 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 20, 90, 0.5) rgba(255, 255, 255, 0.1);
}

.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: rgba(212, 20, 90, 0.5);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 20, 90, 0.8);
}

.card-wrapper {
  display: flex;
  gap: 32px;
  padding: 0 20px;
  width: max-content;
}

.sushi-card {
  width: 320px;
  min-width: 320px;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.sushi-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.18);
}

.hover-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 20, 90, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.sushi-card:hover .hover-cover {
  opacity: 1;
}

.sushi-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.sushi-card:hover img {
  transform: scale(1.05) rotate(2deg);
}

.sushi-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #ffffff !important;
  position: relative;
  z-index: 2;
}

.sushi-card .price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: #D4145A !important;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  display: block;
}

.sushi-card .details {
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.7;
  font-size: 15px;
  position: relative;
  z-index: 2;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .omakase {
    padding: 100px 0;
  }
  
  .scroll-container {
    margin-top: 40px;
  }
  
  .card-wrapper {
    padding: 0 16px;
    gap: 20px;
  }
  
  .sushi-card {
    width: 280px;
    min-width: 280px;
    padding: 32px 24px;
  }
  
  .sushi-card img {
    height: 160px;
  }
}

/* ======================
   RESERVATION
====================== */
.reservation {
  padding: 160px 0;
  background: var(--dark);
}

.res-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.info-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-icon {
  font-size: 32px;
  width: 72px;
  height: 72px;
  background: var(--glass);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

.info-row h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.info-row p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.6;
}

.res-form-wrap {
  padding: 56px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: var(--shadow-medium);
}

.res-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  color: var(--off-white);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(212, 20, 90, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 100px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(212, 20, 90, 0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212, 20, 90, 0.4);
}

/* ======================
   FOOTER
====================== */
.footer {
  background: var(--dark-2);
  padding: 100px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo .logo-kanji {
  font-family: var(--font-japanese);
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 400px;
  font-size: 15px;
}

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

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* ======================
   SAKURA PETALS
====================== */
#sakura-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9997;
}

.petal {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.5;
  will-change: transform;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.2));
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 1024px) {
  .phil-grid,
  .res-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 30px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding: 120px 30px 80px;
  }
  
  .container,
  .container-full {
    padding: 0 30px;
  }
  
  .res-form-wrap {
    padding: 40px 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}