@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: #000;
  min-height: 100%;
}

::selection {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

input::placeholder {
  color: rgba(255,255,255,0.3);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  font-size: 13px;
}

input:focus {
  outline: none;
  border-bottom-color: rgba(255,255,255,0.6) !important;
}

/* ─── Animations ─── */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes heroTitle {
  from { opacity: 0; letter-spacing: 60px; }
  to { opacity: 1; letter-spacing: 38px; }
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* ─── Wrapper ─── */

.site-wrapper {
  background: #000;
  min-height: 100vh;
  color: #fff;
}

/* ─── Navigation ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: all 0.6s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
}

.nav-logo {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 8px;
  font-weight: 300;
  cursor: pointer;
}

.desktop-nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.4s ease;
  position: relative;
  padding-bottom: 2px;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
}

.nav-link:hover,
.nav-link.active {
  color: rgba(255,255,255,0.9);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ─── Hamburger ─── */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  transition: all 0.4s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── Mobile Menu ─── */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  font-size: 14px;
  letter-spacing: 5px;
}

/* ─── Hero Section ─── */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

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

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.12) 20%, rgba(255,255,255,0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
  animation: lightPulse 4s ease-in-out infinite;
}

.hero-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 30%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(25px);
  animation: lightPulse 5s 1s ease-in-out infinite;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(52px, 12vw, 140px);
  letter-spacing: clamp(18px, 4vw, 38px);
  line-height: 1;
  color: #fff;
  animation: heroTitle 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.05s linear;
}

.hero-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 28px auto 0;
  animation: lineGrow 1.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center;
}

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

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2));
  animation: fadeIn 2s 2s both;
}

/* ─── About Section ─── */

.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px;
  background: #000;
}

.about-inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  flex-wrap: wrap;
}

.about-portrait {
  width: clamp(200px, 28vw, 320px);
  aspect-ratio: 3/4;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-portrait span {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}

.about-portrait-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
  font-weight: 400;
}

.about-rule {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 32px;
}

.about-bio {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ─── Dividers ─── */

.divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
  margin: 0 auto;
}

/* ─── Art Pieces Section ─── */

.art-section {
  padding: 100px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 10px;
}

.section-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 24px auto 0;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.gallery-item {
  width: clamp(260px, 36vw, 400px);
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-img-wrap {
  overflow: hidden;
  position: relative;
  background: #111;
  aspect-ratio: 3/4;
}

.gallery-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  transition: border-color 0.5s ease;
}

.gallery-item:hover .gallery-img-wrap::after {
  border-color: rgba(255,255,255,0.15);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 3px;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
}

.gallery-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 6px;
  color: rgba(255,255,255,0.7);
}

.gallery-desc {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.inquire-btn {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  margin-top: 16px;
}

.inquire-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

/* ─── Contact Section ─── */

.contact {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px;
  background: #000;
}

.contact-inner {
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 10px;
  margin-bottom: 12px;
}

.contact-rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 52px;
}

.contact-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0;
  margin-bottom: 8px;
}

.send-btn {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 52px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  margin-top: 36px;
}

.send-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.contact-form {
  text-align: center;
}

.contact-textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0;
  margin-bottom: 8px;
  resize: none;
  height: 80px;
}

.contact-textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  font-size: 13px;
}

.contact-textarea:focus {
  outline: none;
  border-bottom-color: rgba(255,255,255,0.6);
}

.modal-textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 0;
  margin-bottom: 8px;
  resize: none;
  height: 70px;
}

.modal-textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  font-size: 13px;
}

.modal-textarea:focus {
  outline: none;
  border-bottom-color: rgba(255,255,255,0.6);
}

.contact-success {
  animation: fadeUp 0.6s ease both;
}

.contact-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
}

.contact-success-sub {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

/* ─── Instagram Icon ─── */

.ig-link {
  display: inline-block;
  margin-top: 48px;
  color: rgba(255,255,255,0.25);
  transition: color 0.4s ease;
}

.ig-link:hover {
  color: rgba(255,255,255,0.7);
}

.ig-icon {
  width: 18px;
  height: 18px;
}

/* ─── Footer ─── */

.footer {
  padding: 60px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
  background: #000;
}

.footer p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.2);
}

/* ─── Modal ─── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.hidden {
  display: none;
}

.modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 52px 44px;
  width: 90%;
  max-width: 380px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 6px;
  margin-bottom: 8px;
  text-align: center;
  color: #fff;
}

.modal-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  text-align: center;
}

.modal-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 0;
  margin-bottom: 8px;
}

.modal-send {
  display: block;
  width: 100%;
  margin-top: 32px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 4px;
  cursor: pointer;
}

.modal-success {
  text-align: center;
  padding: 40px 0;
}

.modal-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.modal-success-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  opacity: 0.5;
  letter-spacing: 1px;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none !important; }
}