:root {
  --paper: #fbf7ef;
  --surface: #ffffff;
  --surface-soft: #f3eadc;
  --ink: #26342d;
  --muted: #667267;
  --green: #2f6b56;
  --green-dark: #1f3f35;
  --sage: #dce8dc;
  --ochre: #f0bd55;
  --terracotta: #bd6643;
  --line: rgba(38, 52, 45, 0.14);
  --line-strong: rgba(38, 52, 45, 0.22);
  --shadow: 0 18px 48px rgba(31, 63, 53, 0.13);
  --shadow-soft: 0 10px 28px rgba(31, 63, 53, 0.09);
  --radius: 8px;
  --header-height: 88px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(240, 189, 85, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 42%, #f8f1e7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header.compact {
  position: relative;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(68px, 7vw, 92px);
  aspect-ratio: 240 / 215;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.shop-link::after {
  background: var(--ochre);
  transform: scaleX(1);
}

.shop-link {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - var(--header-height)));
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31, 63, 53, 0.82) 0%, rgba(31, 63, 53, 0.58) 39%, rgba(31, 63, 53, 0.16) 72%),
    linear-gradient(0deg, rgba(31, 63, 53, 0.24), rgba(31, 63, 53, 0.02) 42%),
    url("/assets/hero-workshop.png") center / cover;
}

.hero::after {
  content: none;
}

.hero-content {
  width: min(850px, 100%);
  max-width: 100%;
  color: #fffdf8;
  padding-bottom: min(5vh, 48px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--ochre);
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: min(900px, 100%);
  font-size: clamp(2.85rem, 5.4vw, 5.8rem);
}

h2 {
  max-width: min(860px, 100%);
  color: var(--green-dark);
  font-size: clamp(2rem, 3.1vw, 3.45rem);
}

h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--green-dark);
  background: var(--ochre);
  box-shadow: 0 12px 24px rgba(240, 189, 85, 0.28);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.section-inner {
  width: min(1160px, calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
}

.section-band {
  background: rgba(255, 255, 255, 0.58);
  border-block: 1px solid var(--line);
}

.intro .section-inner,
.contact-layout {
  padding: clamp(54px, 7vw, 92px) 0;
}

.split,
.contact-layout,
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.split p,
.contact p,
.text-column p,
.legal p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.about {
  padding: clamp(68px, 9vw, 124px) 0;
}

.text-column {
  max-width: 620px;
}

.text-column p + p {
  margin-top: 18px;
}

.text-column h2 + p,
.contact h2 + p,
.legal h1 + p {
  margin-top: 18px;
}

.values-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

.values-grid article,
.service-grid article,
.contact-panel,
.social-callout {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.values-grid article,
.service-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
}

.values-grid article::before,
.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--ochre);
}

.values-grid article:nth-child(2)::before,
.service-grid article:nth-child(2)::before {
  background: var(--green);
}

.values-grid article:nth-child(3)::before,
.service-grid article:nth-child(3)::before {
  background: var(--terracotta);
}

.service-grid article:nth-child(4)::before {
  background: #8aa7a0;
}

.values-grid p,
.service-grid p {
  margin: 0;
  color: var(--muted);
}

.services .section-inner,
.gallery {
  padding: clamp(68px, 9vw, 124px) 0;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.service-grid article {
  min-height: 158px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: var(--radius);
  color: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 63, 53, 0.02) 18%, rgba(31, 63, 53, 0.84) 100%),
    linear-gradient(90deg, rgba(31, 63, 53, 0.32), transparent 56%);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.gallery-card span,
.gallery-card h3 {
  position: relative;
  z-index: 1;
}

.gallery-card span {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.88);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  color: #fffdf8;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.social-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
}

.social-callout p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(135deg, rgba(220, 232, 220, 0.78), rgba(255, 255, 255, 0.74)),
    var(--surface);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: clamp(40px, 5vw, 48px) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 900;
  background: var(--paper);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  border-color: rgba(47, 107, 86, 0.35);
  background: var(--sage);
  transform: translateY(-1px);
}

.contact-item svg {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  padding: clamp(8px, 1.1vw, 10px);
  color: var(--green-dark);
  background: var(--ochre);
  border-radius: var(--radius);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.7vw, 0.94rem);
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: normal;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 253, 248, 0.72);
  background: var(--green-dark);
}

.site-footer strong {
  display: block;
  color: #fffdf8;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: #fffdf8;
  font-weight: 800;
}

.legal {
  padding: clamp(56px, 8vw, 104px) 0;
}

.legal h1 {
  max-width: 100%;
  color: var(--green-dark);
  font-size: clamp(2.55rem, 5.4vw, 4.9rem);
}

.legal h2 {
  margin-top: 38px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}

.legal p {
  max-width: 820px;
  margin-top: 18px;
}

@media (min-width: 1440px) {
  .section-inner {
    width: min(1240px, calc(100% - 104px));
  }
}

@media (max-width: 1120px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid article {
    min-height: 180px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(var(--header-height) - 2px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    min-height: 42px;
  }

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

  .site-nav.always-visible {
    position: static;
    flex-direction: row;
    gap: clamp(16px, 3vw, 28px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .split,
  .contact-layout,
  .about {
    grid-template-columns: 1fr;
  }

  .text-column {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 7px 14px;
  }

  .brand img {
    width: 54px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
    padding: 12px;
  }

  .hero {
    min-height: min(620px, calc(100svh - var(--header-height)));
    padding: 42px 14px 48px;
    align-items: end;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(31, 63, 53, 0.72) 0%, rgba(31, 63, 53, 0.58) 52%, rgba(31, 63, 53, 0.35) 100%),
      url("/assets/hero-workshop.png") center / cover;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    line-height: 1.07;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.6vw, 2.08rem);
    line-height: 1.1;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .intro .section-inner,
  .contact-layout {
    padding: 40px 0;
  }

  .about,
  .services .section-inner,
  .gallery {
    padding: 50px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .service-grid article,
  .values-grid article {
    min-height: auto;
    padding: 16px 16px 16px 18px;
  }

  .hero-actions,
  .social-callout,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 0.95rem;
  }

  .gallery-card {
    aspect-ratio: 1.12 / 1;
    padding: 16px;
  }

  .social-callout {
    gap: 14px;
    padding: 16px;
  }

  .contact-panel {
    padding: 10px;
    gap: 10px;
  }

  .contact-item {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 62px;
    gap: 10px;
    padding: 10px;
  }

  .contact-item svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .contact-item small {
    font-size: 0.84rem;
  }

  .legal {
    padding: 56px 0 64px;
  }

  .legal h1 {
    font-size: clamp(1.8rem, 7.4vw, 2.15rem);
    line-height: 1.08;
  }

  .legal h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
  }

  .site-header.compact {
    gap: 14px;
  }

  .site-nav.always-visible {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
    font-size: 0.8rem;
  }

  .site-nav.always-visible a {
    min-height: 28px;
  }
}

@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;
  }
}
