/* Forevent Premium — intentionally scoped to the plugin homepage. */
body.forevent-premium-front {
  margin: 0;
  background: #f7f1e7;
  color: #283229;
  overflow-x: hidden;
}

body.forevent-premium-inner {
  margin: 0;
  background: #f7f1e7;
  color: #283229;
  overflow-x: hidden;
}

body.fe-menu-open {
  overflow: hidden;
}

.fe-premium,
.fe-premium * {
  box-sizing: border-box;
}

.fe-premium {
  --fe-ink: #263128;
  --fe-forest: #202a23;
  --fe-ivory: #f7f1e7;
  --fe-champagne: #d8c8a9;
  --fe-line: #d3ccbd;
  width: 100%;
  min-height: 100vh;
  background: var(--fe-ivory);
  color: var(--fe-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.fe-premium h1,
.fe-premium h2,
.fe-premium h3,
.fe-premium p,
.fe-premium blockquote {
  margin: 0;
  padding: 0;
}

.fe-premium h1,
.fe-premium h2,
.fe-premium h3,
.fe-premium blockquote {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  font-weight: 400;
}

.fe-premium a {
  color: inherit;
  text-decoration: none;
}

.fe-premium button,
.fe-premium input,
.fe-premium select {
  font: inherit;
}

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

.fe-section {
  padding: 128px 0;
}

.fe-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f6b62;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fe-kicker::before {
  display: block;
  width: 32px;
  height: 1px;
  background: #948b7a;
  content: "";
}

.fe-kicker--light,
.fe-kicker--gold {
  color: #e9dcc3;
}

.fe-kicker--light::before,
.fe-kicker--gold::before {
  background: var(--fe-champagne);
}

.fe-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--fe-ink);
  color: #fffaf0 !important;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 25px;
  transition: background 180ms ease, transform 180ms ease;
}

.fe-button:hover,
.fe-button:focus-visible {
  background: #3b483e;
  transform: translateY(-1px);
}

/* Hero */
.fe-hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background-color: #1a231c;
  background-image: var(--fe-hero);
  background-position: 68% center;
  background-size: cover;
  color: white;
}

.fe-hero__overlay {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 26, 20, 0.95) 0%, rgba(18, 26, 20, 0.83) 35%, rgba(18, 26, 20, 0.4) 68%, rgba(18, 26, 20, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 16, 12, 0.5) 0%, transparent 38%, rgba(11, 16, 12, 0.34) 100%);
}

.fe-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.fe-header {
  position: relative;
  z-index: 20;
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: space-between;
}

.fe-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white !important;
}

.fe-brand__mark {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.fe-brand__name,
.fe-footer__brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.fe-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.fe-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease;
}

.fe-nav a:hover,
.fe-nav a:focus-visible {
  color: white;
}

.fe-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fe-pro-link {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease;
}

.fe-pro-link:hover {
  background: white;
  color: var(--fe-ink) !important;
}

.fe-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.fe-menu-button span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.fe-menu-button span:first-child { transform: translateY(-3px); }
.fe-menu-button span:last-child { transform: translateY(3px); }
.fe-menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.fe-menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.fe-mobile-menu {
  position: fixed;
  z-index: 18;
  inset: 0;
  display: none;
  background: #202a23;
  opacity: 0;
  padding: 120px 24px 40px;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.fe-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fe-mobile-menu__inner > p {
  margin-bottom: 22px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .2em;
}

.fe-mobile-menu__inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: white;
  font-family: Georgia, serif;
  font-size: 27px;
  padding: 18px 0;
}

.fe-mobile-menu__inner small {
  color: var(--fe-champagne);
  font-family: Inter, sans-serif;
  font-size: 10px;
}

.fe-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 650px;
  align-items: center;
  padding: 36px 0 76px;
}

.fe-hero__copy {
  width: min(100%, 930px);
}

.fe-hero h1 {
  max-width: 730px;
  margin-top: 25px;
  color: white;
  font-size: clamp(58px, 7vw, 110px);
  letter-spacing: -0.052em;
  line-height: 0.87;
}

.fe-hero h1 em,
.fe-section-heading h2 em,
.fe-manifesto h2 em,
.fe-process h2 em,
.fe-professionals h2 em,
.fe-footer h2 em {
  display: block;
  color: #eadfc9;
  font-weight: 400;
}

.fe-hero__intro {
  max-width: 560px;
  margin-top: 29px !important;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.7;
}

.fe-search {
  display: grid;
  width: min(100%, 900px);
  margin-top: 38px;
  grid-template-columns: 1.18fr 1fr auto;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(247,242,232,.97);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
  color: #1d231f;
  padding: 10px;
  backdrop-filter: blur(18px);
}

.fe-search__field {
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  gap: 14px;
  border-radius: 15px;
  padding: 0 17px;
  transition: background 180ms ease;
}

.fe-search__field:hover {
  background: rgba(255,255,255,.7);
}

.fe-search__field--location {
  border-left: 1px solid #d9d2c5;
  border-radius: 0 15px 15px 0;
}

.fe-search__icon {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8dfd0;
  color: #536052;
}

.fe-search__control {
  display: block;
  min-width: 0;
  flex: 1;
}

.fe-search__control small {
  display: block;
  margin-bottom: 4px;
  color: #8b8a80;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fe-search__control select {
  width: 100%;
  height: auto;
  border: 0;
  background: transparent;
  color: #1d231f;
  font-size: 14px;
  font-weight: 500;
  outline: 0;
  padding: 0;
}

.fe-search__submit {
  min-height: 70px;
  border-radius: 15px;
  padding-inline: 29px;
}

.fe-search__submit span {
  font-size: 21px;
  font-weight: 400;
}

.fe-popular {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 22px;
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

.fe-popular > span {
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.fe-popular a { color: rgba(255,255,255,.6); }
.fe-popular a:hover { color: white; }
.fe-popular b { margin-left: 4px; font-weight: 400; }

.fe-hero__note {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border: solid rgba(255,255,255,.15);
  border-width: 1px 0 0 1px;
  background: rgba(23,32,25,.72);
  padding: 19px 28px;
  backdrop-filter: blur(15px);
}

.fe-hero__note em { color: var(--fe-champagne); font-family: Georgia, serif; font-size: 25px; }
.fe-hero__note i { width: 1px; height: 36px; background: rgba(255,255,255,.16); }
.fe-hero__note span { max-width: 235px; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .13em; line-height: 1.7; text-transform: uppercase; }

/* Collections */
.fe-section-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 60px;
}

.fe-section-heading h2,
.fe-manifesto h2,
.fe-process h2,
.fe-professionals h2,
.fe-journal h2,
.fe-footer h2 {
  margin-top: 20px;
  font-size: clamp(47px, 5.5vw, 84px);
  letter-spacing: -.045em;
  line-height: .96;
}

.fe-section-heading h2 em,
.fe-process h2 em,
.fe-professionals h2 em {
  color: #687163;
}

.fe-section-heading > p {
  color: #6c6e65;
  font-size: 14px;
  line-height: 1.85;
}

.fe-collection-grid {
  display: grid;
  margin-top: 55px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #bdb9aa;
  border-radius: 26px;
  background: #bdb9aa;
}

.fe-collection {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 32px;
  transition: filter 300ms ease, transform 300ms ease;
}

.fe-collection:hover { filter: brightness(1.04); transform: translateY(-2px); }
.fe-collection--sand { background: #d9d0bd; }
.fe-collection--sage { background: #bfc4b7; }
.fe-collection--rose { background: #d8c5b8; }
.fe-collection--gold { background: #c9c1a6; }

.fe-collection__top { display: flex; align-items: flex-start; justify-content: space-between; }
.fe-collection__top small { color: rgba(74,80,73,.55); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.fe-collection__top span { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid rgba(40,51,43,.18); border-radius: 50%; color: #354037; font-size: 19px; transition: background 200ms ease, color 200ms ease, transform 200ms ease; }
.fe-collection:hover .fe-collection__top span { background: var(--fe-ink); color: white; transform: rotate(7deg); }
.fe-collection__bottom { margin-top: auto; }
.fe-collection__bottom h3 { color: #253028; font-size: 34px; letter-spacing: -.03em; line-height: 1; }
.fe-collection__bottom p { max-width: 250px; margin-top: 15px !important; color: rgba(72,80,71,.78); font-size: 13px; line-height: 1.75; }
.fe-collection__bottom b { display: flex; margin-top: 25px; align-items: center; gap: 8px; color: #28332b; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.fe-collection__bottom i { font-size: 15px; transition: transform 180ms ease; }
.fe-collection:hover .fe-collection__bottom i { transform: translateX(4px); }

/* Manifesto */
.fe-manifesto {
  background: var(--fe-forest);
  color: #f7f1e5;
  padding: 136px 0;
}

.fe-manifesto__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 90px;
}

.fe-manifesto__image {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 240px 240px 0 0;
  background-image: linear-gradient(to top, rgba(17,24,18,.85), transparent 55%), var(--fe-hero);
  background-position: 78% center;
  background-size: auto, cover;
}

.fe-manifesto__image blockquote {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  max-width: 300px;
  color: white;
  font-size: 25px;
  font-style: italic;
  line-height: 1.15;
}

.fe-manifesto__image > small {
  position: absolute;
  right: 38px;
  bottom: 40px;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.fe-manifesto__copy h2 em { color: var(--fe-champagne); }
.fe-manifesto__copy > p:not(.fe-kicker) { max-width: 570px; margin-top: 30px !important; color: rgba(255,255,255,.57); font-size: 15px; line-height: 2; }

.fe-values {
  display: grid;
  margin-top: 43px;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 30px;
}

.fe-values small { color: var(--fe-champagne); font-size: 9px; letter-spacing: .18em; }
.fe-values h3 { margin-top: 12px; color: white; font-family: inherit; font-size: 13px; font-weight: 700; }
.fe-values p { margin-top: 7px !important; color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.6; }

/* Process */
.fe-process__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.fe-process h2 { font-size: clamp(46px, 5vw, 76px); }
.fe-process__steps { border-top: 1px solid var(--fe-line); }
.fe-step {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--fe-line);
  padding: 34px 0;
}

.fe-step > em { color: #9b8e77; font-family: Georgia, serif; font-size: 20px; }
.fe-step h3 { font-size: 28px; letter-spacing: -.02em; }
.fe-step p { margin-top: 5px !important; color: #73746d; font-size: 13px; line-height: 1.8; }
.fe-step > span { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid #bdb6a8; border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.fe-step:hover > span { background: var(--fe-ink); color: white; }

/* Professionals */
.fe-professionals { padding: 0 0 128px; }
.fe-professionals__panel {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  border-radius: 30px;
  background: #cbbda4;
  padding: 62px 80px;
}

.fe-professionals__panel::before,
.fe-professionals__panel::after { position: absolute; border: 1px solid rgba(63,74,65,.15); border-radius: 50%; content: ""; }
.fe-professionals__panel::before { right: -70px; bottom: -150px; width: 380px; height: 380px; }
.fe-professionals__panel::after { right: 230px; bottom: -40px; width: 180px; height: 180px; }
.fe-professionals__panel > div { position: relative; z-index: 1; }
.fe-professionals h2 { font-size: clamp(52px, 5.8vw, 92px); }
.fe-professionals__panel > div:last-child > p { max-width: 440px; color: rgba(64,73,63,.82); font-size: 14px; line-height: 1.9; }
.fe-professionals .fe-button { margin-top: 28px; }

/* Journal */
.fe-journal { border-top: 1px solid #d7d0c3; }
.fe-journal__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.fe-journal h2 { margin-top: 18px; }
.fe-journal__heading > a { display: flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.fe-journal__grid { display: grid; margin-top: 52px; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid #d1cabd; border-radius: 24px; background: #d1cabd; }
.fe-article { display: flex; min-height: 360px; flex-direction: column; background: #f8f3e9; padding: 36px; }
.fe-article__top { display: flex; justify-content: space-between; color: #8a8174; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.fe-article h3 { margin-top: auto; font-size: 30px; letter-spacing: -.025em; line-height: 1.08; }
.fe-article h3 a:hover { color: #63705f; }
.fe-article__meta { display: flex; margin-top: 25px; align-items: center; justify-content: space-between; border-top: 1px solid #d6cfc1; color: #8a8174; font-size: 10px; padding-top: 17px; }
.fe-article__meta a { color: #344137; font-size: 16px; }

/* Footer */
.fe-footer { background: #151d18; color: white; padding: 108px 0 25px; }
.fe-footer__main { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 75px; }
.fe-footer h2 { max-width: 650px; }
.fe-footer h2 em { color: #d7c6a6; }
.fe-footer__contact { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; }
.fe-footer__contact > a { display: flex; align-items: center; gap: 50px; border-bottom: 1px solid rgba(255,255,255,.25); font-size: 14px; padding-bottom: 12px; }
.fe-footer__contact p { max-width: 340px; margin-top: 18px !important; color: rgba(255,255,255,.38); font-size: 11px; line-height: 1.8; text-align: right; }
.fe-footer__bottom { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .13em; padding-top: 25px; text-transform: uppercase; }
.fe-footer__bottom nav { display: flex; gap: 24px; }
.fe-footer__bottom a:hover { color: white; }

/* Inner pages */
.fe-inner-site {
  background: var(--fe-ivory);
}

.fe-site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #151d18;
  color: white;
}

.fe-site-header__inner {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: space-between;
}

.fe-inner-main {
  min-height: 60vh;
}

.fe-page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19,27,21,.97) 0%, rgba(19,27,21,.88) 46%, rgba(19,27,21,.53) 100%),
    url("../images/hero-forevent.png") 72% 47% / cover;
  color: white;
}

.fe-page-hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.fe-page-hero__texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,16,12,.3));
  pointer-events: none;
}

.fe-page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding-block: 86px;
}

.fe-page-hero__trail {
  position: absolute;
  top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.43);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fe-page-hero__trail a:hover { color: white; }
.fe-page-hero__trail em { color: #d9caaa; font-style: normal; }

.fe-page-hero h1 {
  max-width: 1050px;
  margin-top: 24px;
  color: white;
  font-size: clamp(58px, 7.2vw, 108px);
  letter-spacing: -.05em;
  line-height: .92;
}

.fe-page-hero__intro {
  max-width: 680px;
  margin-top: 26px !important;
  color: rgba(255,255,255,.64);
  font-size: 15px;
  line-height: 1.8;
}

.fe-inner-content {
  padding: 104px 0 128px;
}

.fe-inner-content > .fe-container {
  width: min(100% - 40px, 1160px);
}

.fe-inner-content--wide > .fe-container {
  width: min(100% - 40px, 1368px);
}

.fe-surface {
  border: 1px solid #d9d1c2;
  border-radius: 28px;
  background: #fffaf1;
  box-shadow: 0 24px 80px rgba(45,51,43,.06);
}

/* Editorial archives and search */
.fe-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fe-listing-card {
  overflow: hidden;
  border: 1px solid #d8d0c1;
  border-radius: 25px;
  background: #fffaf1;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.fe-listing-card:hover {
  box-shadow: 0 26px 65px rgba(40,49,41,.1);
  transform: translateY(-4px);
}

.fe-listing-card__media {
  display: flex;
  height: 310px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(220,204,174,.75), transparent 33%),
    linear-gradient(135deg, #38443a, #172019);
  color: rgba(255,255,255,.58) !important;
  font-family: Georgia, serif;
  font-size: 74px;
  font-style: italic;
}

.fe-listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.fe-listing-card:hover .fe-listing-card__media img { transform: scale(1.035); }

.fe-listing-card__body {
  padding: 34px 36px 38px;
}

.fe-listing-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c8477;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fe-listing-card__meta em {
  font-style: normal;
}

.fe-listing-card h2 {
  margin-top: 22px;
  color: #273229;
  font-size: 36px;
  letter-spacing: -.032em;
  line-height: 1.05;
}

.fe-listing-card h2 a:hover { color: #637060; }

.fe-listing-card__body > p {
  margin-top: 17px !important;
  color: #707269;
  font-size: 13px;
  line-height: 1.8;
}

.fe-listing-card__link {
  display: flex;
  margin-top: 25px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd5c7;
  color: #344038 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  padding-top: 18px;
  text-transform: uppercase;
}

.fe-listing-card__link span { font-size: 17px; transition: transform 180ms ease; }
.fe-listing-card__link:hover span { transform: translate(3px, -3px); }

.fe-pagination {
  margin-top: 56px;
}

.fe-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.fe-pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc4b5;
  border-radius: 999px;
  background: transparent;
  color: #354037;
  font-size: 11px;
  padding-inline: 15px;
}

.fe-pagination .page-numbers.current,
.fe-pagination .page-numbers:hover {
  border-color: #273229;
  background: #273229;
  color: white;
}

/* Singular content */
.fe-entry__meta {
  display: flex;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #77776f;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fe-entry__meta a { color: #536052; }

.fe-entry__featured {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 28px;
}

.fe-entry__featured img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.fe-entry-content {
  color: #3b433c;
  font-size: 16px;
  line-height: 1.9;
  padding: clamp(32px, 6vw, 78px);
}

.fe-inner-content--wide .fe-entry-content {
  padding: clamp(26px, 4vw, 58px);
}

.fe-entry-content::after {
  display: table;
  clear: both;
  content: "";
}

.fe-entry-content > :first-child { margin-top: 0 !important; }
.fe-entry-content > :last-child { margin-bottom: 0 !important; }

.fe-entry-content h1,
.fe-entry-content h2,
.fe-entry-content h3,
.fe-entry-content h4 {
  color: #263129;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.fe-entry-content h1 { margin: 0 0 28px; font-size: clamp(44px, 5vw, 70px); }
.fe-entry-content h2 { margin: 54px 0 20px; font-size: clamp(36px, 4vw, 54px); }
.fe-entry-content h3 { margin: 42px 0 16px; font-size: 31px; }
.fe-entry-content h4 { margin: 34px 0 13px; font-family: inherit; font-size: 17px; font-weight: 700; }
.fe-entry-content p { margin: 0 0 25px; }
.fe-entry-content ul,
.fe-entry-content ol { margin: 0 0 28px; padding-left: 24px; }
.fe-entry-content li + li { margin-top: 8px; }
.fe-entry-content a:not(.button):not(.fe-button) { color: #536657; text-decoration: underline; text-decoration-color: #b1a58f; text-underline-offset: 3px; }
.fe-entry-content strong { color: #273229; }
.fe-entry-content blockquote { margin: 45px 0; border-left: 2px solid #bcae93; color: #465248; font-size: clamp(27px, 3.4vw, 42px); font-style: italic; line-height: 1.25; padding: 12px 0 12px 30px; }
.fe-entry-content img { max-width: 100%; height: auto; border-radius: 14px; }
.fe-entry-content figure { max-width: 100%; margin: 34px 0; }
.fe-entry-content figcaption { margin-top: 9px; color: #858378; font-size: 11px; text-align: center; }
.fe-entry-content hr { margin: 48px 0; border: 0; border-top: 1px solid #d8d0c2; }
.fe-entry-content iframe { max-width: 100%; border-radius: 16px; }

.fe-entry-content .fe-provider-lead {
  max-width: 820px;
  color: #273229;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.35;
}

.fe-entry-content .fe-provider-facts {
  display: grid;
  margin: 42px 0;
  border-block: 1px solid #d8d0c2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fe-entry-content .fe-provider-facts p {
  margin: 0;
  padding: 24px 26px;
}

.fe-entry-content .fe-provider-facts p + p {
  border-left: 1px solid #d8d0c2;
}

.fe-entry-content .fe-provider-note {
  max-width: 780px;
  margin-top: 32px;
  color: #817e74;
  font-size: 12px;
  line-height: 1.75;
}

.fe-entry-content table,
.fe-commerce table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  border: 1px solid #d6cec0;
  background: white;
}

.fe-entry-content th,
.fe-entry-content td,
.fe-commerce th,
.fe-commerce td {
  border-bottom: 1px solid #ddd5c8;
  padding: 14px;
  text-align: left;
}

.fe-entry-content th,
.fe-commerce th { background: #eee6d8; color: #334038; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.fe-entry-content input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.fe-entry-content select,
.fe-entry-content textarea,
.fe-commerce input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.fe-commerce select,
.fe-commerce textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfc6b7;
  border-radius: 13px;
  background: white;
  color: #273229;
  outline: 0;
  padding: 11px 15px;
}

.fe-entry-content textarea,
.fe-commerce textarea { min-height: 150px; resize: vertical; }

.fe-entry-content input:focus,
.fe-entry-content select:focus,
.fe-entry-content textarea:focus,
.fe-commerce input:focus,
.fe-commerce select:focus,
.fe-commerce textarea:focus { border-color: #5f7162; box-shadow: 0 0 0 3px rgba(95,113,98,.12); }

.fe-entry-content button,
.fe-entry-content input[type="submit"],
.fe-entry-content .button,
.fe-commerce button,
.fe-commerce input[type="submit"],
.fe-commerce .button,
.fe-commerce a.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 999px !important;
  background: #273229 !important;
  color: white !important;
  cursor: pointer;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .05em;
  padding: 0 24px !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

.fe-entry-content button:hover,
.fe-entry-content input[type="submit"]:hover,
.fe-entry-content .button:hover,
.fe-commerce button:hover,
.fe-commerce input[type="submit"]:hover,
.fe-commerce .button:hover { background: #536354 !important; }

.fe-post-navigation {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fe-post-navigation > div:last-child { text-align: right; }
.fe-post-navigation a { display: block; border: 1px solid #d2c9ba; border-radius: 18px; background: #eee6d8; padding: 22px; }
.fe-post-navigation small { display: block; margin-bottom: 8px; color: #8a8275; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.fe-post-navigation span { font-family: Georgia, serif; font-size: 18px; }

.fe-empty-state {
  max-width: 760px;
  margin-inline: auto;
  border: 1px solid #d7cfc0;
  border-radius: 28px;
  background: #fffaf1;
  padding: 75px 45px;
  text-align: center;
}

.fe-empty-state > span { color: #b2a286; font-family: Georgia, serif; font-size: 78px; font-style: italic; }
.fe-empty-state h2 { margin-top: 12px; font-size: clamp(43px, 5vw, 68px); letter-spacing: -.04em; }
.fe-empty-state p { max-width: 500px; margin: 17px auto 0; color: #73756d; }
.fe-empty-state .fe-button { margin-top: 30px; }

/* WooCommerce and directory plugins inherit the premium system. */
.fe-commerce {
  padding: clamp(28px, 5vw, 62px);
}

.fe-commerce .woocommerce-breadcrumb,
.fe-commerce .woocommerce-products-header__title { display: none; }
.fe-commerce .woocommerce-result-count { color: #77776f; font-size: 11px; }
.fe-commerce .woocommerce-ordering select { min-width: 220px; }
.fe-commerce ul.products { display: grid !important; margin: 35px 0 0 !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.fe-commerce ul.products::before,
.fe-commerce ul.products::after { display: none !important; }
.fe-commerce ul.products li.product { width: auto !important; margin: 0 !important; overflow: hidden; border: 1px solid #d8d0c1; border-radius: 18px; background: white; padding: 18px !important; }
.fe-commerce ul.products li.product img { margin: 0 0 18px !important; border-radius: 13px; }
.fe-commerce ul.products li.product h2 { color: #29342c; font-size: 22px !important; line-height: 1.15; }
.fe-commerce .price { color: #607061 !important; font-weight: 700; }
.fe-commerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.fe-commerce div.product .woocommerce-product-gallery,
.fe-commerce div.product .summary { width: auto !important; float: none !important; }
.fe-commerce div.product .product_title { font-size: clamp(42px, 5vw, 68px); }
.fe-commerce div.product .woocommerce-tabs,
.fe-commerce div.product .related { grid-column: 1 / -1; }
.fe-commerce .woocommerce-message,
.fe-commerce .woocommerce-info,
.fe-entry-content .woocommerce-message,
.fe-entry-content .woocommerce-info { border: 0; border-radius: 13px; background: #e5ecdf; color: #354038; padding: 18px 20px; }

.fe-entry-content [class*="es-"] {
  --es-primary: #536657;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fe-entry-content .es-search,
.fe-entry-content .es-listing,
.fe-entry-content .es-property,
.fe-entry-content .es-single {
  border-color: #d6cec0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

/* Live Google Places search */
.fe-google-results__head {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.fe-google-results__head h2 {
  margin-top: 16px;
  color: #273229;
  font-size: clamp(43px, 5vw, 68px);
  letter-spacing: -.04em;
  line-height: 1;
}

.fe-google-attribution {
  flex: 0 0 auto;
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

.fe-google-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fe-google-card {
  display: grid;
  min-height: 210px;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 20px;
  border: 1px solid #d6cec0;
  border-radius: 22px;
  background: #fffaf1;
  padding: 30px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.fe-google-card:hover {
  box-shadow: 0 24px 60px rgba(41,49,42,.09);
  transform: translateY(-3px);
}

.fe-google-card__number {
  display: flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9bfaf;
  border-radius: 50%;
  color: #9a8b74;
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.fe-google-card__body > span {
  color: #8b8376;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.fe-google-card h3 {
  margin-top: 14px;
  color: #273229;
  font-size: 30px;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.fe-google-card p {
  margin-top: 13px !important;
  color: #707269;
  font-size: 12px;
  line-height: 1.7;
}

.fe-google-card__link {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9c0b1;
  border-radius: 50%;
  color: #334038 !important;
  font-size: 17px;
  transition: background 180ms ease, color 180ms ease;
}

.fe-google-card__link:hover { background: #273229; color: white !important; }
.fe-google-card__providers { display: flex; margin-top: 12px; flex-wrap: wrap; gap: 8px; color: #858077; font-size: 9px; }
.fe-google-card__providers a { color: #58665a; text-decoration: underline; text-underline-offset: 2px; }

.fe-google-more {
  margin-top: 38px;
  text-align: center;
}

.fe-google-notice {
  padding: 50px;
  text-align: center;
}

.fe-google-notice h3 { color: #273229; font-size: 34px; }
.fe-google-notice p { margin: 12px auto 0; color: #74756d; }
.fe-google-notice .fe-button { margin-top: 24px; }

.fe-google-legal {
  margin-top: 30px;
  color: #797971;
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

.fe-google-legal span {
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

.fe-google-legal a { color: #536657; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1100px) {
  .fe-nav { gap: 20px; }
  .fe-section-heading { grid-template-columns: 1fr 300px; }
  .fe-collection-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-manifesto__grid { gap: 55px; }
  .fe-process__grid { grid-template-columns: 1fr; gap: 50px; }
  .fe-professionals__panel { padding-inline: 50px; }
  .fe-commerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fe-google-grid { grid-template-columns: 1fr; }
}

@media (max-width: 850px) {
  .fe-section { padding: 92px 0; }
  .fe-nav { display: none; }
  .fe-menu-button { display: flex; }
  .fe-mobile-menu { display: block; }
  .fe-hero__note { display: none; }
  .fe-search { grid-template-columns: 1fr 1fr; }
  .fe-search__submit { grid-column: 1 / -1; }
  .fe-section-heading { grid-template-columns: 1fr; gap: 26px; }
  .fe-section-heading > p { max-width: 520px; }
  .fe-manifesto { padding: 92px 0; }
  .fe-manifesto__grid { grid-template-columns: 1fr; }
  .fe-manifesto__image { min-height: 580px; order: 2; }
  .fe-professionals__panel { grid-template-columns: 1fr; gap: 30px; padding: 55px 38px; }
  .fe-journal__grid { grid-template-columns: 1fr; }
  .fe-article { min-height: 300px; }
  .fe-footer__main { grid-template-columns: 1fr; }
  .fe-footer__contact { align-items: flex-start; }
  .fe-footer__contact p { text-align: left; }
  .fe-site-header__inner { height: 84px; }
  .fe-page-hero,
  .fe-page-hero__content { min-height: 470px; }
  .fe-page-hero__content { padding-block: 75px; }
  .fe-listing-card__media { height: 260px; }
  .fe-listing-card__body { padding: 28px; }
  .fe-entry-content { padding: 42px; }
  .fe-commerce div.product { grid-template-columns: 1fr; }
  .fe-commerce div.product .woocommerce-tabs,
  .fe-commerce div.product .related { grid-column: auto; }
  .fe-google-results__head { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .fe-container { width: min(100% - 32px, 1368px); }
  .fe-header { height: 82px; }
  .fe-pro-link { display: none; }
  .fe-brand__name { font-size: 13px; }
  .fe-hero { min-height: 850px; background-position: 66% center; }
  .fe-hero__overlay { background: linear-gradient(90deg, rgba(18,26,20,.94), rgba(18,26,20,.65)), linear-gradient(180deg, rgba(11,16,12,.3), rgba(11,16,12,.6)); }
  .fe-hero__content { min-height: 768px; align-items: flex-start; padding-top: 92px; }
  .fe-hero h1 { margin-top: 21px; font-size: clamp(54px, 17vw, 74px); line-height: .9; }
  .fe-hero__intro { font-size: 14px; line-height: 1.7; }
  .fe-search { margin-top: 28px; grid-template-columns: 1fr; }
  .fe-search__field { min-height: 61px; }
  .fe-search__field--location { border-top: 1px solid #d9d2c5; border-left: 0; border-radius: 15px; }
  .fe-search__submit { grid-column: auto; min-height: 58px; }
  .fe-popular { display: none; }
  .fe-section { padding: 80px 0; }
  .fe-section-heading h2,
  .fe-manifesto h2,
  .fe-process h2,
  .fe-professionals h2,
  .fe-journal h2,
  .fe-footer h2 { font-size: 49px; }
  .fe-collection-grid { grid-template-columns: 1fr; }
  .fe-collection { min-height: 310px; }
  .fe-manifesto { padding: 80px 0; }
  .fe-manifesto__image { min-height: 480px; border-radius: 140px 140px 0 0; }
  .fe-manifesto__image > small { display: none; }
  .fe-values { grid-template-columns: 1fr; }
  .fe-step { grid-template-columns: 45px 1fr; }
  .fe-step > span { display: none; }
  .fe-professionals { padding-bottom: 80px; }
  .fe-professionals__panel { min-height: auto; border-radius: 24px; padding: 45px 26px; }
  .fe-journal__heading { align-items: flex-start; flex-direction: column; }
  .fe-article { min-height: 280px; padding: 28px; }
  .fe-footer { padding-top: 80px; }
  .fe-footer__bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .fe-footer__bottom nav { flex-wrap: wrap; gap: 14px 20px; }
  .fe-page-hero,
  .fe-page-hero__content { min-height: 430px; }
  .fe-page-hero { background-position: 66% center; }
  .fe-page-hero__content { padding-block: 72px 52px; }
  .fe-page-hero__trail { top: 20px; }
  .fe-page-hero h1 { font-size: clamp(48px, 14.5vw, 68px); }
  .fe-page-hero__intro { font-size: 13px; }
  .fe-inner-content { padding: 64px 0 80px; }
  .fe-inner-content > .fe-container,
  .fe-inner-content--wide > .fe-container { width: min(100% - 28px, 1368px); }
  .fe-listing-grid { grid-template-columns: 1fr; }
  .fe-listing-card__media { height: 230px; }
  .fe-listing-card h2 { font-size: 31px; }
  .fe-entry__featured { border-radius: 18px; }
  .fe-entry-content,
  .fe-inner-content--wide .fe-entry-content { border-radius: 20px; padding: 28px 22px; }
  .fe-entry-content { font-size: 15px; line-height: 1.8; }
  .fe-entry-content h2 { margin-top: 42px; font-size: 38px; }
  .fe-entry-content h3 { font-size: 28px; }
  .fe-entry-content blockquote { margin-block: 34px; padding-left: 20px; }
  .fe-entry-content .fe-provider-facts { grid-template-columns: 1fr; }
  .fe-entry-content .fe-provider-facts p { padding-inline: 0; }
  .fe-entry-content .fe-provider-facts p + p { border-top: 1px solid #d8d0c2; border-left: 0; }
  .fe-post-navigation { grid-template-columns: 1fr; }
  .fe-post-navigation > div:last-child { text-align: left; }
  .fe-empty-state { border-radius: 20px; padding: 50px 24px; }
  .fe-commerce { border-radius: 20px; padding: 22px 16px; }
  .fe-commerce ul.products { grid-template-columns: 1fr; }
  .fe-commerce table,
  .fe-entry-content table { display: block; overflow-x: auto; }
  .fe-google-card { min-height: 0; grid-template-columns: 48px 1fr; gap: 15px; border-radius: 18px; padding: 23px 19px; }
  .fe-google-card__number { width: 44px; height: 44px; font-size: 14px; }
  .fe-google-card__link { grid-column: 2; width: auto; height: auto; justify-content: flex-start; border: 0; border-radius: 0; font-size: 19px; }
  .fe-google-card__link:hover { background: transparent; color: #536657 !important; }
  .fe-google-card h3 { font-size: 27px; }
  .fe-google-notice { padding: 38px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .fe-premium *,
  .fe-premium *::before,
  .fe-premium *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
