:root {
  --emerald: #073f34;
  --emerald-soft: #0d5b4d;
  --gold: #c6a15b;
  --gold-light: #e7d4a6;
  --ivory: #fbf8ef;
  --paper: #fffdf8;
  --ink: #1f2925;
  --muted: #6e776f;
  --line: rgba(7, 63, 52, 0.14);
  --shadow: 0 22px 50px rgba(7, 63, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 248, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ivory);
  background: var(--emerald);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--emerald);
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(115deg, rgba(251, 248, 239, 0.88), rgba(251, 248, 239, 0.68)),
    radial-gradient(circle at 85% 28%, rgba(198, 161, 91, 0.22), transparent 30%),
    linear-gradient(140deg, var(--ivory), #eef4ec 58%, #f7efdb);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--emerald);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 8.75rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.hero-tagline {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3d4842;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: var(--emerald);
}

.button-secondary {
  color: var(--emerald);
  background: rgba(255, 253, 248, 0.7);
}

.hero-art {
  display: grid;
  place-items: center;
}

.art-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.65);
  background:
    linear-gradient(145deg, rgba(7, 63, 52, 0.88), rgba(13, 91, 77, 0.72)),
    var(--emerald);
  box-shadow: var(--shadow);
}

.art-frame::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(231, 212, 166, 0.5);
}

.art-frame p {
  position: absolute;
  right: 28px;
  bottom: 24px;
  margin: 0;
  color: rgba(251, 248, 239, 0.78);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resin-orbit,
.gold-vein {
  position: absolute;
  pointer-events: none;
}

.resin-orbit {
  border: 1px solid rgba(231, 212, 166, 0.34);
  border-radius: 50%;
}

.orbit-one {
  top: 12%;
  left: -18%;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(251, 248, 239, 0.3), transparent 64%);
}

.orbit-two {
  right: -28%;
  bottom: 6%;
  width: 86%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.24), transparent 66%);
}

.gold-vein {
  width: 2px;
  height: 78%;
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  transform: rotate(28deg);
}

.vein-one {
  top: -6%;
  left: 55%;
}

.vein-two {
  top: 14%;
  left: 68%;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.portrait-placeholder {
  display: grid;
  min-height: 430px;
  place-items: end start;
  padding: 28px;
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(7, 63, 52, 0.08), rgba(198, 161, 91, 0.2)),
    linear-gradient(140deg, var(--emerald), var(--emerald-soft));
  border: 1px solid rgba(198, 161, 91, 0.48);
}

.portrait-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy {
  max-width: 720px;
  color: #425049;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.gallery {
  background: linear-gradient(180deg, var(--ivory), #f7f1e2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery-card {
  grid-column: span 2;
  display: grid;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(7, 63, 52, 0.07);
}

.featured-card {
  grid-column: span 4;
  grid-template-columns: minmax(220px, 0.7fr) 1fr;
  align-items: end;
}

.image-placeholder {
  min-height: 260px;
  border: 1px solid rgba(198, 161, 91, 0.3);
  background-color: #e9e4d4;
  background-image:
    linear-gradient(135deg, rgba(255, 253, 248, 0.52), transparent),
    radial-gradient(circle at 28% 34%, rgba(7, 63, 52, 0.62), transparent 20%),
    radial-gradient(circle at 72% 68%, rgba(198, 161, 91, 0.62), transparent 24%);
}

.trays {
  background-image:
    linear-gradient(135deg, rgba(255, 253, 248, 0.42), transparent),
    radial-gradient(ellipse at 50% 52%, rgba(7, 63, 52, 0.58), transparent 32%),
    radial-gradient(circle at 74% 24%, rgba(198, 161, 91, 0.68), transparent 20%);
}

.dominoes {
  background-image:
    repeating-linear-gradient(90deg, rgba(7, 63, 52, 0.74) 0 22px, transparent 22px 42px),
    linear-gradient(145deg, rgba(231, 212, 166, 0.8), #fffdf8);
}

.keychains {
  background-image:
    radial-gradient(circle at 35% 36%, rgba(198, 161, 91, 0.7), transparent 18%),
    radial-gradient(circle at 62% 58%, rgba(7, 63, 52, 0.62), transparent 20%),
    linear-gradient(145deg, #fffdf8, #e7d4a6);
}

.custom-pieces {
  min-height: 320px;
  background-image:
    linear-gradient(45deg, rgba(7, 63, 52, 0.12) 25%, transparent 25% 50%, rgba(198, 161, 91, 0.18) 50% 75%, transparent 75%),
    linear-gradient(145deg, #fffdf8, #e4efe8);
  background-size: 42px 42px, auto;
}

.gallery-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.custom {
  background: var(--emerald);
}

.custom .section-heading h2 {
  color: var(--ivory);
}

.custom-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(251, 248, 239, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(231, 212, 166, 0.36);
  background: rgba(255, 253, 248, 0.08);
  color: var(--ivory);
  font: inherit;
  letter-spacing: 0;
  outline: none;
  padding: 15px 16px;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(251, 248, 239, 0.54);
}

input:focus,
textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 253, 248, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.form-button {
  justify-self: start;
  background: var(--gold);
  color: var(--emerald);
}

.contact {
  background: var(--paper);
}

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

.contact-list a,
.contact-list p {
  min-height: 150px;
  margin: 0;
  padding: 28px;
  color: var(--emerald);
  background: var(--ivory);
  border: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(251, 248, 239, 0.78);
  background: #052b24;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
  }

  .gallery-card,
  .featured-card {
    grid-column: span 3;
  }

  .custom-form,
  .contact-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .brand-text {
    max-width: 150px;
    line-height: 1;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(251, 248, 239, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .gallery-grid,
  .custom-form,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .featured-card {
    grid-column: auto;
  }

  .portrait-placeholder,
  .image-placeholder {
    min-height: 250px;
  }

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

@media (max-width: 420px) {
  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.72rem;
  }
}
.hero-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 4px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 24px 50px rgba(0,0,0,0.16);
    object-fit: cover;
}
.portrait-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.site-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 0 8px 25px rgba(0,0,0,0.08);
}
.gallery-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.artwork-card {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.artwork-info {
  margin-top: 16px;
}

.inquiry-button {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  background: #0f4f3d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.inquiry-button:hover {
  background: #c9a227;
  color: #0f4f3d;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-overlay img {
  max-width: 85%;
  max-height: 78vh;
  border-radius: 6px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 36px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

.lightbox-nav {
  margin-top: 24px;
}

.lightbox-nav button {
  padding: 12px 22px;
  margin: 0 8px;
  border: none;
  cursor: pointer;
  background: #c9a227;
  color: #0f4f3d;
  font-weight: 700;
  letter-spacing: 1px;
}
.artwork-info {
  position: relative;
  z-index: 2;
}

.inquiry-button {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.inquiry-button {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
..artwork-card {
    display: block;
    gap: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.artwork-info {
    flex: 1;
}

.artwork-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.artwork-info {
    padding: 25px;
}

.artwork-info h3 {
    margin-top: 0;
    color: #0f4d43;
    font-size: 2.5rem;
    font-family: "Cormorant Garamond", serif;
}

.artwork-info p {
    margin: 10px 0;
}

.inquiry-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: #0f4d43;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-hidden {
    display: none;
}
.simple-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.simple-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.simple-lightbox-close {
  position: fixed;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
}
.image-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}
