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

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

:root {
    --ivory: #f7f0e2;
    --paper: #fbf6ec;
    --paper2: #efe4cf;

    --forest: #213c2a;
    --forest2: #152b1e;

    --brown: #5b391f;

    --gold: #b89048;
    --gold2: #d2b36a;

    --ink: #2a241c;
    --muted: #6d6254;

    --line: rgba(91, 57, 31, 0.20);

    --shadow: 0 14px 40px rgba(36, 28, 19, 0.10);

    --radius: 18px;
    --max: 1240px;
}


/* =========================================================
   GLOBAL STYLES
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, system-ui, sans-serif;
    line-height: 1.7;
}

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

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

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


/* =========================================================
   LAYOUT / UTILITIES
========================================================= */

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

.serif {
    font-family: 'Cormorant Garamond', serif;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.05;
    margin: 0 0 18px;
}

h1 {
    font-size: clamp(44px, 6vw, 82px);
}

h2 {
    font-size: clamp(38px, 4vw, 58px);
}

h3 {
    font-size: clamp(27px, 3vw, 38px);
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

.lead {
    font-size: 18px;
    max-width: 760px;
}

.section {
    padding: 92px 0;
}

.section-sm {
    padding: 60px 0;
}

.center {
    text-align: center;
}

.gold-line {
    width: 68px;
    height: 1px;
    background: var(--gold);
    margin: 18px 0 24px;
}

.center .gold-line {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 13px 20px;

    background: var(--brown);
    color: #fff;

    border: 1px solid var(--brown);
    border-radius: 3px;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 700;

    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
    background: #452a17;
}

.btn-outline {
    background: transparent;
    color: var(--brown);
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #21180f;
}


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

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    color: #fff;
}

.header.light {
    position: sticky;

    background: rgba(247, 240, 226, 0.96);
    color: var(--ink);

    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);
}

.nav {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;

    gap: 12px;
    min-width: 185px;
}

.brand-mark {
    width: 34px;
    height: 34px;

    border: 1px solid currentColor;
    border-radius: 50%;

    display: grid;
    place-items: center;

    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 0.95;
    letter-spacing: 0.06em;
}

.brand-sub {
    display: block;

    font: 600 8px Manrope, sans-serif;
    letter-spacing: 0.16em;

    margin-top: 4px;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 20px;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.nav-links a {
    position: relative;
}

.nav-links a:hover {
    color: var(--gold2);
}

.nav-cta {
    white-space: nowrap;
}

.menu-toggle {
    display: none;

    background: none;
    border: 0;

    color: inherit;
    font-size: 28px;
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown {
    position: relative;
}

.dropdown > a:after {
    content: '⌄';
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: -14px;

    width: 260px;

    padding: 10px;

    background: var(--paper);
    color: var(--ink);

    border: 1px solid var(--line);

    box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;

    padding: 9px 12px;

    font-size: 11px;

    border-bottom: 1px solid rgba(91, 57, 31, 0.08);
}

.dropdown-menu a:last-child {
    border: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 780px;

    position: relative;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            180deg,
            rgba(9, 24, 15, 0.38),
            rgba(9, 24, 15, 0.56)
        ),
        url('./assets/hero.jpeg');

    background-size: cover;
    background-position: center;
}

.hero:after {
    content: '';

    position: absolute;

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

    height: 110px;

    background: linear-gradient(
        transparent,
        var(--forest)
    );
}

.hero-content {
    position: relative;
    z-index: 1;

    text-align: center;
    color: #fff;

    padding: 130px 0 170px;

    max-width: 850px;
    margin: auto;
}

.hero .eyebrow {
    color: #e5c77f;
}

.hero p {
    color: rgba(255, 255, 255, 0.88);

    max-width: 650px;

    margin: 0 auto 24px;
}

.hero-actions {
    display: flex;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}

.scroll-cue {
    margin: 48px auto 0;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    display: grid;
    place-items: center;
}


/* =========================================================
   PATTERN / DARK SECTIONS
========================================================= */

.pattern {
    background-color: var(--paper);

    background-image:
        linear-gradient(
            135deg,
            rgba(184, 144, 72, 0.06) 25%,
            transparent 25%,
            transparent 50%,
            rgba(184, 144, 72, 0.04) 50%,
            rgba(184, 144, 72, 0.04) 75%,
            transparent 75%
        );

    background-size: 64px 64px;
}

.dark {
    background: var(--forest);
    color: #fff;
}

.dark p {
    color: rgba(255, 255, 255, 0.72);
}

.dark .eyebrow {
    color: #e1c27b;
}


/* =========================================================
   ESSENCE SECTION
========================================================= */

.essence {
    margin-top: -2px;

    padding: 24px 0 38px;

    background: var(--forest);
    color: #fff;

    position: relative;
    z-index: 2;
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 12px;
}

.essence-item {
    text-align: center;
    padding: 12px 5px;
}

.essence-icon {
    font-size: 25px;
    color: var(--gold2);

    margin-bottom: 6px;
}

.essence-item span {
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================================================
   CARDS
========================================================= */
/* =========================================
   SACRED SPACES SECTION STARTS
   ========================================= */

.sacred-spaces {
  --paper: #f5efe3;
  --paper-light: #faf6ed;
  --ink: #2f281f;
  --muted: #665c50;
  --gold: #b49a68;
  --gold-light: rgba(180, 154, 104, 0.48);
  --gold-soft: rgba(180, 154, 104, 0.22);

  width: 100%;
  padding: 18px 18px 20px;
  background: var(--paper);
  box-sizing: border-box;
}

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

.sacred-spaces__inner {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;

  padding: 32px 28px 35px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.45),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(195, 165, 112, 0.08),
      transparent 30%
    ),
    var(--paper-light);

  border: 1px solid var(--gold-light);
  overflow: hidden;
}

/* subtle inner border */

.sacred-spaces__inner::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(180, 154, 104, 0.2);
  pointer-events: none;
}

/* =========================================
   DECORATIVE CORNERS
   ========================================= */

.corner {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  border-color: var(--gold-light);
}

/* top-left */

.corner--tl {
  top: 9px;
  left: 9px;
}

.corner--tl::before {
  width: 28px;
  height: 28px;
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
  border-radius: 14px 0 0 0;
}

.corner--tl::after {
  width: 15px;
  height: 15px;
  top: 8px;
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(-12deg);
}

/* top-right */

.corner--tr {
  top: 9px;
  right: 9px;
}

.corner--tr::before {
  width: 28px;
  height: 28px;
  top: 0;
  right: 0;
  border-top: 1px solid;
  border-right: 1px solid;
  border-radius: 0 14px 0 0;
}

.corner--tr::after {
  width: 15px;
  height: 15px;
  top: 8px;
  right: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(12deg);
}

/* bottom-left */

.corner--bl {
  bottom: 9px;
  left: 9px;
}

.corner--bl::before {
  width: 28px;
  height: 28px;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-radius: 0 0 0 14px;
}

.corner--bl::after {
  width: 15px;
  height: 15px;
  bottom: 8px;
  left: 8px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: rotate(12deg);
}

/* bottom-right */

.corner--br {
  bottom: 9px;
  right: 9px;
}

.corner--br::before {
  width: 28px;
  height: 28px;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-radius: 0 0 14px 0;
}

.corner--br::after {
  width: 15px;
  height: 15px;
  bottom: 8px;
  right: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(-12deg);
}

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

.sacred-spaces__header {
  position: relative;
  z-index: 3;

  text-align: center;

  margin-bottom: 25px;
}

.sacred-spaces__eyebrow {
  display: block;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(16px, 1.5vw, 25px);
  font-weight: 600;

  letter-spacing: 0.035em;
  line-height: 1.15;

  text-transform: uppercase;
}

.sacred-spaces__title {
  margin: 5px 0 0;

  color: var(--muted);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(10px, 0.85vw, 15px);

  font-weight: 400;
  line-height: 1.3;

  letter-spacing: 0.025em;
}

/* =========================================
   CARD GRID
   ========================================= */

.sacred-spaces__grid {
  position: relative;
  z-index: 3;

  display: grid;

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

  gap: clamp(16px, 2.6vw, 38px);

  max-width: 1300px;

  margin: 0 auto;
}

/* =========================================
   CARD
   ========================================= */

.sacred-card {
  position: relative;

  min-width: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(225, 214, 193, 0.12)
    );

  border: 1px solid rgba(180, 154, 104, 0.5);

  padding: 6px 6px 0;

  overflow: hidden;

  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 0 0 1px rgba(180, 154, 104, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sacred-card:hover {
  transform: translateY(-5px);

  border-color: rgba(180, 154, 104, 0.82);

  box-shadow:
    0 12px 25px rgba(66, 52, 32, 0.1),
    0 0 0 1px rgba(180, 154, 104, 0.1);
}

/* =========================================
   ARCH IMAGE
   ========================================= */

.sacred-card__image-wrap {
  position: relative;

  width: 100%;

  /*
    This gives the tall portrait proportion
    from the reference.
  */
  aspect-ratio: 0.78 / 1;

  overflow: hidden;

  background: #cbbda5;

  /*
    Creates the large arched top.
  */
  border-radius:
    48%
    48%
    0
    0 / 30% 30% 0 0;

  border: 1px solid rgba(180, 154, 104, 0.35);

  padding: 3px 3px 0;
}

.sacred-card__image-wrap::after {
  content: "";

  position: absolute;

  inset: 4px 4px 0;

  border:
    1px solid rgba(255, 249, 235, 0.58);

  border-bottom: 0;

  border-radius:
    48%
    48%
    0
    0 / 30% 30% 0 0;

  pointer-events: none;
}

.sacred-card__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius:
    46%
    46%
    0
    0 / 28% 28% 0 0;

  filter:
    saturate(0.88)
    contrast(0.95)
    brightness(0.96);

  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.sacred-card:hover .sacred-card__image {
  transform: scale(1.035);

  filter:
    saturate(0.96)
    contrast(0.98)
    brightness(1);
}

/* =========================================
   CARD CONTENT
   ========================================= */

.sacred-card__content {
  min-height: 116px;

  display: flex;
  flex-direction: column;

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

  text-align: center;

  padding:
    11px
    7px
    15px;
}

.sacred-card__content h3 {
  margin: 0;

  color: var(--ink);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(10px, 1vw, 16px);

  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 0.015em;

  text-transform: uppercase;
}

.sacred-card__content p {
  margin:
    13px
    0
    0;

  color: var(--muted);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(9px, 0.82vw, 13px);

  font-weight: 400;

  line-height: 1.75;

  letter-spacing: 0.005em;
}

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

@media (max-width: 900px) {

  .sacred-spaces {
    padding: 12px;
  }

  .sacred-spaces__inner {
    padding:
      30px
      20px
      30px;
  }

  .sacred-spaces__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
    max-width: 680px;
  }

  .sacred-card__image-wrap {
    aspect-ratio: 0.82 / 1;
  }

  .sacred-card__content {
    min-height: 110px;
  }
}

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

@media (max-width: 600px) {

  .sacred-spaces {
    padding: 8px;
  }

  .sacred-spaces__inner {
    padding:
      27px
      13px
      27px;
  }

  .sacred-spaces__inner::before {
    inset: 5px;
  }

  .sacred-spaces__header {
    margin-bottom: 21px;
  }

  .sacred-spaces__grid {
    grid-template-columns: 1fr;

    max-width: 310px;

    gap: 18px;
  }

  .sacred-card {
    padding: 6px 6px 0;
  }

  .sacred-card__image-wrap {
    aspect-ratio: 0.85 / 1;

    border-radius:
      49%
      49%
      0
      0 / 25% 25% 0 0;
  }

  .sacred-card__image {
    border-radius:
      47%
      47%
      0
      0 / 23% 23% 0 0;
  }

  .sacred-card__content {
    min-height: 105px;

    padding:
      12px
      8px
      15px;
  }

  .sacred-card__content h3 {
    font-size: 13px;
  }

  .sacred-card__content p {
    font-size: 11px;

    line-height: 1.65;
  }

  .corner {
    width: 38px;
    height: 38px;
  }
}

/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

  .sacred-spaces__grid {
    max-width: 280px;
  }

  .sacred-spaces__eyebrow {
    font-size: 14px;
  }

  .sacred-spaces__title {
    font-size: 9px;
  }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .sacred-card,
  .sacred-card__image {
    transition: none;
  }
}
/* =========================================
   SACRED SPACES SECTION ENDS
   ========================================= */
/* =========================================================
   ARCH CARDS
========================================================= */

.arch-card {
    overflow: hidden;

    border: 1px solid rgba(91, 57, 31, 0.18);

    background: var(--paper);

    border-radius: 120px 120px 4px 4px;
}

.arch-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.arch-card .body {
    text-align: center;
    padding: 18px 14px 22px;
}

.arch-card h4 {
    font-size: 23px;
}

.small {
    font-size: 12px;
}


/* =========================================================
   ICONS / NUMBERS / DIVIDERS
========================================================= */

.icon-circle {
    width: 54px;
    height: 54px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--gold);

    font-size: 22px;

    margin-bottom: 16px;
}

.number {
    font-size: 13px;

    color: var(--gold);

    letter-spacing: 0.14em;
}

.divider {
    height: 1px;

    background: var(--line);

    margin: 24px 0;
}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.split {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 56px;

    align-items: center;
}

.split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.split-img {
    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;
}

.split-copy {
    padding: 12px 0;
}

.quote {
    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;

    line-height: 1.15;

    color: var(--brown);
}


/* =========================================================
   COURTYARD / JOURNEY
========================================================= */

.courtyard {
    padding: 92px 0;

    background: var(--paper);
}

.journey {
    display: grid;

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

    border: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.45);

    margin-top: 34px;
}

.journey-step {
    padding: 28px 16px;

    text-align: center;

    position: relative;
}

.journey-step:not(:last-child):after {
    content: '→';

    position: absolute;

    right: -10px;
    top: 45px;

    color: var(--gold);

    font-size: 26px;
}

.journey-icon {
    width: 52px;
    height: 52px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    display: grid;
    place-items: center;

    margin: 0 auto 14px;

    color: var(--gold);
}


/* =========================================================
   HERITAGE BAND
========================================================= */

.heritage-band {
    background: #5b3a20;
    color: #fff;

    padding: 0;
}

.heritage-band .split {
    min-height: 340px;
}

.heritage-band img {
    height: 100%;

    min-height: 340px;

    object-fit: cover;
}

.heritage-band p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {
    display: grid;

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

    gap: 18px;
}

.service {
    padding: 24px 22px;

    border-bottom: 1px solid var(--line);
}

.service h4 {
    font-size: 24px;
    margin-bottom: 8px;
}


/* =========================================================
   RETREATS
========================================================= */

.retreat-grid {
    display: grid;

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

    gap: 18px;
}

.retreat img {
    width: 100%;

    aspect-ratio: 1.35;

    object-fit: cover;
}

.retreat .body {
    padding: 16px;

    border: 1px solid var(--line);

    border-top: 0;
}


/* =========================================================
   FEATURE STRIP
========================================================= */

.feature-strip {
    display: grid;

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

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-strip .f {
    padding: 22px 14px;

    text-align: center;

    border-right: 1px solid var(--line);
}

.feature-strip .f:last-child {
    border: 0;
}

.f strong {
    display: block;

    font-family: 'Cormorant Garamond', serif;

    font-size: 20px;

    margin-bottom: 3px;
}


/* =========================================================
   INNER PAGES
========================================================= */

.page-hero {
    min-height: 420px;

    display: flex;
    align-items: flex-end;

    padding: 0 0 48px;

    color: #fff;

    background-size: cover;
    background-position: center;

    position: relative;
}

.page-hero:before {
    content: '';

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(12, 26, 17, 0.15),
        rgba(12, 26, 17, 0.68)
    );
}

.page-hero .container {
    position: relative;
}

.breadcrumbs {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    opacity: 0.78;
}

.page-hero h1 {
    margin-top: 10px;
}


/* =========================================================
   LISTS / CONTENT
========================================================= */

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    display: flex;

    gap: 12px;

    align-items: flex-start;
}

.bullet {
    color: var(--gold);

    font-size: 20px;

    line-height: 1;
}

.content-narrow {
    max-width: 920px;

    margin: auto;
}


/* =========================================================
   FORMS
========================================================= */

.form-grid {
    display: grid;

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

    gap: 16px;
}

.field {
    display: grid;

    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.11em;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--line);

    background: #fffdf8;

    outline: none;
}

.field textarea {
    min-height: 140px;

    resize: vertical;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery {
    display: grid;

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

    gap: 14px;
}

.gallery img {
    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;
}

.gallery .wide {
    grid-column: span 2;
}


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

.footer {
    background: var(--forest2);

    color: #fff;

    padding: 68px 0 18px;
}

.footer p {
    color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr 1fr;

    gap: 36px;
}

.footer h4 {
    color: #fff;

    font-size: 24px;
}

.footer-links {
    display: grid;

    gap: 7px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);

    margin-top: 48px;

    padding-top: 16px;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.48);

    display: flex;

    justify-content: space-between;

    gap: 15px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1024px) {

    .nav-links {
        gap: 13px;
    }

    .nav-links a {
        font-size: 9px;
    }

    .essence-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-step:not(:last-child):after {
        display: none;
    }

    .service-grid,
    .retreat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 780px) {

    .section {
        padding: 68px 0;
    }

    .nav {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        position: absolute;

        left: 16px;
        right: 16px;
        top: 70px;

        background: var(--paper);
        color: var(--ink);

        padding: 14px;

        box-shadow: var(--shadow);

        border: 1px solid var(--line);

        flex-direction: column;

        align-items: stretch;
    }

    .nav-links.open {
        display: flex;
    }

    .dropdown-menu {
        position: static;

        display: block;

        width: auto;

        border: 0;

        box-shadow: none;

        background: transparent;

        padding: 0 0 0 12px;
    }

    .dropdown > a:after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 720px;

        background-position: 58% center;
    }

    .hero-content {
        padding: 110px 0 160px;
    }

    .split,
    .split.reverse {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .cards-4,
    .cards-3,
    .cards-2,
    .service-grid,
    .retreat-grid {
        grid-template-columns: 1fr;
    }

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

    .journey-step {
        padding: 22px;
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr;
    }

    .feature-strip .f:nth-child(2n) {
        border-right: 0;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery .wide {
        grid-column: span 2;
    }

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

    .field.full {
        grid-column: auto;
    }

    .page-hero {
        min-height: 340px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .essence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

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

    h1 {
        font-size: 46px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: center;
    }

    .btn {
        width: 100%;

        max-width: 280px;
    }

    .brand-title {
        font-size: 17px;
    }

    .brand {
        min-width: auto;
    }

    .gallery {
        gap: 8px;
    }

    .quote {
        font-size: 30px;
    }
}