html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --bg: #f7f4ee;
  --card: #efebe3;
  --card-alt: #e6dfd4;
  --dark: #221e1d;
  --border: #dcd5c9;
  --accent: #b85d19;
  --muted: #6f6963;
  --paper: #fffdf8;
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    linear-gradient(
      rgba(247, 244, 238, .94),
      rgba(247, 244, 238, .94)
    ),
    url("../graphix/textures/Texture0118.jpg");

  color: var(--dark);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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


/* =========================================================
   CINZEL HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
}


/* =========================================================
   MAIN SHELL
   ========================================================= */

.offerings {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 28px 0 60px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  margin-bottom: 22px;
  padding: 44px 25px 40px;

  text-align: center;

  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.header-title .eyebrow {
  margin: 16px 0 0;

  color: #9c4e18;

  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;

  font-size: clamp(2rem, 1.2483rem + 3.2215vw, 3.5rem);
	line-height: 1.2;

  letter-spacing: .08em;
}

.italic {
  font-family: "Tangerine", cursive;
  font-size: clamp(1rem, 0.6725rem + 1.15vw, 1.2rem);
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
}

.header-title h2 {
  margin: 0;
	font-size: clamp(1.3rem, 1.1rem + 1.9792vw, 2.6rem);
  font-family: "Cinzel", Georgia, serif;

  letter-spacing: .025em;
}

.header-title p {
  margin: 14px auto 0;

  color: var(--muted);

  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;

  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   INFORMATION BLOCKS
   ========================================================= */

.instructions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-bottom: 18px;
}

.instruction-block {
  padding: 18px;

  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.instruction-block h2 {
  margin: 0 0 8px;

  color: var(--dark);

  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.instruction-block p {
  margin: 0;

  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}

.instruction-block p + p {
  margin-top: 10px;
}

.instruction-block strong {
  color: var(--dark);
}


/* =========================================================
   RECEIPT / NOTICE
   ========================================================= */

.receipt-notice {
  margin: 35px 0;

  color: var(--muted);

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.6;

  text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 65px 0 25px;

  background: var(--dark);
  color: var(--bg);
}

.footer .shell {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    repeat(3, 1fr);

  gap: 45px;

  padding-bottom: 45px;
}

.footer strong {
  display: block;

  margin-bottom: 12px;

  color: #d18a3d;

  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;

  font-size: 24px;
  line-height: 1.2;

  letter-spacing: .08em;
}

.footer p {
  color: #a9a29d;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.footer h4 {
  margin: 0 0 12px;

  color: #d18a3d;

  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;

  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer a {
  display: block;

  margin-bottom: 7px;

  color: #cfc8c2;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.footer a:hover {
  color: #d18a3d;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;

  border-top: 1px solid #3c3633;

  padding-top: 18px;

  color: #77706b;

  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  display: inline;
  margin: 0;
}


/* =========================================================
   MOBILE NAV — HIDDEN ON DESKTOP
   ========================================================= */

.mobile-nav {
  display: none;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 850px) {

  .offerings {
    width: min(100% - 28px, 720px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-nav {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 100;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding:
      8px
      10px
      calc(8px + env(safe-area-inset-bottom));

    background: #221e1df7;

    border-top: 1px solid #3c3633;
  }

  .mobile-nav a {
    min-height: 50px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;

    color: #aaa29c;

    font-family: Verdana, Geneva, sans-serif;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: .1em;

    text-transform: uppercase;
  }

  .mobile-nav a.is-current,
  .mobile-nav a:hover {
    color: #d18a3d;
  }

  .mobile-nav span {
    font-size: 17px;
    line-height: 18px;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .offerings {
    width: calc(100% - 14px);
    padding-top: 10px;
  }

  .site-header {
    padding: 34px 18px;
  }

  .header-title h1 {
    font-size: 40px;
  }

  .header-title .eyebrow {
    font-size: 22px;
  }

  .instructions {
    grid-template-columns: 1fr;
  }

  .footer .shell {
    width: min(100% - 28px, 720px);
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 25px;

    text-align: center;
  }

  .footer-grid > div {
    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .footer strong {
    font-size: 24px;
  }

  .footer-bottom {
    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 10px;

    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
  }
}
