:root {
  --teal: oklch(0.6 0.16 190);
  --teal-deep: oklch(0.45 0.12 190);
  --teal-glow: oklch(0.7 0.1 190 / 0.3);
  --ink: oklch(0.15 0.01 220);
  --ink-muted: oklch(0.45 0.02 220);
  --white: oklch(1 0 0);
  --surface: oklch(0.98 0.005 200);
  --glass: oklch(1 0 0 / 0.4);
  --glass-border: oklch(1 0 0 / 0.6);
  --line: oklch(0.92 0.01 200);
  
  --display: "Cormorant Garamond", serif;
  --body: "Plus Jakarta Sans", sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 8px 32px oklch(0 0 0 / 0.05);
  --shadow-lg: 0 20px 60px oklch(0 0 0 / 0.1);
  
  --z-sticky: 100;
  --z-glass: 10;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink-muted);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease-out;
}

.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, oklch(0.7 0.1 190 / 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  background: oklch(1 0 0 / 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  gap: 8px;
}

.site-nav a {
  padding: 8px 16px;
  border-radius: 99px;
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 200ms var(--ease-out);
}

.site-nav a:hover {
  color: var(--ink);
  background: oklch(0 0 0 / 0.04);
}

.header-cta {
  padding: 8px 20px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 200ms var(--ease-out);
}

.header-cta:active { transform: scale(0.96); }

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: 0.3s var(--ease-out);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 clamp(20px, 5vw, 64px);
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(0.2);
}

.blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.4;
  animation: move 25s infinite alternate;
}

.blob-1 { background: var(--teal-light); top: -10%; left: -10%; }
.blob-2 { background: oklch(0.8 0.1 200); bottom: -10%; right: -10%; animation-delay: -12s; }
.blob-3 { background: oklch(0.9 0.05 150); top: 40%; left: 30%; animation-delay: -5s; }

@keyframes move {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(100px, 50px) scale(1.2); }
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--ink);
  line-height: 0.9;
  margin: 0 0 24px;
  text-wrap: balance;
}

.text-teal {
  color: var(--teal);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  font-family: var(--body);
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 30px oklch(0.6 0.16 190 / 0.3);
  border: none;
}

.btn-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.btn-glass:hover { background: oklch(1 0 0 / 0.2); }

.hero-glass-card {
  position: absolute;
  bottom: 60px;
  right: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-glass-card img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.hero-glass-card .card-info strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
}

.hero-glass-card .card-info span {
  display: block;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
}

.about {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--surface);
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.glass-frame {
  position: relative;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.glass-frame img {
  width: 100%;
  border-radius: 24px;
}

.about h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 24px;
}

.about h2 .italic { font-style: italic; color: var(--teal); }

.about .lead {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--teal-deep);
  margin-bottom: 24px;
  font-weight: 600;
}

.about-prose p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.services {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--white);
}

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

.services-header h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.services-header p {
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-glass {
  padding: 40px;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  transition: all 400ms var(--ease-out);
}

.service-glass:hover {
  transform: translateY(-10px);
  background: oklch(1 0 0 / 0.8);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  color: var(--white);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.service-glass h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 12px;
}

.service-glass p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-glass ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-glass li {
  font-size: 0.85rem;
  padding-left: 18px;
  position: relative;
}

.service-glass li::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.results {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--surface);
}

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

.results-header h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--ink);
  margin-bottom: 16px;
}

.results-header p { color: var(--ink-muted); }

.results-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.result-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.result-item.wide { grid-column: span 2; }

.result-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.result-item:hover img { transform: scale(1.1); }

.result-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.03 220 / 0.8) 0%, transparent 60%);
}

.result-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.result-info span {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}

.result-info strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
}

.why {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--white);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.why-testimonial {
  padding: 48px;
  border-radius: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
}

.testimonial-content p {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 24px;
}

.testimonial-meta strong {
  display: block;
  color: var(--teal);
  font-size: 0.9rem;
}

.testimonial-meta span {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.why-features {
  display: grid;
  gap: 20px;
}

.feature-glass {
  padding: 32px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 300ms var(--ease-out);
}

.feature-glass:hover {
  background: oklch(1 0 0 / 0.2);
  border-color: var(--teal);
  transform: translateX(8px);
}

.feature-glass h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 8px;
}

.feature-glass p {
  font-size: 0.95rem;
  margin: 0;
}

.contact {
  padding: 120px clamp(20px, 5vw, 64px);
  background: var(--surface);
}

.contact-glass-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(30px);
}

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

.contact-left h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--ink);
  line-height: 0.9;
  margin-bottom: 24px;
}

.contact-left p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--ink-muted);
}

.contact-buttons {
  display: flex;
  gap: 16px;
}

.btn-accent {
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 30px oklch(0.6 0.16 190 / 0.3);
}

.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}

.contact-right {
  display: grid;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-info-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--ink);
  font-weight: 600;
}

.contact-hours {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: oklch(0 0 0 / 0.03);
}

.contact-hours strong {
  display: block;
  color: var(--teal);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-hours span {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer {
  padding: 40px clamp(20px, 5vw, 64px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.footer-inner a {
  color: var(--teal);
  font-weight: 700;
}

.tilt-card {
  perspective: 1000px;
  transition: transform 0.2s var(--ease-out);
}

[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

[data-anim="fade-up"].anim-in {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="reveal"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

[data-anim="reveal"].anim-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .about-container { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .why-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 400ms var(--ease-out);
    z-index: var(--z-sticky);
    border-left: 1px solid var(--line);
  }
  .site-nav.is-open { right: 0; }
  .site-nav a { font-size: 1.5rem; padding: 20px; color: var(--ink); }
  .hero-glass-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .results-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .result-item.wide { grid-column: auto; }
  .contact-glass-panel { padding: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim="fade-up"], [data-anim="reveal"] {
    opacity: 1;
    transform: none;
  }
}
