:root {
  --color-primary: #FAD9C1;
  --color-secondary: #D8B4E2;
  --color-accent: #88C0B0;
  --color-neutral: #F3E3D3;
  --color-light: #BFD8EB;
  --color-dark: #2a2a2a;
  --color-white: #ffffff;
  --color-text: #333333;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-luxury: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-sm); font-size: 0.95rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all var(--transition-luxury);
}

.header.hidden {
  transform: translateX(-50%) translateY(-120%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-smooth);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--space-xl);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
}

.hero-shape:nth-child(3) {
  width: 250px;
  height: 250px;
  background: var(--color-light);
  top: 40%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--transition-luxury) forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp 1s var(--transition-luxury) 0.3s forwards;
}

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

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

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

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

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--color-dark);
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.9rem;
  color: #666;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .content {
  order: 2;
}

.asymmetric-section:nth-child(even) .visual {
  order: 1;
}

.visual {
  position: relative;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform var(--transition-luxury);
}

.visual:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.overlap-card {
  position: relative;
  margin-top: -80px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.product-card {
  background: var(--color-neutral);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-md);
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(216, 180, 226, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-size: 0.85rem;
  font-weight: 400;
}

.contact-info {
  background: var(--color-neutral);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a {
  color: var(--color-primary);
  margin: 0 var(--space-xs);
}

.footer a:hover {
  color: var(--color-secondary);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-secondary);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-light));
}

.thank-you-content {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border-left: 4px solid var(--color-secondary);
}

.policy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.policy-card h2 {
  color: var(--color-secondary);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.policy-card h3 {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.policy-card p {
  color: #555;
  line-height: 1.8;
}

.policy-card a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.policy-card a:hover {
  color: var(--color-accent);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-table th,
.schedule-table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.schedule-table th {
  background: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.schedule-table tr:hover {
  background: var(--color-neutral);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero h1 { font-size: 3rem; }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .asymmetric-section {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section:nth-child(even) .content,
  .asymmetric-section:nth-child(even) .visual {
    order: initial;
  }
  
  .visual {
    height: 350px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  
  .header {
    width: 95%;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
    align-items: flex-start;
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero h1 { font-size: 2rem; }
  
  .header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .visual {
    height: 250px;
  }
  
  .overlap-card {
    margin-top: -40px;
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.8rem;
    --space-xl: 2.5rem;
  }
  
  html {
    font-size: 14px;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.9rem; }
  
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
  }
  
  .header {
    width: 100%;
    border-radius: 0;
    padding: 0.6rem 0.8rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .card {
    padding: var(--space-sm);
  }
  
  .policy-card {
    padding: var(--space-md);
    border-left-width: 3px;
  }
  
  .policy-card h2 {
    font-size: 1.4rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .product-price {
    font-size: 1.5rem;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
  
  .thank-you-content {
    padding: var(--space-lg);
  }
  
  .thank-you-content i {
    font-size: 3rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  
  .contact-info {
    padding: var(--space-md);
  }
  
  .schedule-table {
    font-size: 0.8rem;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.6rem 0.4rem;
  }
}