:root {
  --bg-primary: #f6f1e8;
  --bg-secondary: #eee3d2;
  --text-primary: #2e2518;
  --text-muted: #625742;
  --accent-gold: #b9904b;
  --accent-copper: #b87333;
  --glass-bg: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(185, 144, 75, 0.24);
  --shadow-soft: 0 20px 40px rgba(102, 82, 51, 0.12);
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Lato", Arial, sans-serif;
  background: radial-gradient(circle at top right, #efe2cd 0%, var(--bg-primary) 48%),
    radial-gradient(circle at bottom left, #f3e8d8 0%, var(--bg-primary) 52%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  z-index: -2;
  background-image: repeating-linear-gradient(
    120deg,
    rgba(185, 144, 75, 0.02) 0px,
    rgba(185, 144, 75, 0.02) 1px,
    transparent 1px,
    transparent 12px
  );
  animation: grainDrift 18s linear infinite alternate;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(45px);
  opacity: 0.22;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-left {
  top: -70px;
  left: -110px;
  background: var(--accent-gold);
}

.orb-right {
  right: -130px;
  bottom: 16%;
  background: #d9b57f;
  animation-delay: 1.6s;
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 1rem auto 0;
  width: min(96%, 1200px);
  border-radius: 18px;
  border: 1px solid rgba(185, 144, 75, 0.18);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(185, 144, 75, 0.08) 100%
  );
}

.nav-wrap {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-wrap::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0.75rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(185, 144, 75, 0.4) 18%,
    rgba(185, 144, 75, 0.15) 50%,
    rgba(185, 144, 75, 0.4) 82%,
    transparent 100%
  );
}

.brand {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #3f2f1a;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(185, 144, 75, 0.4);
  box-shadow: 0 6px 16px rgba(137, 101, 50, 0.18);
}

.brand-text {
  line-height: 1;
  transform: translateY(1px);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.83rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(185, 144, 75, 0.95) 50%,
    transparent 100%
  );
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links li:not(:last-child) a:hover::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  color: #221a10;
  background: linear-gradient(120deg, var(--accent-gold), var(--accent-copper));
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
  padding: 4.6rem 0 4rem;
}

.hero-content {
  max-width: 720px;
  margin-top: -1.1rem;
}

.eyebrow {
  color: var(--accent-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  margin-bottom: 1rem;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 620px;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent-gold), var(--accent-copper));
  color: #221a10;
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: ctaGlow 4s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(185, 144, 75, 0.3);
  filter: saturate(1.05);
}

.section-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

section {
  padding: 5rem 0;
}

.philosophy p {
  color: var(--text-muted);
  max-width: 860px;
}

.philosophy strong,
.philosophy em {
  color: var(--text-primary);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.text-link {
  color: var(--accent-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.art-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.art-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.art-media {
  -webkit-user-drag: none;
  user-select: none;
}

.art-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(29, 22, 14, 0.84) 0%, rgba(29, 22, 14, 0.06) 100%);
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.art-overlay h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.art-overlay a {
  color: var(--accent-gold);
  font-size: 0.92rem;
}

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

.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(133, 104, 62, 0.2);
}

.art-card:hover .art-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-grid .art-card:nth-child(odd) {
  animation: cardLift 6.5s ease-in-out infinite;
}

.gallery-grid .art-card:nth-child(even) {
  animation: cardLift 7.3s ease-in-out infinite reverse;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.4rem 1.2rem;
  border-radius: 14px;
}

.step-number {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--accent-gold);
  margin-bottom: 0.3rem;
}

.step-card p {
  color: var(--text-muted);
}

.shop-social-wrap {
  border-radius: 20px;
  padding: 2.2rem;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
  align-items: center;
}

.btn-primary.large {
  padding-inline: 2.1rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-muted);
}

.insta-icon {
  width: 18px;
  height: 18px;
  border: 1.6px solid var(--accent-gold);
  border-radius: 5px;
  position: relative;
}

.insta-icon::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.4px solid var(--accent-gold);
  border-radius: 50%;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.insta-icon::after {
  content: "";
  position: absolute;
  width: 2.8px;
  height: 2.8px;
  border-radius: 50%;
  background: var(--accent-gold);
  top: 2px;
  right: 2px;
}

.site-footer {
  border-top: 1px solid rgba(160, 132, 88, 0.2);
  padding: 1.8rem 0 2.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(185, 144, 75, 0.35);
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: relative;
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 30;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.6rem);
    width: min(230px, 80vw);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: 12px;
    background: rgba(253, 248, 238, 0.95);
    border: 1px solid var(--glass-border);
    transform-origin: top right;
    animation: mobileMenuIn 0.18s ease;
    z-index: 25;
  }

  .nav-links li:not(:last-child) a::after {
    bottom: -0.28rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-wrap::after {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    font-size: 1.28rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 4rem;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(26px, -20px, 0) scale(1.08);
  }
}

@keyframes grainDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(12px, -10px, 0);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(185, 144, 75, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(185, 144, 75, 0.24);
  }
}

@keyframes cardLift {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  section {
    padding: 4rem 0;
  }

  h2 {
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .shop-social-wrap {
    padding: 1.4rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.45rem;
  }
}
