:root {
  --ink: #14241c;
  --forest: #1f3d2e;
  --leaf: #3d6b52;
  --sage: #8fa894;
  --mist: #e7efe8;
  --paper: #f5f8f5;
  --gold: #c4a35a;
  --gold-deep: #9a7a35;
  --white: #ffffff;
  --header-h: 5.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 107, 82, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(196, 163, 90, 0.1), transparent 55%),
    linear-gradient(180deg, var(--mist), var(--paper) 40%, var(--mist));
  background-attachment: fixed;
}

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

a {
  color: var(--leaf);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  overflow: visible;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(20, 36, 28, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.is-scrolled .brand {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.brand-logo {
  height: 4.25rem;
  width: auto;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.25));
}

@media (min-width: 840px) {
  .brand-logo {
    height: 4.6rem;
  }
}

.nav {
  margin-left: auto;
  display: none;
  gap: 1.35rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.header-cta {
  display: none;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 0.95rem;
  border-radius: 2px;
}

.header-cta:hover {
  background: #d4b56a;
  color: var(--ink);
}

@media (min-width: 840px) {
  .nav,
  .header-cta {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(20, 36, 28, 0.25) 35%, rgba(20, 36, 28, 0.78) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(196, 163, 90, 0.18), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 1.25rem 4.5rem;
}

.brand-hero-logo {
  display: block;
  width: min(240px, 58vw);
  height: auto;
  margin: 0 0 1.25rem;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
  animation: rise 0.9s var(--ease) both;
}

@media (min-width: 900px) {
  .brand-hero-logo {
    width: min(280px, 28vw);
  }
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.94);
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  animation: rise 0.9s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.32s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: #d4b56a;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: rgba(20, 36, 28, 0.28);
}

.btn-ghost.dark:hover {
  border-color: var(--ink);
  background: rgba(20, 36, 28, 0.05);
  color: var(--ink);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-head.light {
  color: var(--white);
}

.section-head.light .eyebrow {
  color: var(--gold);
}

.section-head.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

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

h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.section-head.light h2 {
  color: var(--white);
}

.section-head p,
.section-copy > p {
  margin: 0 0 1rem;
  color: rgba(20, 36, 28, 0.78);
}

.section-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .section-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.section-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% 28%;
  border-radius: 2px;
  filter: saturate(1.05);
}

.facts {
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1rem;
}

.facts dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.facts dd {
  margin: 0.2rem 0 0;
  font-weight: 500;
}

/* Products */
.product-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1120px;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.product-list li img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border-radius: 2px;
}

.product-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--forest);
}

.product-list p {
  margin: 0;
  color: rgba(20, 36, 28, 0.75);
  font-size: 0.98rem;
}

/* Workshops */
.workshops {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.workshops-bg {
  position: absolute;
  inset: 0;
}

.workshops-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.85);
}

.workshops-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 36, 28, 0.88), rgba(31, 61, 46, 0.72)),
    radial-gradient(circle at 85% 15%, rgba(196, 163, 90, 0.2), transparent 40%);
}

.workshops-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.workshop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.workshop-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workshop-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.w-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1.2;
}

.workshop-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.workshop-list p {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.82);
}

.workshop-list .meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gold);
}

/* Gallery */
.gallery {
  padding-top: 0;
  padding-bottom: 0;
}

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

@media (min-width: 800px) {
  .gallery-track {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-track figure {
  margin: 0;
  overflow: hidden;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-track figure:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 3rem;
  }
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(31, 61, 46, 0.06);
  border-top: 2px solid var(--gold);
  overflow: hidden;
}

.contact-logo {
  width: 7.5rem;
  height: auto;
  margin: 0 0 1rem;
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
}

.contact-card p {
  margin: 0 0 1rem;
}

.contact-card .small {
  font-size: 0.92rem;
  color: rgba(20, 36, 28, 0.7);
}

.text-link {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 1.75rem 1.25rem;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.site-footer strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 650;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-ornament,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
