
.egc-application-form-wrap {
	max-width: 980px;
	margin: 0 auto;
}
.egc-application-form {
	display: grid;
	gap: 28px;
}
.egc-application-section {
	background: #fff;
	border: 1px solid #ddd6ca;
	padding: 30px;
}
.egc-application-section h3 {
	margin: 0 0 20px;
	color: #003b22;
}
.egc-application-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.egc-application-grid label {
	display: grid;
	gap: 8px;
	color: #003b22;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.egc-application-grid input,
.egc-application-grid select,
.egc-application-grid textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #ddd6ca;
	border-radius: 0;
	padding: 14px 16px;
	min-height: 50px;
}
.egc-application-full {
	grid-column: 1 / -1;
}
.egc-application-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	text-transform: none;
	letter-spacing: 0;
}
.egc-application-consent input {
	margin-top: 5px;
}
.egc-honeypot {
	position: absolute !important;
	left: -9999px !important;
}
.egc-application-message {
	padding: 20px;
	margin-bottom: 22px;
	border: 1px solid;
}
.egc-application-message.success {
	background: #edf8f2;
	border-color: #9bcfb2;
	color: #1e7046;
}
.egc-application-message.error {
	background: #fff0ee;
	border-color: #e5aaa4;
	color: #923a31;
}
.egc-dynamic-chapter-grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 28px;
}
.egc-dynamic-chapter-card {
	background:#fff;
	border:1px solid #ddd6ca;
	overflow:hidden;
}
.egc-dynamic-chapter-card img {
	display:block;
	width:100%;
	height:340px;
	object-fit:cover;
}
.egc-dynamic-chapter-card__body { padding:28px; }
.egc-dynamic-chapter-card__body > span {
	display:block;
	color:#b9821f;
	font-size:11px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:.12em;
}
@media (max-width: 767px) {
	.egc-application-grid,
	.egc-dynamic-chapter-grid {
		grid-template-columns: 1fr;
	}
	.egc-application-full {
		grid-column: auto;
	}
	.egc-application-section {
		padding: 22px;
	}
}


/* Phase 4: Events */
.egc-dynamic-event-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 24px;
}
.egc-dynamic-event-card {
	background:#fff;
	border:1px solid #ddd6ca;
	overflow:hidden;
}
.egc-dynamic-event-card > img {
	display:block;
	width:100%;
	height:240px;
	object-fit:cover;
}
.egc-dynamic-event-card__body {
	padding:26px;
}
.egc-event-card__meta {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	margin-bottom:12px;
}
.egc-event-card__meta span {
	color:#b9821f;
	font-size:11px;
	font-weight:700;
	letter-spacing:.1em;
	text-transform:uppercase;
}
.egc-event-card__actions {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	align-items:center;
	margin-top:18px;
}
.egc-event-card__actions form { margin:0; }
.egc-event-registered {
	display:inline-flex;
	align-items:center;
	padding:10px 14px;
	background:#e8f7ef;
	color:#1e7046;
	font-weight:700;
}
@media (max-width:1024px) {
	.egc-dynamic-event-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767px) {
	.egc-dynamic-event-grid { grid-template-columns:1fr; }
}


/* Phase 5: Perks and Resources */
.egc-perks-filter {
	display:grid;
	grid-template-columns:2fr repeat(2,minmax(160px,1fr)) auto auto;
	gap:10px;
	margin-bottom:24px;
}
.egc-perks-filter input,
.egc-perks-filter select {
	width:100%;
	min-height:50px;
	border:1px solid #ddd6ca;
	padding:12px 14px;
	background:#fff;
}
.egc-dynamic-perks-grid {
	display:grid;
	grid-template-columns:1fr;
	gap:22px;
}
.egc-dynamic-perk-card {
	display:grid;
	grid-template-columns:180px minmax(0,1fr);
	background:#fff;
	border:1px solid #ddd6ca;
}
.egc-dynamic-perk-card.is-featured {
	border-color:#d9a23a;
	box-shadow:0 12px 28px rgba(0,40,23,.08);
}
.egc-dynamic-perk-card__logo {
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px;
	border-right:1px solid #ddd6ca;
}
.egc-dynamic-perk-card__logo img {
	max-width:130px;
	max-height:90px;
	object-fit:contain;
}
.egc-dynamic-perk-card__body { padding:26px; }
.egc-perk-featured-label,
.egc-resource-type {
	display:inline-flex;
	color:#b9821f;
	font-size:11px;
	font-weight:700;
	letter-spacing:.1em;
	text-transform:uppercase;
	margin-bottom:8px;
}
.egc-perk-offer {
	color:#003b22;
	font-size:18px;
	font-weight:700;
}
.egc-perk-code-row {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:10px;
	margin:14px 0;
	padding:12px;
	background:#f2f7f5;
	border:1px dashed #9ab2aa;
}
.egc-perk-code-row code {
	color:#003b22;
	font-weight:800;
	font-size:16px;
}
.egc-copy-code {
	background:#003b22;
	color:#fff;
	border:0;
	padding:9px 12px;
	cursor:pointer;
}
.egc-perk-modal[hidden] { display:none; }
.egc-perk-modal {
	position:fixed;
	inset:0;
	z-index:999999;
}
.egc-perk-modal__overlay {
	position:absolute;
	inset:0;
	background:rgba(0,0,0,.55);
}
.egc-perk-modal__dialog {
	position:relative;
	z-index:2;
	max-width:620px;
	margin:8vh auto;
	background:#fff;
	padding:30px;
}
.egc-perk-modal__close {
	position:absolute;
	top:10px;
	right:14px;
	background:transparent;
	border:0;
	font-size:28px;
	cursor:pointer;
}
.egc-modal-open { overflow:hidden; }

.egc-dynamic-resource-grid {
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:22px;
}
.egc-dynamic-resource-card {
	background:#fff;
	border:1px solid #ddd6ca;
	padding:26px;
}
.egc-dynamic-resource-card.is-featured {
	border-color:#d9a23a;
	box-shadow:0 12px 28px rgba(0,40,23,.08);
}

@media (max-width:1024px) {
	.egc-perks-filter { grid-template-columns:repeat(2,minmax(0,1fr)); }
	.egc-dynamic-resource-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767px) {
	.egc-perks-filter,
	.egc-dynamic-resource-grid,
	.egc-dynamic-perk-card {
		grid-template-columns:1fr;
	}
	.egc-dynamic-perk-card__logo {
		border-right:0;
		border-bottom:1px solid #ddd6ca;
	}
	.egc-perk-modal__dialog { margin:4vh 16px; }
}


/* Phase 6: Native Membership & Billing */
.egc-native-plan-grid {
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:24px;
}
.egc-native-plan-card {
	background:#fff;
	border:1px solid #ddd6ca;
	padding:30px;
	position:relative;
}
.egc-native-plan-card.is-featured {
	background:#003b22;
	color:#fff;
	border-color:#d9a23a;
}
.egc-native-plan-card.is-featured h3 { color:#fff; }
.egc-native-plan-card.is-featured p,
.egc-native-plan-card.is-featured li { color:rgba(255,255,255,.82); }
.egc-native-plan-featured {
	display:inline-flex;
	background:#d9a23a;
	color:#002817;
	font-size:11px;
	font-weight:800;
	letter-spacing:.1em;
	text-transform:uppercase;
	padding:7px 10px;
	margin-bottom:14px;
}
.egc-native-plan-prices {
	display:flex;
	flex-wrap:wrap;
	gap:18px;
	margin:18px 0;
}
.egc-native-plan-prices span {
	display:flex;
	flex-direction:column;
}
.egc-native-plan-prices strong {
	color:#b9821f;
	font-family:"Cormorant Garamond",Georgia,serif;
	font-size:34px;
}
.egc-native-plan-card.is-featured .egc-native-plan-prices strong { color:#d9a23a; }
.egc-native-plan-description { margin-bottom:22px; }

.egc-member-billing-card {
	background:#fff;
	border:1px solid #ddd6ca;
	padding:30px;
}
.egc-member-billing-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:14px;
	margin:20px 0;
}
.egc-member-billing-grid > div {
	background:#f7faf8;
	border:1px solid #e0e8e4;
	padding:16px;
}
.egc-member-billing-grid span,
.egc-member-billing-grid strong {
	display:block;
}
.egc-member-billing-grid span {
	color:#68736d;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:.06em;
	margin-bottom:7px;
}
.egc-member-billing-grid strong { color:#003b22; }

@media (max-width:900px) {
	.egc-member-billing-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:767px) {
	.egc-native-plan-grid,
	.egc-member-billing-grid { grid-template-columns:1fr; }
}


/* Phase 7: Native Member Portal */
.egc-member-dashboard {
	display:grid;
	gap:24px;
}
.egc-member-dashboard__hero {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
	padding:30px;
	background:linear-gradient(135deg,#002817,#0e5134);
	color:#fff;
}
.egc-member-dashboard__identity {
	display:flex;
	align-items:center;
	gap:18px;
}
.egc-member-dashboard__identity img {
	border-radius:50%;
	border:3px solid rgba(217,162,58,.7);
}
.egc-member-dashboard__identity h2 {
	color:#fff;
	margin:4px 0 8px;
	font-size:clamp(34px,4vw,52px);
}
.egc-member-dashboard__identity p {
	margin:0;
	color:rgba(255,255,255,.76);
}
.egc-portal-eyebrow {
	display:block;
	color:#d9a23a;
	font-size:11px;
	font-weight:800;
	letter-spacing:.16em;
	text-transform:uppercase;
}
.egc-member-dashboard__status {
	text-align:right;
}
.egc-member-dashboard__status span,
.egc-member-dashboard__status strong,
.egc-member-dashboard__status small {
	display:block;
}
.egc-member-dashboard__status span {
	color:rgba(255,255,255,.62);
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:.1em;
}
.egc-member-dashboard__status strong {
	color:#d9a23a;
	font-size:20px;
	margin:4px 0;
}
.egc-member-dashboard__status small {
	color:rgba(255,255,255,.72);
}

.egc-portal-alert {
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:10px;
	padding:16px 18px;
	border:1px solid;
}
.egc-portal-alert.warning {
	background:#fff6df;
	border-color:#e7c56c;
	color:#725700;
}
.egc-portal-alert a {
	margin-left:auto;
	font-weight:700;
}

.egc-portal-overview-grid {
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:16px;
}
.egc-portal-overview-card {
	background:#fff;
	border:1px solid #ddd6ca;
	padding:22px;
}
.egc-portal-overview-card span,
.egc-portal-overview-card strong,
.egc-portal-overview-card a {
	display:block;
}
.egc-portal-overview-card span {
	color:#68736d;
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:.08em;
}
.egc-portal-overview-card strong {
	color:#003b22;
	font-size:18px;
	margin:7px 0 12px;
}
.egc-portal-overview-card a {
	font-size:12px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:.05em;
}

.egc-portal-nav {
	display:flex;
	flex-wrap:wrap;
	gap:8px;
	padding:12px;
	background:#f5f0e7;
	border:1px solid #ddd6ca;
}
.egc-portal-nav a {
	display:inline-flex;
	padding:10px 14px;
	background:#fff;
	border:1px solid #ddd6ca;
	color:#003b22;
	font-size:12px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:.04em;
}
.egc-portal-nav a:hover {
	background:#003b22;
	color:#fff;
	border-color:#003b22;
}

.egc-portal-main-grid {
	display:grid;
	grid-template-columns:minmax(0,2fr) minmax(280px,1fr);
	gap:24px;
	align-items:start;
}
.egc-portal-main-column,
.egc-portal-side-column {
	display:grid;
	gap:24px;
}
.egc-portal-panel {
	background:#fff;
	border:1px solid #ddd6ca;
	padding:26px;
}
.egc-portal-panel__head {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:14px;
	margin-bottom:18px;
}
.egc-portal-panel__head h3 {
	margin:0;
}
.egc-portal-panel__head a,
.egc-portal-panel__head span {
	font-size:12px;
	font-weight:700;
}

.egc-portal-list {
	display:grid;
	gap:12px;
}
.egc-portal-list > a,
.egc-portal-list.compact > div {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	padding:13px 0;
	border-bottom:1px solid #eee8de;
	text-decoration:none;
}
.egc-portal-list > a:last-child,
.egc-portal-list.compact > div:last-child {
	border-bottom:0;
}
.egc-portal-list strong,
.egc-portal-list small {
	display:block;
}
.egc-portal-list small {
	color:#68736d;
	margin-top:4px;
}

.egc-onboarding-form {
	display:grid;
	gap:10px;
}
.egc-onboarding-form label {
	display:flex;
	align-items:center;
	gap:10px;
	padding:12px;
	border:1px solid #e2ddd4;
	background:#faf8f3;
	text-transform:none;
	letter-spacing:0;
}
.egc-onboarding-form label.is-complete {
	background:#eef8f2;
	border-color:#b6dac5;
}
.egc-onboarding-form label.is-complete span {
	text-decoration:line-through;
	color:#607269;
}
.egc-onboarding-form button {
	justify-self:start;
	margin-top:6px;
}

.egc-access-message {
	max-width:720px;
	margin:40px auto;
	padding:34px;
	background:#fff;
	border:1px solid #ddd6ca;
	text-align:center;
}
.egc-member-profile-summary {
	display:flex;
	align-items:center;
	gap:18px;
	background:#fff;
	border:1px solid #ddd6ca;
	padding:24px;
}
.egc-member-profile-summary img { border-radius:50%; }
.egc-member-profile-summary h3 { margin:0 0 6px; }
.egc-member-profile-summary p { margin:3px 0; color:#68736d; }

@media (max-width:1024px) {
	.egc-portal-overview-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
	.egc-portal-main-grid { grid-template-columns:1fr; }
}
@media (max-width:767px) {
	.egc-member-dashboard__hero,
	.egc-member-dashboard__identity {
		align-items:flex-start;
		flex-direction:column;
	}
	.egc-member-dashboard__status { text-align:left; }
	.egc-portal-overview-grid { grid-template-columns:1fr; }
	.egc-portal-alert a { margin-left:0; width:100%; }
}


/* =========================================================
   v1.8.0 FRONTEND MEMBER ACCOUNT
   Scoped to native EGC account shortcodes.
   ========================================================= */

.egc-frontend-account {
	width: min(92%, 1180px);
	margin: 0 auto;
	padding: 46px 0 88px;
	color: var(--egc-text, #26342c);
}

.egc-account-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 12px;
	margin-bottom: 24px;
	background: var(--egc-cream, #f5f0e7);
	border: 1px solid var(--egc-border, #ddd6ca);
}

.egc-account-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 15px;
	background: #fff;
	border: 1px solid var(--egc-border, #ddd6ca);
	color: var(--egc-green, #003b22);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	text-decoration: none;
	text-transform: uppercase;
}

.egc-account-nav a:hover,
.egc-account-nav a.is-active {
	background: var(--egc-green, #003b22);
	border-color: var(--egc-green, #003b22);
	color: #fff;
}

.egc-account-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px 34px;
	margin-bottom: 24px;
	background: linear-gradient(135deg, var(--egc-green-dark, #002817), var(--egc-green, #003b22));
	color: #fff;
}

.egc-account-heading h2 {
	margin: 5px 0 10px;
	color: #fff;
	font-size: clamp(38px, 5vw, 58px);
}

.egc-account-heading p {
	max-width: 720px;
	margin: 0;
	color: rgba(255,255,255,.75);
}

.egc-account-kicker {
	display: block;
	color: var(--egc-gold, #d9a23a);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.egc-account-avatar img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 3px solid var(--egc-gold, #d9a23a);
	object-fit: cover;
	background: #fff;
}

.egc-account-message {
	padding: 16px 18px;
	margin-bottom: 20px;
	border: 1px solid;
}

.egc-account-message--success {
	background: #edf8f2;
	border-color: #9bcfb2;
	color: #1e7046;
}

.egc-account-message--error {
	background: #fff0ee;
	border-color: #e5aaa4;
	color: #923a31;
}

.egc-account-message--warning {
	background: #fff7df;
	border-color: #e5c567;
	color: #735700;
}

.egc-account-form {
	display: grid;
	gap: 22px;
}

.egc-account-section {
	background: #fff;
	border: 1px solid var(--egc-border, #ddd6ca);
	padding: 30px;
}

.egc-account-section__heading {
	margin-bottom: 24px;
}

.egc-account-section__heading h3,
.egc-account-section-heading h3 {
	margin: 0 0 8px;
	color: var(--egc-green, #003b22);
}

.egc-account-section__heading p,
.egc-account-section-heading p {
	margin: 0;
	color: var(--egc-muted, #68736d);
}

.egc-account-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.egc-account-fields.one-column {
	grid-template-columns: minmax(0, 620px);
}

.egc-account-fields label {
	display: grid;
	gap: 8px;
}

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

.egc-account-fields small,
.egc-current-image {
	color: var(--egc-muted, #68736d);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.egc-inline-check {
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	gap: 10px !important;
	text-transform: none;
	letter-spacing: 0;
}

.egc-inline-check input {
	width: auto !important;
	min-height: 0 !important;
}

.egc-account-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.egc-current-membership {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 30px;
	margin-bottom: 34px;
	background: #fff;
	border: 1px solid var(--egc-border, #ddd6ca);
}

.egc-current-membership > div > span,
.egc-current-membership__details span {
	display: block;
	color: var(--egc-muted, #68736d);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.egc-current-membership h3 {
	margin: 6px 0 8px;
}

.egc-current-membership p {
	margin: 0;
}

.egc-current-membership__details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.egc-current-membership__details > div {
	padding: 14px;
	background: #f5f8f6;
	border: 1px solid #dfe7e2;
}

.egc-account-section-heading {
	margin: 0 0 22px;
}

.egc-account-plan-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.egc-account-plan-card {
	position: relative;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--egc-border, #ddd6ca);
}

.egc-account-plan-card.is-current {
	border-color: var(--egc-gold, #d9a23a);
	box-shadow: 0 14px 35px rgba(0,40,23,.08);
}

.egc-current-plan-label {
	display: inline-flex;
	padding: 6px 10px;
	margin-bottom: 12px;
	background: var(--egc-gold, #d9a23a);
	color: var(--egc-green-dark, #002817);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.egc-account-plan-card h3 {
	margin: 0 0 12px;
}

.egc-account-plan-card > p {
	color: var(--egc-muted, #68736d);
}

.egc-account-plan-prices {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 20px 0;
}

.egc-account-plan-prices span {
	display: flex;
	flex-direction: column;
}

.egc-account-plan-prices strong {
	color: var(--egc-gold-dark, #b9821f);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 34px;
	line-height: 1;
}

.egc-account-plan-prices small {
	color: var(--egc-muted, #68736d);
}

.egc-account-plan-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.egc-account-plan-actions form {
	margin: 0;
}

.egc-account-help {
	padding: 26px;
	margin-top: 24px;
	background: var(--egc-cream, #f5f0e7);
	border-left: 3px solid var(--egc-gold, #d9a23a);
}

.egc-account-help h3 {
	margin-top: 0;
}

.egc-security-form {
	max-width: 760px;
}

@media (max-width: 900px) {
	.egc-current-membership {
		grid-template-columns: 1fr;
	}

	.egc-account-plan-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.egc-frontend-account {
		width: min(100% - 28px, 1180px);
		padding: 28px 0 60px;
	}

	.egc-account-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.egc-account-heading {
		flex-direction: column-reverse;
		align-items: flex-start;
		padding: 24px 20px;
	}

	.egc-account-section {
		padding: 22px 18px;
	}

	.egc-account-fields,
	.egc-account-fields.one-column,
	.egc-current-membership__details {
		grid-template-columns: 1fr;
	}

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

	.egc-account-actions,
	.egc-account-plan-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.egc-account-actions a,
	.egc-account-actions button,
	.egc-account-plan-actions form,
	.egc-account-plan-actions button {
		width: 100%;
	}
}


/* =========================================================
   v1.8.1 MEMBERSHIP PAGE REFINEMENT
   Scoped only to .egc-membership-page.
   ========================================================= */

.egc-membership-page {
	background:#faf7f1;
}

.egc-membership-page .egc-page-hero {
	padding:105px 0 92px;
	background:
		radial-gradient(circle at 78% 24%, rgba(217,162,58,.12), transparent 30%),
		linear-gradient(135deg, #002817 0%, #003b22 64%, #0e5134 100%);
	border-bottom:1px solid rgba(217,162,58,.25);
}

.egc-membership-page .egc-page-hero-inner {
	max-width:880px;
}

.egc-membership-page .egc-page-hero .egc-kicker {
	justify-content:center;
	color:#d9a23a;
}

.egc-membership-page .egc-page-hero .egc-kicker::after {
	content:"";
	width:40px;
	height:1px;
	background:currentColor;
}

.egc-membership-page .egc-page-hero h1 {
	max-width:820px;
	font-size:clamp(50px,6vw,78px);
	line-height:1.02;
	margin-bottom:22px;
}

.egc-membership-page .egc-page-hero p {
	max-width:720px;
	font-size:17px;
	line-height:1.75;
}

.egc-membership-page .egc-membership-options-section {
	padding:82px 0 96px;
	background:#fff;
}

.egc-membership-page .egc-membership-options-section .egc-section-heading {
	margin-bottom:48px;
}

.egc-membership-page .egc-native-plan-grid {
	width:min(92%,1120px);
	margin:0 auto;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:22px;
	align-items:stretch;
}

.egc-membership-page .egc-native-plan-card {
	display:flex;
	flex-direction:column;
	min-height:100%;
	padding:32px;
	background:#fff;
	border:1px solid #ddd6ca;
	box-shadow:0 10px 30px rgba(0,40,23,.045);
	transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.egc-membership-page .egc-native-plan-card:hover {
	transform:translateY(-4px);
	border-color:rgba(217,162,58,.65);
	box-shadow:0 18px 42px rgba(0,40,23,.09);
}

.egc-membership-page .egc-native-plan-card.is-featured {
	background:linear-gradient(145deg,#003b22,#002817);
	border:1px solid #d9a23a;
	box-shadow:0 18px 44px rgba(0,40,23,.16);
}

.egc-membership-page .egc-native-plan-featured {
	align-self:flex-start;
	margin-bottom:18px;
	padding:7px 11px;
}

.egc-membership-page .egc-native-plan-card h3 {
	margin:0 0 8px;
	font-size:clamp(31px,3vw,40px);
}

.egc-membership-page .egc-native-plan-card.is-featured h3 {
	color:#fff;
}

.egc-membership-page .egc-native-plan-card > p {
	min-height:48px;
	margin-bottom:18px;
	color:#68736d;
}

.egc-membership-page .egc-native-plan-card.is-featured > p {
	color:rgba(255,255,255,.74);
}

.egc-membership-page .egc-native-plan-prices {
	display:flex;
	flex-wrap:wrap;
	gap:22px;
	padding:18px 0;
	margin:0 0 18px;
	border-top:1px solid #eee7dc;
	border-bottom:1px solid #eee7dc;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-prices {
	border-color:rgba(255,255,255,.16);
}

.egc-membership-page .egc-native-plan-prices strong {
	font-size:34px;
	color:#b9821f;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-prices strong {
	color:#d9a23a;
}

.egc-membership-page .egc-native-plan-prices small {
	margin-top:5px;
	color:#68736d;
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:.06em;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-prices small {
	color:rgba(255,255,255,.65);
}

.egc-membership-page .egc-native-plan-description {
	flex:1;
	margin:0 0 24px;
	color:#26342c;
	font-size:14px;
	line-height:1.65;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-description {
	color:rgba(255,255,255,.82);
}

.egc-membership-page .egc-native-plan-description p {
	margin:0 0 13px;
}

.egc-membership-page .egc-native-plan-description strong {
	color:#003b22;
	font-weight:800;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-description strong {
	color:#fff;
}

.egc-membership-page .egc-native-plan-description ul,
.egc-membership-page .egc-native-plan-description ol {
	margin:14px 0 0;
	padding-left:0;
	list-style:none;
}

.egc-membership-page .egc-native-plan-description li {
	position:relative;
	padding-left:23px;
	margin-bottom:9px;
}

.egc-membership-page .egc-native-plan-description ul li::before {
	content:"✓";
	position:absolute;
	left:0;
	top:0;
	color:#b9821f;
	font-weight:800;
}

.egc-membership-page .egc-native-plan-card.is-featured .egc-native-plan-description ul li::before {
	color:#d9a23a;
}

.egc-membership-page .egc-native-plan-description ol {
	counter-reset:egc-plan-counter;
}

.egc-membership-page .egc-native-plan-description ol li {
	counter-increment:egc-plan-counter;
}

.egc-membership-page .egc-native-plan-description ol li::before {
	content:counter(egc-plan-counter) ".";
	position:absolute;
	left:0;
	color:#b9821f;
	font-weight:800;
}

.egc-membership-page .egc-native-plan-actions {
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	margin-top:auto;
}

.egc-membership-page .egc-native-plan-actions form {
	margin:0;
}

.egc-membership-page .egc-native-plan-actions button {
	min-height:44px;
	padding:12px 17px;
	font-size:11px;
}

.egc-membership-page .egc-membership-process {
	padding:96px 0;
	background:#f5f0e7;
	border-top:1px solid #e5ded2;
}

.egc-membership-page .egc-membership-process .egc-split {
	grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
	align-items:start;
}

.egc-membership-page .egc-membership-process h2 {
	max-width:480px;
	margin-bottom:18px;
}

.egc-membership-page .egc-membership-process-intro {
	max-width:470px;
	color:#68736d;
}

.egc-membership-page .egc-number-list {
	max-width:none;
}

.egc-membership-page .egc-number-item {
	grid-template-columns:70px minmax(0,1fr);
	gap:22px;
	padding:27px 0;
}

.egc-membership-page .egc-number {
	font-size:34px;
	color:#d9a23a;
}

.egc-membership-page .egc-number-item h3 {
	margin:0 0 7px;
	font-size:29px;
}

.egc-membership-page .egc-number-item p {
	font-size:14px;
}

.egc-membership-page .egc-membership-cta {
	padding:68px 0;
	background:linear-gradient(110deg,#002817,#003b22);
	border-top:1px solid rgba(217,162,58,.25);
}

.egc-membership-page .egc-membership-cta .egc-cta-inner {
	align-items:center;
}

.egc-membership-page .egc-membership-cta .egc-kicker {
	color:#d9a23a;
	margin-bottom:10px;
}

.egc-membership-page .egc-membership-cta h2 {
	margin:0;
	font-size:clamp(36px,4vw,53px);
}

@media (max-width:900px) {
	.egc-membership-page .egc-native-plan-grid {
		grid-template-columns:1fr;
		max-width:680px;
	}

	.egc-membership-page .egc-membership-process .egc-split {
		grid-template-columns:1fr;
		gap:30px;
	}
}

@media (max-width:767px) {
	.egc-membership-page .egc-page-hero {
		padding:78px 0 66px;
	}

	.egc-membership-page .egc-membership-options-section,
	.egc-membership-page .egc-membership-process {
		padding:62px 0;
	}

	.egc-membership-page .egc-native-plan-grid {
		width:min(100% - 28px,680px);
	}

	.egc-membership-page .egc-native-plan-card {
		padding:25px 21px;
	}

	.egc-membership-page .egc-native-plan-prices {
		gap:16px;
	}

	.egc-membership-page .egc-native-plan-actions {
		flex-direction:column;
	}

	.egc-membership-page .egc-native-plan-actions form,
	.egc-membership-page .egc-native-plan-actions button {
		width:100%;
	}

	.egc-membership-page .egc-membership-cta {
		padding:56px 0;
	}

	.egc-membership-page .egc-membership-cta .egc-cta-inner {
		align-items:flex-start;
	}
}
