  /* ==== General ====*/

  :root {
    --bg-main: #f3eee8;
    --bg-secondary: #e3d7cc;
    --text-main: #1e1a1a;
    --text-soft: #5e5652;
    --brown-warm: #8a6f5a;
    --taupe: #b8a79a;
    --purple-accent: #6e5a78;
    --purple-deep: #4a3b52;
    --border-light: #d8ccc2;
    --max-width: 1240px;
    --radius: 18px;
    --transition: 0.25s ease;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
  }

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

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

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

  .container {
    width: min(100% - 40px, var(--max-width));
    margin-inline: auto;
  }

  .section {
    padding: 84px 0;
  }

  .section--alt {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

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

  .section__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
    font-weight: 400;
  }

  .section__intro {
    max-width: 460px;
    color: var(--text-soft);
    font-family: Arial, Helvetica, sans-serif;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 238, 232, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
  }

  .topbar__inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
  }

  .brand span {
    color: var(--purple-accent);
  }

  .nav {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    color: var(--text-soft);
  }

  .nav a {
    transition: color var(--transition);
  }

  .nav a:hover {
    color: var(--purple-deep);
  }

  .footer {
    padding: 28px 0 40px;
  }

  .footer__inner {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
  }

  @media (max-width: 1024px) {

    .section__header,
    .footer__inner {
      display: grid;
      gap: 18px;
    }
  }

  @media (max-width: 720px) {
    .nav {
      gap: 14px;
      font-size: 0.85rem;
    }

    .container {
      width: min(100% - 28px, var(--max-width));
    }

    .section {
      padding: 64px 0;
    }
  }


  /*================================================ 
                    Header
  ================================================ */


  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(243, 238, 232, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 204, 194, 0.75);
  }

  .header__container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 28px;
  }

  .header__container--name {
    font-weight: bold;
  }

  .header__brand {
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 600, bord;
    letter-spacing: -0.02em;
    color: #4a3b52;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .header__brand:hover {
    opacity: 0.8;
  }

  .nav {
    justify-self: center;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav__item {
    margin: 0;
    padding: 0;
  }

  .nav__link {
    position: relative;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    color: #5e5652;
    transition: color 0.2s ease, opacity 0.2s ease;
  }

  .nav__link:hover {
    color: #1e1a1a;
  }

  .nav__link--active {
    color: #1e1a1a;
  }

  .nav__link--active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #6e5a78;
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid #d8ccc2;
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    color: #1e1a1a;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }

  .header__cta:hover {
    transform: translateY(-1px);
    border-color: #6e5a78;
    color: #6e5a78;
    background: #fcfaf8;
  }

  .nav__toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: #1e1a1a;
    cursor: pointer;
  }

  /* Responsive */

  @media (max-width: 920px) {
    .header__container {
      grid-template-columns: auto 1fr auto;
    }

    .nav {
      display: none;
    }

    .header__cta {
      display: none;
    }

    .nav__toggle {
      display: inline-flex;
      justify-self: end;
    }
  }

  @media (max-width: 520px) {
    .header {
      padding: 14px 0;
    }

    .header__container {
      width: min(100% - 24px, 980px);
      gap: 16px;
    }

    .header__brand {
      font-size: 0.92rem;
    }
  }


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


  .site-footer {
    margin-top: 80px;
    padding: 56px 0 24px;
    background: #f3eee8;
    border-top: 1px solid #d8ccc2;
  }

  .site-footer .container {
    width: min(100% - 40px, 980px);
    margin: 0 auto;
  }

  /* GRID */

  .site-footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 32px;
  }

  /* BRAND */

  .site-footer__name {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #4a3b52;
  }

  .site-footer__tagline {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #5e5652;
  }

  /* NAV */

  .site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__nav::before {
    content: "Navigation";
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a6f5a;
    margin-bottom: 6px;
    position: relative;
  }

  .site-footer__nav::after {
    content: "";
    width: 22px;
    height: 1px;
    background: #6e5a78;
    margin-bottom: 10px;
  }

  .site-footer__nav-link {
    text-decoration: none;
    font-size: 0.82rem;
    color: #1e1a1a;
    transition: all 0.2s ease;
  }

  .site-footer__nav-link:hover {
    color: #6e5a78;
    transform: translateX(2px);
  }

  /* CONTACT */

  .site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer__contact::before {
    content: "Contact";
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a6f5a;
  }

  .site-footer__contact::after {
    content: "";
    width: 22px;
    height: 1px;
    background: #6e5a78;
  }

  /* EMAIL */

  .site-footer__email {
    font-size: 0.82rem;
    text-decoration: none;
    color: #1e1a1a;
    transition: color 0.2s ease;
  }

  .site-footer__email:hover {
    color: #6e5a78;
  }

  /* SOCIALS */

  .site-footer__socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer__social-link {
    font-size: 0.78rem;
    text-decoration: none;
    color: #5e5652;
    transition: all 0.2s ease;
  }

  .site-footer__social-link:hover {
    color: #6e5a78;
    transform: translateX(2px);
  }

  /* BOTTOM */

  .site-footer__bottom {
    padding-top: 18px;
    border-top: 1px solid #d8ccc2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .site-footer__copyright {
    margin: 0;
    font-size: 0.7rem;
    color: #5e5652;
  }

  .site-footer__legal {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .site-footer__legal-link {
    font-size: 0.7rem;
    text-decoration: none;
    color: #5e5652;
    transition: color 0.2s ease;
  }

  .site-footer__legal-link:hover {
    color: #6e5a78;
  }

  /* RESPONSIVE */

  @media (max-width: 820px) {
    .site-footer__inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .site-footer__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }

  @media (max-width: 520px) {
    .site-footer .container {
      width: min(100% - 24px, 980px);
    }

    .site-footer__name {
      font-size: 0.95rem;
    }
  }