:root {
  --ink: #251a17;
  --muted: #75655f;
  --paper: #fff9f1;
  --paper-strong: #ffffff;
  --blush: #f7d8ca;
  --peach: #f2a789;
  --rose: #d86d75;
  --sage: #97b8a3;
  --butter: #f7d778;
  --line: rgba(37, 26, 23, 0.12);
  --shadow: 0 24px 70px rgba(68, 42, 37, 0.18);
  --shadow-soft: 0 14px 40px rgba(68, 42, 37, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(247, 216, 202, 0.95), transparent 26rem),
    radial-gradient(circle at 92% 14%, rgba(247, 215, 120, 0.5), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, #fff2e7 48%, #fff9f3 100%);
  min-height: 100vh;
}

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

button,
a,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1160px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.78);
  box-shadow: 0 12px 35px rgba(68, 42, 37, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--rose), var(--peach));
  box-shadow: 0 8px 20px rgba(216, 109, 117, 0.32);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.section-pad {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  min-height: min(720px, calc(100vh - 94px));
  padding-block: clamp(34px, 5vw, 58px) 34px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7.4vw, 6.35rem);
  text-wrap: balance;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #d86d75, #ef9d78);
  box-shadow: 0 16px 36px rgba(216, 109, 117, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.carousel-shell {
  position: relative;
  z-index: 1;
  padding: clamp(14px, 2.3vw, 24px);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 248, 236, 0.72)),
    radial-gradient(circle at 20% 15%, rgba(247, 215, 120, 0.45), transparent 16rem),
    radial-gradient(circle at 90% 80%, rgba(151, 184, 163, 0.42), transparent 18rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-shell::before,
.carousel-shell::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
}

.carousel-shell::before {
  left: -70px;
  bottom: -70px;
  background: rgba(216, 109, 117, 0.13);
}

.carousel-shell::after {
  right: -76px;
  top: -86px;
  background: rgba(247, 215, 120, 0.22);
}

.carousel-stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(390px, 41vw, 540px);
  perspective: 1200px;
}

.carousel-card {
  position: absolute;
  left: 50%;
  width: min(68%, 390px);
  transform-origin: center;
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1), opacity 540ms ease, filter 540ms ease;
}

.carousel-card.center {
  z-index: 3;
  transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
  opacity: 1;
  filter: none;
}

.carousel-card.prev {
  z-index: 2;
  transform: translateX(-106%) translateY(24px) scale(0.72) rotate(-5deg);
  opacity: 0.52;
  filter: saturate(0.78) blur(0.2px);
}

.carousel-card.next {
  z-index: 2;
  transform: translateX(6%) translateY(24px) scale(0.72) rotate(5deg);
  opacity: 0.52;
  filter: saturate(0.78) blur(0.2px);
}

.carousel-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.feature-card {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(37, 26, 23, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.feature-frame,
.art-frame,
.modal-art-frame {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 232, 0.9)),
    radial-gradient(circle at 20% 22%, rgba(247, 215, 120, 0.22), transparent 10rem),
    radial-gradient(circle at 84% 72%, rgba(151, 184, 163, 0.18), transparent 12rem);
}

.feature-frame {
  height: clamp(280px, 31vw, 390px);
  border-radius: 22px;
}

.feature-frame img,
.art-frame img,
.modal-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.feature-caption {
  padding: 14px 8px 4px;
}

.feature-caption strong,
.art-title {
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.feature-caption span,
.art-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.carousel-controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(68, 42, 37, 0.08);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 26, 23, 0.22);
  cursor: pointer;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--rose);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -10px;
}

.intro-strip > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: 0 10px 26px rgba(68, 42, 37, 0.07);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.intro-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.gallery-section,
.about-section,
.contact-section {
  padding-block: clamp(54px, 7vw, 82px) 20px;
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 12px;
  margin-bottom: 26px;
}

.section-heading.compact {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.active {
  color: #fff;
  background: var(--ink);
}

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

.art-card {
  min-width: 0;
}

.art-card.is-hidden {
  display: none;
}

.art-card-button {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(68, 42, 37, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.art-card-button:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.art-frame {
  aspect-ratio: 1 / 1;
  border-radius: 17px;
}

.art-card-body {
  display: grid;
  gap: 8px;
  padding: 14px 4px 4px;
}

.art-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(151, 184, 163, 0.18);
  color: #557461;
  white-space: nowrap;
  font-size: 0.73rem;
  font-weight: 900;
}

.status-sold {
  background: rgba(117, 101, 95, 0.14);
  color: var(--muted);
}

.status-commission-only {
  background: rgba(247, 215, 120, 0.28);
  color: #92742b;
}

.art-price {
  color: var(--rose);
  font-weight: 900;
}

.about-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 12%, rgba(247, 216, 202, 0.68), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.about-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 26, 23, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(216, 109, 117, 0.12);
}

.hidden-field {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 32px));
  margin: 80px auto 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 20px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 26, 23, 0.42);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.86fr);
  gap: 22px;
  width: min(940px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 14px;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
}

.modal-art-frame {
  min-height: 440px;
  border-radius: 24px;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 16px 28px 0;
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.modal-meta,
.modal-price {
  margin: 16px 0 0;
}

.modal-price {
  color: var(--rose) !important;
  font-weight: 900;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .carousel-stage {
    min-height: clamp(390px, 62vw, 500px);
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .top-nav a {
    padding: 9px 8px;
    font-size: 0.86rem;
  }

  .brand span:last-child {
    display: none;
  }

  .section-pad {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 20px;
    padding-top: 26px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
    line-height: 0.95;
  }

  .hero-text {
    margin-top: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .carousel-shell {
    border-radius: 28px;
    padding: 12px;
  }

  .carousel-stage {
    min-height: clamp(320px, 88vw, 390px);
  }

  .carousel-card {
    width: min(92%, 360px);
  }

  .carousel-card.prev,
  .carousel-card.next {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.88);
  }

  .feature-card {
    padding: 10px;
    border-radius: 24px;
  }

  .feature-frame {
    height: clamp(220px, 61vw, 300px);
    border-radius: 18px;
  }

  .feature-caption {
    padding: 10px 6px 2px;
  }

  .carousel-controls {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .art-card-button {
    padding: 9px;
    border-radius: 18px;
  }

  .art-frame {
    border-radius: 14px;
  }

  .art-card-body {
    gap: 6px;
    padding: 10px 2px 2px;
  }

  .art-card-topline {
    display: grid;
    gap: 6px;
  }

  .art-title {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .art-meta,
  .art-price {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .status-pill {
    justify-self: start;
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.65rem;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-art-frame {
    min-height: 330px;
  }

  .modal-copy {
    padding: 4px 6px 10px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .site-header {
    padding: 9px 10px;
  }

  .top-nav a {
    padding-inline: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 20px;
  }

  .carousel-stage {
    min-height: 330px;
  }

  .feature-frame {
    height: 225px;
  }

  .carousel-dots {
    gap: 5px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }
}

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

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


.email-note,
.email-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.email-fallback {
  text-align: center;
}

.email-fallback a {
  color: var(--ink);
  font-weight: 800;
}
