:root {
  /* ---- Color system ---- */
  --cream: #FBF6EE;
  --cream-2: #F5EBDC;
  --cream-3: #EFE0CB;
  --white: #FFFDF9;
  --espresso: #2A1F1A;
  --espresso-2: #1B1310;

  --ink: #2E241E;
  --ink-muted: #5C4B40;

  --accent: #B4551F;
  --accent-dark: #8F4114;
  --accent-soft: #F6E3D3;
  --wheat: #C98A3E;
  --olive: #5F6B45;

  --line: rgba(42, 31, 26, 0.10);
  --line-strong: rgba(42, 31, 26, 0.18);

  /* ---- Typography ---- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: clamp(1.35rem, 2.2vw, 1.7rem);
  --fs-2xl: clamp(1.75rem, 3.6vw, 2.5rem);
  --fs-hero: clamp(2.35rem, 6.2vw, 4rem);

  /* ---- Spacing scale ---- */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --container: 1100px;
  --section-y: clamp(3.75rem, 7vw, 6.5rem);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(42, 31, 26, 0.04);
  --shadow-lift: 0 26px 44px -30px rgba(42, 31, 26, 0.5);
  --ring: 0 0 0 4px rgba(180, 85, 31, 0.16);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 999;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: var(--espresso);
  color: var(--cream);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Shared layout helpers ---------------------------------------------------- */

.section-inner,
.header-inner,
.hero-inner,
.footer-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.section-header {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}

.section-title {
  margin-top: 0.75rem;
  font-size: var(--fs-2xl);
  text-wrap: balance;
}

.section-lede {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.button-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px -14px rgba(180, 85, 31, 0.9);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -16px rgba(143, 65, 20, 0.95);
}

.button-ghost {
  background-color: transparent;
  color: var(--espresso);
  border-color: var(--line-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background-color: rgba(42, 31, 26, 0.06);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.button-small {
  padding: 0.6rem 1.2rem;
  font-size: var(--fs-sm);
}

/* ==========================================================================
   Header + navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 246, 238, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.9rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex: 0 1 auto;
  min-width: 0;
}

.wordmark-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--accent);
}

.wordmark-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-accent {
  color: var(--accent);
  margin-left: 0.22em;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background-color: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(42, 31, 26, 0.05);
  border-color: var(--espresso);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background-color: var(--espresso);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem var(--gutter) 1.5rem;
  background-color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 36px -26px rgba(42, 31, 26, 0.6);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.site-header.nav-open .site-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-item {
  border-bottom: 1px solid rgba(42, 31, 26, 0.08);
}

.nav-item:last-child {
  border-bottom: 0;
}

.nav-link {
  display: block;
  padding: 0.8rem 0.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  width: 100%;
  margin-top: 0.25rem;
}

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
  }

  .nav-item {
    border-bottom: 0;
  }

  .nav-link {
    position: relative;
    padding: 0.55rem 0.8rem;
    font-size: 1rem;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
  }

  .nav-link:hover::after,
  .nav-link:focus-visible::after {
    transform: scaleX(1);
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 7rem);
  background-color: var(--cream);
  background-image:
    radial-gradient(900px 480px at 88% -14%, rgba(201, 138, 62, 0.26), transparent 66%),
    radial-gradient(720px 420px at 2% 106%, rgba(180, 85, 31, 0.12), transparent 70%);
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(42, 31, 26, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42, 31, 26, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(115% 85% at 60% 30%, #000 10%, transparent 72%);
  mask-image: radial-gradient(115% 85% at 60% 30%, #000 10%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background-image:
    repeating-linear-gradient(
      to right,
      rgba(42, 31, 26, 0.22) 0 1px,
      transparent 1px 16px
    ),
    repeating-linear-gradient(
      to right,
      rgba(42, 31, 26, 0.32) 0 1px,
      transparent 1px 80px
    );
  background-size: 100% 7px, 100% 16px;
  background-position: 0 100%, 0 100%;
  background-repeat: repeat-x;
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-title {
  margin-top: 0.85rem;
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--espresso);
  text-wrap: balance;
}

.hero-lede {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.hero-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}

.hero-fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.hero-fact-value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--espresso);
}

.hero-fact-label {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-muted);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 1rem 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(84%, 330px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: linear-gradient(
    158deg,
    rgba(201, 138, 62, 0.34),
    rgba(180, 85, 31, 0.12) 55%,
    rgba(251, 246, 238, 0) 85%
  );
  box-shadow: inset 0 0 0 1px rgba(180, 85, 31, 0.16);
}

.hero-scale {
  position: relative;
  z-index: 1;
  width: min(78%, 320px);
  height: auto;
  color: var(--accent);
  filter: drop-shadow(0 20px 32px rgba(42, 31, 26, 0.2));
  animation: scale-float 7s ease-in-out infinite;
}

@keyframes scale-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .hero-visual {
    min-height: 320px;
  }
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  padding-block: var(--section-y);
  background-color: var(--white);
}

.about-body {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about-paragraph {
  color: var(--ink-muted);
  line-height: 1.8;
}

.about-paragraph:first-child {
  font-size: var(--fs-lg);
  line-height: 1.75;
  color: var(--ink);
}

/* ==========================================================================
   Services / Offerings
   ========================================================================== */

.services {
  padding-block: var(--section-y);
  background-color: var(--cream-2);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid rgba(42, 31, 26, 0.09);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(180, 85, 31, 0.3);
  box-shadow: var(--shadow-lift);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background-color: var(--accent-soft);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(180, 85, 31, 0.14);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-title {
  margin-bottom: 0.6rem;
  font-size: 1.1875rem;
  font-weight: 600;
}

.service-text {
  color: var(--ink-muted);
  font-size: 0.9688rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */

.why-choose-us {
  padding-block: var(--section-y);
  background-color: var(--espresso);
  color: rgba(251, 246, 238, 0.85);
}

.why-choose-us .eyebrow {
  color: var(--wheat);
}

.why-choose-us .section-title {
  color: var(--cream);
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(201, 138, 62, 0.14);
  color: var(--wheat);
  box-shadow: inset 0 0 0 1px rgba(201, 138, 62, 0.3);
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-copy {
  min-width: 0;
}

.why-title {
  margin-bottom: 0.4rem;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--cream);
}

.why-text {
  font-size: 0.9688rem;
  line-height: 1.7;
  color: rgba(251, 246, 238, 0.72);
}

@media (min-width: 760px) {
  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 5vw, 4rem);
  }
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding-block: var(--section-y);
  background-color: var(--cream);
  background-image: radial-gradient(
    620px 340px at 100% 0%,
    rgba(201, 138, 62, 0.14),
    transparent 70%
  );
  background-repeat: no-repeat;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-lede {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: var(--fs-lg);
  line-height: 1.65;
  color: var(--ink-muted);
}

.contact-list {
  display: grid;
  gap: 1.65rem;
  margin: clamp(2rem, 4vw, 2.5rem) 0 0;
}

.contact-item {
  position: relative;
  padding-left: 2.85rem;
}

.contact-label {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.contact-icon {
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-soft);
  color: var(--accent);
}

.contact-icon svg {
  width: 17px;
  height: 17px;
}

.contact-value {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.social-link {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 85, 31, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Form -------------------------------------------------------------------- */

.contact-form-wrap {
  background-color: var(--white);
  border: 1px solid rgba(42, 31, 26, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 30px 60px -42px rgba(42, 31, 26, 0.7);
}

.contact-form {
  display: block;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.field-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}

.field-input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--cream);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field-input::placeholder {
  color: rgba(92, 75, 64, 0.65);
}

.field-input:hover {
  border-color: rgba(42, 31, 26, 0.3);
}

.field-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--accent);
  box-shadow: var(--ring);
}

.field-textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--olive);
}

@media (min-width: 520px) {
  .form-submit {
    width: auto;
    min-width: 12rem;
  }
}

@media (min-width: 900px) {
  .contact-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 6vw, 5rem);
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--espresso-2);
  color: rgba(251, 246, 238, 0.8);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.75rem 2.5rem;
}

.footer-brand {
  max-width: 24rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: rgba(251, 246, 238, 0.62);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}

.footer-link {
  display: inline-block;
  padding: 0.2rem 0;
  font-size: var(--fs-sm);
  color: rgba(251, 246, 238, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--cream);
  border-bottom-color: var(--wheat);
}

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(251, 246, 238, 0.12);
  padding: 1.25rem var(--gutter);
}

.footer-copyright {
  max-width: var(--container);
  margin-inline: auto;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: rgba(251, 246, 238, 0.55);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-scale {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}