@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Uncial+Antiqua&display=swap');

:root {
  --ink: #29251f;
  --muted: #6d665c;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --green: #00843d;
  --green-dark: #005f2f;
  --rust: #a7552a;
  --line: #ddd4c7;
  --shadow: 0 16px 45px rgba(40, 31, 20, .13);
  --celtic: "Uncial Antiqua", "Copperplate Gothic", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: white;
  background: var(--green);
}
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1320px;
  margin: auto;
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: .95rem;
}
.brand strong { display: block; font-family: var(--celtic); font-size: 1.05rem; font-weight: 400; }
.brand small { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.3vw, 2rem); }
.site-nav a { color: var(--muted); font-size: .9rem; font-weight: 600; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current] { color: var(--green); }
.site-nav a[aria-current] { border-bottom: 2px solid var(--green); }
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  min-height: min(680px, calc(100vh - 84px));
  background: var(--cream);
}
.hero-image {
  min-height: 540px;
  background: url("leatherpic/ToteBags_1.jpg") center 42% / cover no-repeat;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 7vw, 7.5rem);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 { font-family: var(--celtic); font-weight: 400; line-height: 1.12; }
h1 { max-width: 650px; margin: 0; font-size: clamp(3rem, 5.4vw, 6rem); letter-spacing: -.04em; }
.hero-copy > p:not(.eyebrow) { max-width: 530px; margin: 1.8rem 0 2.25rem; color: var(--muted); font-size: 1.05rem; }
.button {
  display: inline-block;
  padding: .9rem 1.3rem;
  border: 1px solid var(--green);
  color: white;
  background: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.button:hover, .button:focus-visible { background: var(--green-dark); transform: translateY(-2px); }

.gallery-section { max-width: 1320px; margin: auto; padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3.5rem); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 3rem;
  margin-bottom: 2rem;
}
.section-heading h2, .contact-callout h2 { margin: 0; font-size: clamp(2.5rem, 4vw, 4.5rem); letter-spacing: -.035em; }
.section-heading > p { margin: 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 2rem; }
.filter {
  padding: .55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.filter:hover, .filter:focus-visible { border-color: var(--green); color: var(--green); }
.filter.active { border-color: var(--green); color: white; background: var(--green); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #ded7cc;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.gallery-card.featured { grid-column: span 2; grid-row: span 2; min-height: 616px; }
.gallery-card.wide { grid-column: span 2; }
.gallery-card[hidden] { display: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-card > span {
  position: absolute;
  inset: auto 0 0;
  padding: 2.8rem 1rem 1rem;
  color: white;
  background: linear-gradient(transparent, rgba(20,16,11,.82));
}
.gallery-card strong, .gallery-card small { display: block; }
.gallery-card strong, footer strong, .lightbox figcaption strong {
  font-family: var(--celtic);
  font-weight: 400;
  letter-spacing: .015em;
}
.gallery-card small { margin-top: .1rem; opacity: .76; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.gallery-card:hover, .gallery-card:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow); outline: none; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.035); }

.contact-callout {
  padding: clamp(4rem, 9vw, 8rem) 1.5rem;
  color: white;
  background: var(--green);
  text-align: center;
}
.contact-callout .eyebrow { color: #e5b08c; }
.contact-callout p:not(.eyebrow) { max-width: 580px; margin: 1.5rem auto 2rem; color: #d6dfd8; }
.button.light { border-color: white; color: var(--green); background: white; }
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1320px;
  margin: auto;
  padding: 2rem clamp(1.25rem, 4vw, 3.5rem);
  font-size: .85rem;
}
footer p { margin: 0; }
footer span { color: var(--muted); }
footer a { color: var(--green); }

.lightbox {
  width: min(1120px, calc(100% - 2rem));
  max-width: none;
  height: min(860px, calc(100% - 2rem));
  max-height: none;
  padding: 0;
  border: 0;
  color: white;
  background: #171511;
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(18, 16, 13, .88); backdrop-filter: blur(5px); }
.lightbox figure { display: grid; grid-template-rows: minmax(0, 1fr) auto; width: 100%; height: 100%; margin: 0; }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; padding: 1rem 1.25rem; background: #211e19; }
.lightbox figcaption span { color: #bbb4a9; font-size: .9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,.58);
  cursor: pointer;
}
.lightbox-close { top: .8rem; right: .8rem; width: 44px; height: 44px; font-size: 1.8rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; font-size: 2rem; transform: translateY(-50%); }
.lightbox-nav.previous { left: .8rem; }
.lightbox-nav.next { right: .8rem; }
.lightbox button:hover, .lightbox button:focus-visible { background: var(--rust); outline: 2px solid white; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 55vh; }
  .hero-copy { padding: 3.5rem 1.5rem 4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 740px) {
  .site-header { min-height: 72px; flex-wrap: wrap; }
  .menu-toggle {
    display: block;
    padding: .55rem .8rem;
    border: 1px solid var(--green);
    color: var(--green);
    background: transparent;
  }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 0; }
  .site-nav a[aria-current] { border: 0; }
  .hero-image { min-height: 440px; }
}

@media (max-width: 560px) {
  .brand small { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card.featured, .gallery-card.wide { grid-column: auto; grid-row: auto; min-height: 380px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; }
  .filter { flex: 0 0 auto; }
  footer { flex-direction: column; align-items: flex-start; }
  .lightbox { width: 100%; height: 100%; }
  .lightbox figcaption { padding-right: 4rem; }
}

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