
:root {
  --green: #2f4f3b;
  --green-dark: #20372a;
  --orange: #c96b3d;
  --cream: #fbfaf6;
  --warm: #f3eee5;
  --ink: #242824;
  --muted: #6f776f;
  --line: #ddd8ce;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: .9rem max(1.25rem, calc((100vw - var(--max))/2));
  background: rgba(251,250,246,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display:block; }
.brand img { width: 250px; max-height: 78px; object-fit: contain; object-position: left center; }
nav { display: flex; gap: 1.35rem; flex-wrap: wrap; }
nav a { text-decoration: none; font-weight: 800; color: var(--green); }
nav a:hover, nav a:focus-visible { color: var(--orange); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--orange);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .14em;
}
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green);
  line-height: 1.04;
  margin: 0;
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); max-width: 760px; }
h2 { font-size: clamp(2.2rem, 4.2vw, 4rem); }
.lede { max-width: 690px; font-size: clamp(1.08rem, 1.8vw, 1.32rem); margin: 1.5rem 0 2rem; }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: white; }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { border: 2px solid var(--green); color: var(--green); }
.button.secondary:hover { background: white; }
.button.light { background: var(--cream); color: var(--green); white-space: nowrap; }

.hero-collage {
  position: relative;
  min-height: 560px;
}
.hero-collage > img:not(.hero-seal) {
  position: absolute;
  background: white;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(32,55,42,.12);
  padding: .5rem;
  object-fit: contain;
}
.hero-a { width: 62%; left: 2%; top: 1%; transform: rotate(-3deg); z-index: 2; }
.hero-b { width: 58%; right: 0; top: 18%; transform: rotate(4deg); z-index: 3; }
.hero-c { width: 54%; left: 18%; bottom: 0; transform: rotate(1.5deg); z-index: 4; }
.hero-seal {
  position: absolute;
  width: 118px;
  right: 2%;
  bottom: 3%;
  z-index: 5;
  filter: drop-shadow(0 8px 15px rgba(32,55,42,.10));
}

.three-up {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.three-up article {
  padding: 2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.three-up h2 { font-size: 1.7rem; margin: .6rem 0 .8rem; }
.number { color: var(--orange); font-weight: 900; letter-spacing: .1em; }

.gallery-section {
  background: white;
  padding: 6rem max(1.25rem, calc((100vw - var(--max))/2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { max-width: 760px; margin-bottom: 2.25rem; }
.section-heading > p:last-child { font-size: 1.08rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.piece {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.piece-image {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}
.piece-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.piece:hover .piece-image img { transform: scale(1.025); }
.piece figcaption {
  padding: 1rem 1.1rem 1.1rem;
  color: var(--green);
  font-weight: 800;
}
.gallery-note {
  color: var(--muted);
  max-width: 750px;
  margin: 1.5rem 0 0;
  font-size: .94rem;
}

.commission-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.commission-section > div { max-width: 790px; }
.commission-section h2 { margin-bottom: 1rem; }
.commission-section p:not(.eyebrow) { font-size: 1.08rem; }
.commission-note { color: var(--muted); font-size: .96rem !important; }
.commission-button {
  background: var(--orange);
  color: white;
  white-space: nowrap;
}
.commission-button:hover { background: #ad5730; }

.services-section {
  background: var(--warm);
  padding: 6rem max(1.25rem, calc((100vw - var(--max))/2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-heading { margin-bottom: 2.25rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.services-grid article {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
}
.services-grid h3 {
  margin: .65rem 0 .8rem;
  color: var(--green);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
  line-height: 1.08;
}
.services-grid p { margin-bottom: 0; }
.services-cta {
  margin-top: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.services-cta div { display: grid; gap: .2rem; }
.services-cta strong { color: var(--green); font-size: 1.08rem; }
.services-cta span { color: var(--muted); }

.about-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.25rem;
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-mark img { width: min(100%, 320px); margin: auto; }
.about-section p:not(.eyebrow) { font-size: 1.08rem; max-width: 740px; }

.shop-band {
  background: var(--green);
  color: white;
  padding: 4rem max(1.25rem, calc((100vw - var(--max))/2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
.shop-band h2 { color: white; }
.shop-band p:not(.eyebrow) { max-width: 760px; }
.shop-band .eyebrow { color: #f1b08f; }

.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.contact-links { display: grid; gap: .8rem; }
.contact-links a, .social-coming {
  display: grid;
  gap: .15rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-decoration: none;
}
.contact-links a:hover { border-color: var(--orange); }
.contact-links span, .social-coming span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
}
.contact-links strong, .social-coming strong { color: var(--green); overflow-wrap: anywhere; }
.social-coming { opacity: .7; }

footer {
  text-align: center;
  padding: 3.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--warm);
}
footer img { width: 270px; max-height: 90px; object-fit: contain; margin: 0 auto 1rem; }
footer p { margin: .3rem 0; }
footer p span { color: var(--orange); padding: 0 .25rem; }
.small { color: var(--muted); font-size: .88rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-collage { min-height: 520px; max-width: 650px; width: 100%; }
  .three-up { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-cta { align-items: flex-start; flex-direction: column; }
  .about-section, .contact-section, .shop-band, .commission-section { grid-template-columns: 1fr; }
  .about-mark img { width: 200px; margin: 0; }
}
@media (max-width: 620px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .brand img { width: 225px; }
  nav { gap: 1rem; font-size: .95rem; }
  .hero { padding-top: 3rem; }
  .hero-collage { min-height: 430px; }
  .hero-a { width: 67%; }
  .hero-b { width: 61%; top: 19%; }
  .hero-c { width: 59%; left: 13%; }
  .hero-seal { width: 92px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-section, .services-section, .about-section, .contact-section { padding-top: 4rem; padding-bottom: 4rem; }
}

/* v6: live shop + social links */
.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  justify-content: flex-end;
}
.outline-light {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.72) !important;
}
.outline-light:hover { background: rgba(255,255,255,.1) !important; }
.footer-social a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-social a:hover { color: var(--orange); }
@media (max-width: 760px) {
  .shop-actions { justify-content: flex-start; }
}
