@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --linen: #f6f1e8;
  --ink: #0b0f10;
  --copper: #b26b3a;
  --copper: #2e5a50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  background: #f6f1e8;
  color: #0b0f10;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings:
    "kern" 1,
    "liga" 1,
    "calt" 1,
    "ss01" 1;
}

::selection {
  background: rgba(178, 107, 58, 0.25);
}

/* Premium page atmosphere */
.page-atmosphere {
  position: relative;
  isolation: isolate;
}
.page-atmosphere::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background:
    radial-gradient(
      1000px 520px at 20% 0%,
      rgba(178, 107, 58, 0.14),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 82% 10%,
      rgba(46, 90, 80, 0.16),
      transparent 60%
    ),
    radial-gradient(
      760px 520px at 50% 62%,
      rgba(11, 15, 16, 0.06),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(255, 252, 246, 0.65),
      rgba(246, 241, 232, 0.55)
    );
}
.page-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.65;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27180%27 height=%27180%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.85%27 numOctaves=%273%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27180%27 height=%27180%27 filter=%27url(%23n)%27 opacity=%270.12%27/%3E%3C/svg%3E");
}

/* Reveal motion (scroll) */
.js-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  filter: blur(8px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform, filter;
}
.js-reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.js-reveal[data-reveal-delay="1"] {
  transition-delay: 90ms;
}
.js-reveal[data-reveal-delay="2"] {
  transition-delay: 180ms;
}
.js-reveal[data-reveal-delay="3"] {
  transition-delay: 270ms;
}
.js-reveal[data-reveal-delay="4"] {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.content-image {
  border-radius: 8px;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .content-image {
    width: 500px;
    height: 500px;
    margin-right: 2rem !important;
    float: left;
  }
}
@media all and (max-width: 768px) {
  .content-image {
    height: 350px;
    margin-bottom: 1rem !important;
  }
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.content h1 {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem !important;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}

.content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.25rem !important;
}

.content ul,
.content ol {
  margin-bottom: 1.25rem !important;
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  text-decoration: underline;
  font-weight: 500;
}

.content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  padding-left: 1rem;
  margin-bottom: 1.5rem !important;
}

.content strong {
  font-weight: 600;
}

.content em {
  font-style: italic;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.iti {
  width: 100%;
}
