@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Playfair+Display:wght@500;700;900&display=swap");

:root {
  --ink: #0a0a0a;
  --panel: #333333;
  --brand: #79542e;
}

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

html {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--ink);
}

body {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

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

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

.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  background: var(--ink);
}

.hero-bg {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)), url("../images/figma/home-hero.png");
}

.hero-contact {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)), url("../images/figma/home-hero.png");
}

.contact-bg {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45)), url("../images/figma/contact-form-bg.png");
}

.news-hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)), url("../images/figma/news-hero.png");
}

.mask-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
}

.text-shadow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.31);
}

.value-icon {
  width: 36px;
  height: 40px;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
}
