/* ===================================
   TM LLC - Luxury Editorial Design
   SNS Marketing Company
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors - Refined Dark */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #161616;
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.04);
  
  --text-primary: #f5f5f5;
  --text-secondary: #999999;
  --text-muted: #666666;
  
  --accent: #c9a962;
  --accent-light: #dfc587;
  --accent-dark: #a68b4b;
  --accent-subtle: rgba(201, 169, 98, 0.1);
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-japanese: 'Noto Sans JP', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(6rem, 15vw, 12rem);
  --container-max: 1440px;
  --container-padding: clamp(2rem, 6vw, 5rem);
  
  /* Effects */
  --blur-sm: 8px;
  --blur-md: 20px;
  --blur-lg: 40px;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.25s;
  --duration-normal: 0.5s;
  --duration-slow: 1s;
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #fafaf8;
  --bg-secondary: #f2f2f0;
  --bg-tertiary: #e8e8e6;
  --bg-card: rgba(0, 0, 0, 0.02);
  --bg-card-hover: rgba(0, 0, 0, 0.04);
  
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  
  --accent: #8b7355;
  --accent-light: #a68b6d;
  --accent-dark: #6b5a45;
  
  --border-color: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* --- Noise Texture Overlay --- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out-expo);
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s;
}

.cursor-ring.hover {
  transform: translate(-50%, -50%) scale(1.5);
  border-color: var(--accent);
}

.cursor-dot.hover {
  transform: translate(-50%, -50%) scale(0);
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* --- Loading Screen --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

.loader-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
  overflow: hidden;
}

.loader-text span {
  display: inline-block;
  animation: revealLetter 0.8s var(--ease-out-expo) forwards;
  opacity: 0;
  transform: translateY(100%);
}

.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }

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

/* --- Skip Link --- */
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 500;
  text-decoration: none;
  z-index: 10002;
  transform: translateY(-200%);
  transition: transform 0.3s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-sm {
  max-width: 900px;
}

.container-lg {
  max-width: 1600px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
}

[data-theme="light"] .header.scrolled {
  background: rgba(250, 250, 248, 0.8);
}

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

/* Logo */
.logo {
  text-decoration: none;
  color: var(--text-primary);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* Navigation */
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

/* Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: 10rem var(--container-padding) 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

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

.mobile-menu-list {
  list-style: none;
}

.mobile-menu-link {
  display: block;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s;
}

.mobile-menu-link:hover {
  color: var(--accent);
  padding-left: 2rem;
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  background: transparent;
  color: var(--text-secondary);
  padding: 0;
  border: none;
}

.btn-text:hover {
  color: var(--accent);
}

.btn-text .arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 0.8125rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0.3) 0%,
    rgba(250, 250, 248, 0.6) 50%,
    rgba(250, 250, 248, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.2s forwards;
}

.hero-eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealText 1.2s var(--ease-out-expo) forwards;
}

.hero-title-line:nth-child(1) span { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.4s; }
.hero-title-line:nth-child(3) span { animation-delay: 0.5s; }

.hero-title .accent {
  font-style: italic;
  color: var(--accent);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 2;
  max-width: 500px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

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

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

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

@keyframes scrollLine {
  0%, 100% { 
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* --- Section Styles --- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  margin-bottom: 5rem;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title .accent {
  font-style: italic;
  color: var(--accent);
}

.section-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 1.5rem;
  max-width: 600px;
}

.section-header.center .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* --- Services Section --- */
.services-section {
  background: var(--bg-secondary);
}

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

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

.service-card {
  position: relative;
  background: var(--bg-secondary);
  padding: 4rem 3rem;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-subtle);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-inner {
  position: relative;
  z-index: 1;
}

.service-number {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.5s;
}

.service-card:hover .service-number {
  color: var(--accent-subtle);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.service-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.service-price-currency {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-price-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.service-price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.service-link:hover {
  color: var(--accent);
}

.service-link .arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-color);
}

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

.feature-item {
  background: var(--bg-primary);
  padding: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  transition: background 0.4s;
}

.feature-item:hover {
  background: var(--bg-secondary);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.feature-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Marquee --- */
.marquee-section {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-item .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 2rem;
  vertical-align: middle;
}

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

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-title .accent {
  font-style: italic;
  color: var(--accent);
}

.cta-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--bg-primary);
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

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

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

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

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

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* --- Page Header --- */
.page-header {
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-subtle) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-header-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- About Page --- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
  }
}

.about-content {
  padding: var(--section-padding) var(--container-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 2;
  margin-top: 2rem;
}

.about-text p + p {
  margin-top: 1.5rem;
}

.about-visual {
  background: var(--bg-secondary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border-color);
}

.about-card {
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: all 0.4s;
  overflow: hidden;
  position: relative;
}

.about-card:hover {
  background: var(--bg-tertiary);
}

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

.about-card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.about-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-secondary) 100%);
  opacity: 0.6;
  transition: opacity 0.4s;
}

.about-card:hover .about-card-image::after {
  opacity: 0.4;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s var(--ease-out-expo);
}

.about-card:hover .about-card-image img {
  filter: grayscale(0%);
}

.about-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.about-card-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
}

/* Message Section */
.message-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.message-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.message-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 3rem;
  position: relative;
}

.message-quote::before,
.message-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  font-family: Georgia, serif;
}

.message-quote::before {
  top: -2rem;
  left: -1rem;
}

.message-quote::after {
  bottom: -3rem;
  right: -1rem;
}

.message-author {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.message-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

/* Company Info */
.company-table {
  max-width: 900px;
  margin: 0 auto;
}

.company-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

@media (max-width: 640px) {
  .company-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.company-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.company-value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Map */
.map-container {
  height: 500px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.8;
  transition: all 0.4s;
}

.map-container:hover iframe {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Services Page --- */
.plan-section {
  padding: 0;
}

.plan-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.plan-item:nth-child(even) {
  direction: rtl;
}

.plan-item:nth-child(even) > * {
  direction: ltr;
}

@media (max-width: 1024px) {
  .plan-item,
  .plan-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.plan-content {
  padding: var(--section-padding) var(--container-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.plan-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.plan-description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.plan-details {
  background: var(--bg-secondary);
  padding: var(--section-padding) var(--container-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-price-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-price-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
}

.plan-price-symbol {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-right: 0.25rem;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.plan-price-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.plan-budget {
  margin-bottom: 3rem;
}

.plan-budget-title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.plan-budget-row {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
}

.plan-budget-row:last-child {
  border-bottom: none;
}

.plan-budget-row span:first-child {
  font-weight: 300;
  color: var(--text-secondary);
}

.plan-budget-row span:last-child {
  font-weight: 500;
}

.plan-targets {
  margin-bottom: 3rem;
}

.plan-targets-title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-targets-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.plan-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-secondary);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s var(--ease-out-expo);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 2rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 6rem;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-method:first-of-type {
  padding-top: 0;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--accent);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 400;
}

.contact-method a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: var(--accent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-label .required {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color 0.3s;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-checkbox-label a {
  color: var(--accent);
  text-decoration: none;
}

.form-submit {
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}

.form-success.active {
  display: block;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-primary);
}

.form-success-icon svg {
  width: 40px;
  height: 40px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.form-success p {
  font-weight: 300;
  color: var(--text-secondary);
}

/* Flow */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
}

@media (max-width: 1024px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.flow-item {
  background: var(--bg-secondary);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.flow-item::after {
  content: '→';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  z-index: 1;
}

.flow-item:last-child::after {
  display: none;
}

@media (max-width: 1024px) {
  .flow-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .flow-item::after {
    display: none;
  }
}

.flow-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.flow-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.flow-item p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal, .reveal-left, .reveal-right, .stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
