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

:root {
  --cream: #f5f0e8;
  --dark: #1a1714;
  --gold: #c9a96e;
  --gold-light: #e8d4a8;
  --warm-gray: #8c8278;
  --accent: #7a5c3e;
  --white: #faf8f4;
  --ink: #2d2926;
}

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

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}


/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  opacity: 0;
  animation: loaderFadeIn 0.7s ease forwards 0.15s;
}

.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 0.9s ease forwards 0.25s;
}

.loader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--warm-gray);
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 0.6s ease forwards 0.6s;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderLine {
  to { width: 180px; }
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 0.5s ease, padding 0.5s ease;
}

header.scrolled {
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(12px);
  padding: 1.2rem 4rem;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.25em;
  font-weight: 300;
  position: relative;
}

.logo a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

nav a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

nav a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.6rem 1.5rem;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 32px; }
.hamburger span:nth-child(2) { width: 20px; margin-left: auto; }
.hamburger span:nth-child(3) { width: 26px; }

.hamburger:hover span:nth-child(2) { width: 32px; }

.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  width: 28px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  width: 28px;
}

/* ── Hero ── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 80%, rgba(122, 92, 62, 0.15) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 5rem 2rem 6rem;
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease forwards 1.1s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards 1.3s;
}

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

.hero-title .line-break {
  display: block;
}

.hero-desc {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(250, 248, 244, 0.55);
  line-height: 2;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease forwards 1.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.8s ease forwards 1.8s;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  color: rgba(250, 248, 244, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

.btn-ghost:hover { color: var(--gold); }

.btn-ghost .arrow {
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}

.btn-ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-ghost:hover .arrow { width: 48px; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: heroFade 0.8s ease forwards 2.2s;
}

.hero-scroll span {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

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

/* ── Section Basics ── */
section {
  padding: 8rem 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-label {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

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

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ── About / Intro ── */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: 'MĀKSLA';
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.05);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  z-index: 0;
}

.about-img-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.about-tag {
  position: absolute;
  top: 2rem;
  left: -3rem;
  background: var(--dark);
  color: var(--gold);
  padding: 1.2rem 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.about-text {
  padding-left: 2rem;
}

.about-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--warm-gray);
  margin: 2.5rem 0;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.4rem;
}

/* ── Services ── */
.services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse at 80% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services .section-title { color: var(--white); }
.services .section-label { }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 4rem;
}

.services-intro {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(250, 248, 244, 0.45);
  max-width: 380px;
  align-self: flex-end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
}

.service-card {
  background: var(--dark);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.service-card:hover {
  background: rgba(201, 169, 110, 0.05);
}

.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s ease;
}

.service-card:hover .service-num {
  color: rgba(201, 169, 110, 0.25);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.8rem;
  color: var(--gold);
  opacity: 0.8;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.78rem;
  line-height: 1.9;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 2rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 0.4rem 0.8rem;
}

.service-badge.free {
  background: rgba(201, 169, 110, 0.1);
}

/* ── Process ── */
.process {
  background: var(--cream);
  position: relative;
}

.process-timeline {
  margin-top: 5rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.process-step:nth-child(even) .step-content {
  order: 3;
  text-align: left;
}

.process-step:nth-child(even) .step-empty {
  order: 1;
}

.step-dot {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--cream);
  position: relative;
  z-index: 1;
  justify-self: center;
  transition: all 0.4s ease;
}

.process-step:hover .step-dot {
  background: var(--gold);
  color: var(--dark);
}

.step-content {
  text-align: right;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.step-content p {
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--warm-gray);
}

/* ── Gallery / Portfolio ── */
.gallery {
  background: var(--white);
  overflow: hidden;
}

.gallery-marquee {
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

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

.gallery-item {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.gallery-item svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-item:hover svg { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
}

.gallery-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ── Paintings / Art Section ── */
.paintings {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.paintings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(122, 92, 62, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.paintings .section-title { color: var(--white); }

.paintings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.painting-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.painting-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.4);
}

.painting-card svg {
  width: 100%;
  height: 100%;
}

.painting-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, transparent 100%);
}

.painting-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.painting-style {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.paintings-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── Shop Teaser ── */
.shop-teaser {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-teaser::before {
  content: 'VEIKALS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 300;
  color: rgba(201, 169, 110, 0.05);
  pointer-events: none;
  white-space: nowrap;
}

.shop-empty-state {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.shop-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.shop-empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
}

.shop-empty-state p {
  font-size: 0.8rem;
  line-height: 2;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
}

.notify-form {
  display: flex;
  gap: 0;
  max-width: 340px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-right: none;
  background: transparent;
  padding: 0.9rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  outline: none;
}

.notify-form input::placeholder { color: var(--warm-gray); }

.notify-form input:focus {
  border-color: var(--gold);
}

.notify-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.notify-form button:hover { background: var(--accent); }

/* ── Testimonials ── */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial {
  padding: 3rem;
  background: var(--cream);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial:hover { transform: translateY(-5px); }

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--warm-gray);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.author-role {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-top: 0.2rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}

.star {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ── Contact ── */
.contact {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.contact .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.contact-info p {
  font-size: 0.8rem;
  line-height: 2;
  color: rgba(250, 248, 244, 0.45);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.6);
}

.contact-item-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom-color: rgba(201, 169, 110, 0.4);
  padding: 1rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 244, 0.25);
}

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

.btn-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1.1rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:hover { color: var(--dark); }
.btn-submit span { position: relative; z-index: 1; }

/* ── Footer ── */
footer {
  background: #111009;
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-brand .logo-footer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(250, 248, 244, 0.35);
  margin-bottom: 2rem;
  max-width: 280px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gray);
  transition: all 0.3s ease;
}

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

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(250, 248, 244, 0.25);
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.6rem;
  color: rgba(250, 248, 244, 0.25);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

/* ── Floating ornament ── */
.ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  color: var(--gold);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(250, 248, 244, 0.7);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 4rem;
  font-size: 2rem;
  color: var(--warm-gray);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.mobile-close:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .paintings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-grid { gap: 4rem; }
}

@media (max-width: 900px) {
  .container { padding: 0 2rem; }
  header { padding: 1.5rem 2rem; }
  header.scrolled { padding: 1rem 2rem; }

  nav { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-text { padding-left: 0; }
  .about-tag { display: none; }
  .about-accent-box { display: none; }

  .services-header { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }

  .process-timeline::before { left: 28px; }
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step .step-dot { order: -1; }
  .process-step .step-content { order: 0; text-align: left; }
  .process-step .step-empty { display: none; }
  .process-step:nth-child(even) .step-content { order: 0; text-align: left; }
  .process-step:nth-child(even) .step-empty { display: none; }
  .step-content { text-align: left; }

  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .testimonials-track { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  section { padding: 5rem 0; }
  .paintings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Form feedback messages ── */
.form-msg {
  display: none;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.8rem;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-left: 3px solid;
}

.form-msg--ok {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.form-msg--err {
  background: rgba(180, 60, 60, 0.12);
  border-color: #b43c3c;
  color: #e07070;
}

.form-msg::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.form-msg--ok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.form-msg--err::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e07070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
}

/* ── Particle canvas overlay ── */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── Smooth page transitions ── */
.page-enter {
  opacity: 0;
  transform: translateY(20px);
}

/* ── Legal pages ── */
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin: 3rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 0.85rem;
  line-height: 2;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.legal-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.3s;
}

.legal-body a:hover { border-color: var(--gold); }

.legal-body ul {
  margin: 0.5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-body ul li {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  font-size: 0.8rem;
}

.legal-table th {
  text-align: left;
  padding: 0.8rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.legal-table td {
  padding: 0.9rem 1rem;
  color: var(--warm-gray);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  vertical-align: top;
  line-height: 1.6;
}

.legal-table code {
  font-family: monospace;
  font-size: 0.8rem;
  background: var(--cream);
  padding: 2px 6px;
  color: var(--accent);
}

.legal-contact-box {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  background: var(--cream);
}

.legal-contact-box p:last-child {
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0;
}

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.55);
  max-width: 640px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.cookie-text a:hover { border-color: var(--gold); }

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.cookie-accept:hover { background: var(--accent); color: var(--white); }

.cookie-decline {
  background: transparent;
  color: rgba(250, 248, 244, 0.4);
  border: 1px solid rgba(250, 248, 244, 0.1);
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.cookie-decline:hover {
  border-color: rgba(250, 248, 244, 0.3);
  color: rgba(250, 248, 244, 0.7);
}

@media (max-width: 700px) {
  #cookie-banner { padding: 1.5rem 2rem; }
  .cookie-text { font-size: 0.7rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}
